Searched defs:copy_length (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dprefix.cc91 int CommandPrefix(int insert_length, int copy_length) { argument
92 if (copy_length == 0) {
93 copy_length = 4;
96 int copy_prefix = CopyLengthPrefix(copy_length);
H A Dhash.h81 int copy_length,
84 switch (copy_length) {
87 default: retval = start_cost4 + (copy_length - 4) * average_cost; break;
97 int copy_length,
100 switch (copy_length) {
103 default: retval = start_cost4 + (copy_length - 4) * average_cost; break;
77 BackwardReferenceScore(double average_cost, double start_cost4, double start_cost3, double start_cost2, int copy_length, int backward_reference_offset) argument
93 BackwardReferenceScoreUsingLastDistance(double average_cost, double start_cost4, double start_cost3, double start_cost2, int copy_length, int distance_short_code) argument
/external/chromium_org/extensions/browser/api/web_request/
H A Dform_data_parser.cc414 size_t copy_length = literal.size(); local
418 copy_length = seek_unquote.data() - copy_start;
419 result.append(copy_start, copy_length);
426 copy_length = (literal.data() + literal.size()) - copy_start;
427 result.append(copy_start, copy_length);
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc485 uptr copy_length = Min(size, from_length + 1); local
486 ASAN_READ_RANGE(from, copy_length);
491 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
492 from, copy_length);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Ddecode.c858 int copy_length; local
891 copy_length = kCopyLengthPrefixCode[copy_code].offset +
894 BROTLI_LOG_UINT(copy_length);
953 context = (uint8_t)(copy_length > 4 ? 3 : copy_length - 2);
990 if (copy_length >= kMinDictionaryWordLength &&
991 copy_length <= kMaxDictionaryWordLength) {
992 int offset = kBrotliDictionaryOffsetsByLength[copy_length];
994 int shift = kBrotliDictionarySizeBitsByLength[copy_length];
998 offset += word_idx * copy_length;
[all...]
/external/libnfc-nxp/src/
H A DphFriNfc_TopazDynamicMap.c2476 uint16_t copy_length = 0; local
2495 copy_length = (uint16_t)(ps_tpz_info->ReadBufferSize -
2505 copy_length);
2509 (void *)copy_temp_buf, copy_length);
2564 uint16_t copy_length = 0; local
2612 copy_length = (uint16_t)(recv_length - copy_index);
2670 copy_length = (uint16_t) ((copy_till_address == 0) ? copy_length :
2674 /* After lock bytes, there are immediate reserved bytes, so " copy_length "
2676 if (0 != copy_length)
3824 uint8_t copy_length; local
[all...]

Completed in 145 milliseconds