LLVM 20.0.0git
|
#include "llvm/Support/SipHash.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Endian.h"
#include <cstdint>
Go to the source code of this file.
Macros | |
#define | DEBUG_TYPE "llvm-siphash" |
#define | ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) |
#define | SIPROUND |
#define DEBUG_TYPE "llvm-siphash" |
Definition at line 26 of file SipHash.cpp.
#define ROTL | ( | x, | |
b | |||
) | (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) |
Definition at line 32 of file SipHash.cpp.
#define SIPROUND |