Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DStringRef.h52 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() function
120 compareMemory(Data, RHS.Data, RHS.Length) == 0); in equals()
132 if (int Res = compareMemory(Data, RHS.Data, min(Length, RHS.Length))) in compare()
199 compareMemory(Data, Prefix.Data, Prefix.Length) == 0; in startswith()
205 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
/external/llvm/include/llvm/ADT/
DStringRef.h59 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() function
153 compareMemory(Data, RHS.Data, RHS.Length) == 0); in equals()
166 if (int Res = compareMemory(Data, RHS.Data, std::min(Length, RHS.Length))) in compare()
234 compareMemory(Data, Prefix.Data, Prefix.Length) == 0; in startswith()
244 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringRef.h64 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { in compareMemory() function
168 compareMemory(Data, RHS.Data, RHS.Length) == 0); in equals()
183 if (int Res = compareMemory(Data, RHS.Data, std::min(Length, RHS.Length))) in compare()
266 compareMemory(Data, Prefix.Data, Prefix.Length) == 0; in startswith()
278 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
/external/swiftshader/third_party/LLVM/lib/Support/
DStringRef.cpp63 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
/external/llvm/lib/Support/
DStringRef.cpp89 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringRef.cpp94 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()