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

  /external/chromium_org/crypto/
secure_util.cc 11 const unsigned char* s2_ptr = reinterpret_cast<const unsigned char*>(s2); local
13 for (size_t i = 0; i < n; ++i, ++s1_ptr, ++s2_ptr)
14 tmp |= *s1_ptr ^ *s2_ptr;
  /external/chromium_org/third_party/brotli/src/brotli/enc/
find_match_length.h 64 const uint8_t* s2_ptr = s2;
69 while (s2_ptr <= s2_limit - 4 &&
70 BROTLI_UNALIGNED_LOAD32(s2_ptr) ==
72 s2_ptr += 4;
75 while ((s2_ptr < s2_limit) && (s1[matched] == *s2_ptr)) {
76 ++s2_ptr;

Completed in 58 milliseconds