Home
last modified time | relevance | path

Searched refs:min_match (Results 1 – 4 of 4) sorted by relevance

/external/brotli/c/enc/
Dcompress_fragment_two_pass.c241 size_t table_bits, size_t min_match, in CreateCommands() argument
260 const size_t len_limit = BROTLI_MIN(size_t, block_size - min_match, in CreateCommands()
265 for (next_hash = Hash(++ip, shift, min_match); ; ) { in CreateCommands()
292 BROTLI_DCHECK(hash == Hash(ip, shift, min_match)); in CreateCommands()
297 next_hash = Hash(next_ip, shift, min_match); in CreateCommands()
299 if (IsMatch(ip, candidate, min_match)) { in CreateCommands()
310 } while (BROTLI_PREDICT_TRUE(!IsMatch(ip, candidate, min_match))); in CreateCommands()
325 size_t matched = min_match + FindMatchLengthWithLimit( in CreateCommands()
326 candidate + min_match, ip + min_match, in CreateCommands()
327 (size_t)(ip_end - ip) - min_match); in CreateCommands()
[all …]
/external/sqlite/android/
DOldPhoneNumberUtils.cpp168 bool phone_number_compare_loose_with_minmatch(const char* a, const char* b, int min_match) in phone_number_compare_loose_with_minmatch() argument
219 if (matched < min_match) { in phone_number_compare_loose_with_minmatch()
233 if (matched >= min_match && (ia < 0 || ib < 0)) { in phone_number_compare_loose_with_minmatch()
Dsqlite3_android.cpp91 int min_match = 0; in phone_numbers_equal() local
95 min_match = sqlite3_value_int(argv[3]); in phone_numbers_equal()
106 : ((min_match > 0) in phone_numbers_equal()
108 num1, num2, min_match) in phone_numbers_equal()
DPhoneNumberUtils.h24 bool phone_number_compare_loose_with_minmatch(const char* a, const char* b, int min_match);