Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/brotli/c/enc/
Dhash.h120 size_t copy_length, size_t backward_reference_offset) { in BackwardReferenceScore() argument
121 return BROTLI_SCORE_BASE + BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length - in BackwardReferenceScore()
126 size_t copy_length) { in BackwardReferenceScoreUsingLastDistance() argument
127 return BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length + in BackwardReferenceScoreUsingLastDistance()
Dbackward_references_hq.c583 size_t copy_length = ZopfliNodeCopyLength(next); in BrotliZopfliCreateCommands() local
600 copy_length, (int)len_code - (int)copy_length, dist_code); in BrotliZopfliCreateCommands()
611 pos += copy_length; in BrotliZopfliCreateCommands()
/third_party/node/deps/brotli/c/enc/
Dhash.h120 size_t copy_length, size_t backward_reference_offset) { in BackwardReferenceScore() argument
121 return BROTLI_SCORE_BASE + BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length - in BackwardReferenceScore()
126 size_t copy_length) { in BackwardReferenceScoreUsingLastDistance() argument
127 return BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length + in BackwardReferenceScoreUsingLastDistance()
Dbackward_references_hq.c583 size_t copy_length = ZopfliNodeCopyLength(next); in BrotliZopfliCreateCommands() local
600 copy_length, (int)len_code - (int)copy_length, dist_code); in BrotliZopfliCreateCommands()
611 pos += copy_length; in BrotliZopfliCreateCommands()
/third_party/skia/third_party/externals/brotli/c/dec/
Dstate.h296 int copy_length; member
Ddecode.c1670 uint32_t copy_length; in ReadCommandInternal() local
1690 copy_length = BrotliReadBits24(br, v.copy_len_extra_bits); in ReadCommandInternal()
1693 !SafeReadBits(br, v.copy_len_extra_bits, &copy_length)) { in ReadCommandInternal()
1698 s->copy_length = (int)copy_length + v.copy_len_offset; in ReadCommandInternal()
1778 pos, i, s->copy_length)); in ProcessCommandsInternal()
1893 i = s->copy_length; in ProcessCommandsInternal()
/third_party/node/deps/brotli/c/dec/
Dstate.h296 int copy_length; member
Ddecode.c1670 uint32_t copy_length; in ReadCommandInternal() local
1690 copy_length = BrotliReadBits24(br, v.copy_len_extra_bits); in ReadCommandInternal()
1693 !SafeReadBits(br, v.copy_len_extra_bits, &copy_length)) { in ReadCommandInternal()
1698 s->copy_length = (int)copy_length + v.copy_len_offset; in ReadCommandInternal()
1778 pos, i, s->copy_length)); in ProcessCommandsInternal()
1893 i = s->copy_length; in ProcessCommandsInternal()
/third_party/python/Objects/
Dunicodeobject.c1191 Py_ssize_t copy_length; in resize_copy() local
1201 copy_length = Py_MIN(length, PyUnicode_GET_LENGTH(unicode)); in resize_copy()
1202 _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, copy_length); in resize_copy()
1211 copy_length = _PyUnicode_WSTR_LENGTH(unicode); in resize_copy()
1212 copy_length = Py_MIN(copy_length, length); in resize_copy()
1214 copy_length * sizeof(wchar_t)); in resize_copy()