Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringRef.h67 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() function
171 compareMemory(Data, RHS.Data, RHS.Length) == 0); in equals()
186 if (int Res = compareMemory(Data, RHS.Data, std::min(Length, RHS.Length))) in compare()
269 compareMemory(Data, Prefix.Data, Prefix.Length) == 0; in startswith()
281 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DStringRef.cpp80 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()