Lines Matching refs:matched
24 size_t matched = 0;
28 BROTLI_UNALIGNED_LOAD64LE(s1 + matched))) {
30 matched += 8;
33 BROTLI_UNALIGNED_LOAD64LE(s1 + matched);
35 matched += matching_bits >> 3;
36 return matched;
41 if (BROTLI_PREDICT_TRUE(s1[matched] == *s2)) {
43 ++matched;
45 return matched;
48 return matched;
54 size_t matched = 0;
63 BrotliUnalignedRead32(s1 + matched)) {
65 matched += 4;
67 while ((s2_ptr < s2_limit) && (s1[matched] == *s2_ptr)) {
69 ++matched;
71 return matched;