Home
last modified time | relevance | path

Searched refs:compareMemory (Results 1 – 3 of 3) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DFunctionId.h48 static int compareMemory(const char *Lhs, const char *Rhs, uint64_t Length) { in compareMemory() function
78 compareMemory(Data, Other.Data, LengthOrHashCode) == 0; in equals()
86 auto Res = compareMemory( in compare()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h67 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() function
172 if (int Res = compareMemory(Data, RHS.Data, std::min(Length, RHS.Length))) in equals_insensitive()
252 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
264 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == in startswith()
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp77 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()