HomeSort by relevance Sort by last modified time
    Searched refs:wordmemcmp (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
string_piece.h 87 int r = wordmemcmp(ptr_, x.ptr_, std::min(length_, x.length_));
106 (wordmemcmp(ptr_, x.ptr_, x.length_) == 0));
112 (wordmemcmp(ptr_ + (length_-x.length_), x.ptr_, x.length_) == 0));
160 static int wordmemcmp(const char* p, const char* p2, size_type N) { function in class:base::StringPiece
172 const int r = StringPiece::wordmemcmp(x.data(), y.data(),
string_piece.cc 24 return StringPiece::wordmemcmp(x.data(), y.data(), x.size()) == 0;

Completed in 1225 milliseconds