Home
last modified time | relevance | path

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

/build/kati/
Dstring_piece.h109 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(
Dstring_piece.cc44 return StringPiece::wordmemcmp(x.data(), y.data(), len) == 0; in operator ==()