Searched refs:copy_length (Results 1 – 9 of 9) sorted by relevance
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | hash.h | 120 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()
|
D | backward_references_hq.c | 583 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/ |
D | hash.h | 120 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()
|
D | backward_references_hq.c | 583 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/ |
D | state.h | 296 int copy_length; member
|
D | decode.c | 1670 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, ©_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/ |
D | state.h | 296 int copy_length; member
|
D | decode.c | 1670 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, ©_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/ |
D | unicodeobject.c | 1191 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()
|