Home
last modified time | relevance | path

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

/freebsd/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 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 DStringRef.cpp77 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()