Home
last modified time | relevance | path

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

/external/brotli/c/enc/
Dhash.h135 size_t copy_length, size_t backward_reference_offset) { in BackwardReferenceScore() argument
136 return BROTLI_SCORE_BASE + BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length - in BackwardReferenceScore()
141 size_t copy_length) { in BackwardReferenceScoreUsingLastDistance() argument
142 return BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length + in BackwardReferenceScoreUsingLastDistance()
Dbackward_references_hq.c579 size_t copy_length = ZopfliNodeCopyLength(next); in BrotliZopfliCreateCommands() local
595 copy_length, (int)len_code - (int)copy_length, dist_code); in BrotliZopfliCreateCommands()
606 pos += copy_length; in BrotliZopfliCreateCommands()
/external/compiler-rt/lib/asan/
Dasan_interceptors.cc519 uptr copy_length = Min(size, from_length + 1); in INTERCEPTOR() local
520 ASAN_READ_RANGE(ctx, from, copy_length); in INTERCEPTOR()
525 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1, in INTERCEPTOR()
526 from, copy_length); in INTERCEPTOR()
/external/brotli/c/dec/
Dstate.h164 int copy_length; member
Ddecode.c1573 uint32_t copy_length; in ReadCommandInternal() local
1593 copy_length = BrotliReadBits(br, v.copy_len_extra_bits); in ReadCommandInternal()
1596 !SafeReadBits(br, v.copy_len_extra_bits, &copy_length)) { in ReadCommandInternal()
1601 s->copy_length = (int)copy_length + v.copy_len_offset; in ReadCommandInternal()
1681 pos, i, s->copy_length)); in ProcessCommandsInternal()
1796 i = s->copy_length; in ProcessCommandsInternal()
/external/python/cpython3/Objects/
Dunicodeobject.c1070 Py_ssize_t copy_length; in resize_copy() local
1080 copy_length = Py_MIN(length, PyUnicode_GET_LENGTH(unicode)); in resize_copy()
1081 _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, copy_length); in resize_copy()
1090 copy_length = _PyUnicode_WSTR_LENGTH(unicode); in resize_copy()
1091 copy_length = Py_MIN(copy_length, length); in resize_copy()
1093 copy_length * sizeof(wchar_t)); in resize_copy()