Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringRef.h74 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() function
188 compareMemory(Data, RHS.Data, RHS.Length) == 0); in equals()
202 if (int Res = compareMemory(Data, RHS.Data, std::min(Length, RHS.Length))) in compare()
287 compareMemory(Data, Prefix.Data, Prefix.Length) == 0; in startswith()
298 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringRef.cpp80 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()