Searched refs:compareMemory (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | StringRef.h | 52 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/ |
D | StringRef.h | 59 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/ |
D | StringRef.h | 64 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-7.0/llvm/include/llvm/ADT/ |
D | StringRef.h | 67 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()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | StringRef.cpp | 63 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
|
/external/llvm/lib/Support/ |
D | StringRef.cpp | 89 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | StringRef.cpp | 94 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | StringRef.cpp | 80 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I)) in compare_numeric()
|