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

/external/brotli/c/enc/
H A Dhash.h132 size_t copy_length, size_t backward_reference_offset) {
133 return BROTLI_SCORE_BASE + BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length -
138 size_t copy_length) {
139 return BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length +
131 BackwardReferenceScore( size_t copy_length, size_t backward_reference_offset) argument
137 BackwardReferenceScoreUsingLastDistance( size_t copy_length) argument
H A Dbackward_references_hq.c548 size_t copy_length = ZopfliNodeCopyLength(next); local
565 copy_length, (int)len_code - (int)copy_length, dist_code);
576 pos += copy_length;
/external/brotli/c/dec/
H A Dstate.h162 int copy_length; member in struct:BrotliDecoderStateStruct
H A Ddecode.c1521 uint32_t copy_length; local
1541 copy_length = BrotliReadBits(br, v.copy_len_extra_bits);
1544 !SafeReadBits(br, v.copy_len_extra_bits, &copy_length)) {
1549 s->copy_length = (int)copy_length + v.copy_len_offset;
1629 pos, i, s->copy_length));
1744 i = s->copy_length;
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc519 uptr copy_length = Min(size, from_length + 1); local
520 ASAN_READ_RANGE(ctx, from, copy_length);
525 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
526 from, copy_length);
/external/python/cpython3/Objects/
H A Dunicodeobject.c1028 Py_ssize_t copy_length; local
1039 copy_length = Py_MIN(length, PyUnicode_GET_LENGTH(unicode));
1040 _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, copy_length);
1049 copy_length = _PyUnicode_WSTR_LENGTH(unicode);
1050 copy_length = Py_MIN(copy_length, length);
1052 copy_length * sizeof(wchar_t));

Completed in 261 milliseconds