Searched refs:wordmemcmp (Results 1 – 2 of 2) sorted by relevance
/build/kati/ |
D | string_piece.h | 109 wordmemcmp(ptr_, x.ptr_, (length_ < x.length_ ? length_ : x.length_)); in compare() 130 (wordmemcmp(ptr_, x.ptr_, x.length_) == 0)); in starts_with() 136 (wordmemcmp(ptr_ + (length_ - x.length_), x.ptr_, x.length_) == 0)); in ends_with() 171 static int wordmemcmp(const char* p, const char* p2, size_type N) { in wordmemcmp() function 191 const int r = StringPiece::wordmemcmp(
|
D | string_piece.cc | 44 return StringPiece::wordmemcmp(x.data(), y.data(), len) == 0; in operator ==()
|