Searched refs:matchlen (Results 1 – 9 of 9) sorted by relevance
/third_party/node/deps/brotli/c/enc/ |
D | hash.h | 141 size_t matchlen; in TestStaticDictionaryItem() local 149 matchlen = in TestStaticDictionaryItem() 151 if (matchlen + dictionary->cutoffTransformsCount <= len || matchlen == 0) { in TestStaticDictionaryItem() 155 size_t cut = len - matchlen; in TestStaticDictionaryItem() 164 score = BackwardReferenceScore(matchlen, backward); in TestStaticDictionaryItem() 168 out->len = matchlen; in TestStaticDictionaryItem() 169 out->len_code_delta = (int)len - (int)matchlen; in TestStaticDictionaryItem()
|
D | static_dict.c | 92 const size_t matchlen = in BrotliFindAllStaticDictionaryMatches() local 99 if (matchlen == l) { in BrotliFindAllStaticDictionaryMatches() 105 if (matchlen >= l - 1) { in BrotliFindAllStaticDictionaryMatches() 117 maxlen = BROTLI_MIN(size_t, matchlen, l - 2); in BrotliFindAllStaticDictionaryMatches() 125 if (matchlen < l || l + 6 >= max_length) { in BrotliFindAllStaticDictionaryMatches()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | hash.h | 141 size_t matchlen; in TestStaticDictionaryItem() local 149 matchlen = in TestStaticDictionaryItem() 151 if (matchlen + dictionary->cutoffTransformsCount <= len || matchlen == 0) { in TestStaticDictionaryItem() 155 size_t cut = len - matchlen; in TestStaticDictionaryItem() 164 score = BackwardReferenceScore(matchlen, backward); in TestStaticDictionaryItem() 168 out->len = matchlen; in TestStaticDictionaryItem() 169 out->len_code_delta = (int)len - (int)matchlen; in TestStaticDictionaryItem()
|
D | static_dict.c | 92 const size_t matchlen = in BrotliFindAllStaticDictionaryMatches() local 99 if (matchlen == l) { in BrotliFindAllStaticDictionaryMatches() 105 if (matchlen >= l - 1) { in BrotliFindAllStaticDictionaryMatches() 117 maxlen = BROTLI_MIN(size_t, matchlen, l - 2); in BrotliFindAllStaticDictionaryMatches() 125 if (matchlen < l || l + 6 >= max_length) { in BrotliFindAllStaticDictionaryMatches()
|
/third_party/toybox/toys/posix/ |
D | logger.c | 35 int try, i, matchlen = 0, found = -1, ambiguous = 1; in arrayfind() local 40 if (matchlen<i) found = try, ambiguous = 0; in arrayfind() 41 if (matchlen==i) ambiguous++; in arrayfind()
|
/third_party/uboot/u-boot-2020.01/drivers/video/ |
D | stb_truetype.h | 3130 …stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,… in stbtt__matchpair() local 3131 if (matchlen >= 0) { in stbtt__matchpair() 3137 if (matchlen == nlen) in stbtt__matchpair() 3139 } else if (matchlen < nlen && name[matchlen] == ' ') { in stbtt__matchpair() 3140 ++matchlen; in stbtt__matchpair() 3141 …if (stbtt_CompareUTF8toUTF16_bigendian((char*) (name+matchlen), nlen-matchlen, (char*)(fc+stringOf… in stbtt__matchpair() 3146 if (matchlen == nlen) in stbtt__matchpair()
|
/third_party/skia/third_party/externals/imgui/ |
D | imstb_truetype.h | 4694 …stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,… in stbtt__matchpair() local 4695 if (matchlen >= 0) { in stbtt__matchpair() 4701 if (matchlen == nlen) in stbtt__matchpair() 4703 } else if (matchlen < nlen && name[matchlen] == ' ') { in stbtt__matchpair() 4704 ++matchlen; in stbtt__matchpair() 4705 …if (stbtt_CompareUTF8toUTF16_bigendian_internal((char*) (name+matchlen), nlen-matchlen, (char*)(fc… in stbtt__matchpair() 4710 if (matchlen == nlen) in stbtt__matchpair()
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imstb_truetype.h | 4645 …stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,… in stbtt__matchpair() local 4646 if (matchlen >= 0) { in stbtt__matchpair() 4652 if (matchlen == nlen) in stbtt__matchpair() 4654 } else if (matchlen < nlen && name[matchlen] == ' ') { in stbtt__matchpair() 4655 ++matchlen; in stbtt__matchpair() 4656 …if (stbtt_CompareUTF8toUTF16_bigendian_internal((char*) (name+matchlen), nlen-matchlen, (char*)(fc… in stbtt__matchpair() 4661 if (matchlen == nlen) in stbtt__matchpair()
|
/third_party/eudev/src/udev/ |
D | udev-rules.c | 1797 size_t matchlen = (size_t)(next - s); in match_key() local 1799 match = (matchlen == len && strneq(s, val, matchlen)); in match_key()
|