Searched refs:compareMemory (Results 1 – 2 of 2) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | StringRef.h | 56 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() function 138 compareMemory(Data, RHS.Data, RHS.Length) == 0); in equals() 150 if (int Res = compareMemory(Data, RHS.Data, std::min(Length, RHS.Length))) in compare() 217 compareMemory(Data, Prefix.Data, Prefix.Length) == 0; in startswith() 226 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
|
/external/llvm/lib/Support/ |
D | StringRef.cpp | 89 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
|