Searched refs:compareMemory (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringRef.h | 67 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 compare() 252 compareMemory(Data, Prefix.Data, Prefix.Length) == 0; in starts_with() 264 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == in ends_with()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | StringRef.cpp | 77 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
|