Home
last modified time | relevance | path

Searched refs:code_len (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/brotli/c/dec/
Ddecode.c518 static BROTLI_INLINE void ProcessSingleCodeLength(uint32_t code_len, in ProcessSingleCodeLength() argument
523 if (code_len != 0) { /* code_len == 1..15 */ in ProcessSingleCodeLength()
524 symbol_lists[next_symbol[code_len]] = (uint16_t)(*symbol); in ProcessSingleCodeLength()
525 next_symbol[code_len] = (int)(*symbol); in ProcessSingleCodeLength()
526 *prev_code_len = code_len; in ProcessSingleCodeLength()
527 *space -= 32768U >> code_len; in ProcessSingleCodeLength()
528 code_length_histo[code_len]++; in ProcessSingleCodeLength()
530 (int)*symbol, (int)code_len)); in ProcessSingleCodeLength()
545 static BROTLI_INLINE void ProcessRepeatedCodeLength(uint32_t code_len, in ProcessRepeatedCodeLength() argument
553 if (code_len == BROTLI_REPEAT_PREVIOUS_CODE_LENGTH) { in ProcessRepeatedCodeLength()
[all …]
/third_party/skia/third_party/externals/brotli/c/dec/
Ddecode.c518 static BROTLI_INLINE void ProcessSingleCodeLength(uint32_t code_len, in ProcessSingleCodeLength() argument
523 if (code_len != 0) { /* code_len == 1..15 */ in ProcessSingleCodeLength()
524 symbol_lists[next_symbol[code_len]] = (uint16_t)(*symbol); in ProcessSingleCodeLength()
525 next_symbol[code_len] = (int)(*symbol); in ProcessSingleCodeLength()
526 *prev_code_len = code_len; in ProcessSingleCodeLength()
527 *space -= 32768U >> code_len; in ProcessSingleCodeLength()
528 code_length_histo[code_len]++; in ProcessSingleCodeLength()
530 (int)*symbol, (int)code_len)); in ProcessSingleCodeLength()
545 static BROTLI_INLINE void ProcessRepeatedCodeLength(uint32_t code_len, in ProcessRepeatedCodeLength() argument
553 if (code_len == BROTLI_REPEAT_PREVIOUS_CODE_LENGTH) { in ProcessRepeatedCodeLength()
[all …]
/third_party/ffmpeg/libavformat/
Dspdifenc.c494 int code_len = mat_codes[next_code_idx].len; in spdif_header_truehd() local
495 int code_len_remaining = code_len; in spdif_header_truehd()
497 mat_codes[next_code_idx].code, code_len); in spdif_header_truehd()
498 ctx->hd_buf_filled += code_len; in spdif_header_truehd()
/third_party/ffmpeg/libavcodec/
Dwebp.c365 int code_len; in read_huffman_code_normal() local
369 code_len = huff_reader_get_symbol(&code_len_hc, &s->gb); in read_huffman_code_normal()
370 if (code_len < 16) { in read_huffman_code_normal()
372 code_lengths[symbol++] = code_len; in read_huffman_code_normal()
373 if (code_len) in read_huffman_code_normal()
374 prev_code_len = code_len; in read_huffman_code_normal()
377 switch (code_len) { in read_huffman_code_normal()
/third_party/skia/third_party/externals/libwebp/src/dec/
Dvp8l_dec.c277 int code_len; in ReadHuffmanCodeLengths() local
282 code_len = p->value; in ReadHuffmanCodeLengths()
283 if (code_len < kCodeLengthLiterals) { in ReadHuffmanCodeLengths()
284 code_lengths[symbol++] = code_len; in ReadHuffmanCodeLengths()
285 if (code_len != 0) prev_code_len = code_len; in ReadHuffmanCodeLengths()
287 const int use_prev = (code_len == kCodeLengthRepeatCode); in ReadHuffmanCodeLengths()
288 const int slot = code_len - kCodeLengthLiterals; in ReadHuffmanCodeLengths()
/third_party/node/src/
Dnode_win32_etw_provider.cc107 jevent->code_len); in CodeAddressNotification()
/third_party/node/deps/v8/src/diagnostics/
Dsystem-jit-win.cc123 script_context, event->code_start, (uint64_t)event->code_len, in EventHandler()
Dgdb-jit.cc2069 AddCode(event_name.c_str(), {addr, event->code_len}, shared, lineinfo, in EventHandler()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
Dvmw_screen.h226 uint32 code_len);
Dvmw_screen_ioctl.c868 uint32 code_len) in vmw_ioctl_shader_create() argument
877 sh_arg.size = code_len; in vmw_ioctl_shader_create()
/third_party/node/deps/v8/include/
Dv8-callbacks.h70 size_t code_len; member
/third_party/node/deps/v8/src/third_party/vtune/
Dvtune-jit.cc196 jmethod.method_size = static_cast<unsigned int>(event->code_len); in event_handler()
/third_party/astc-encoder/Source/
Dtinyexr.h2505 code_len = temp >> 9; \
2506 if ((code_len) && (num_bits >= code_len)) break; \
2508 code_len = TINFL_FAST_LOOKUP_BITS; \
2510 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
2511 } while ((temp < 0) && (num_bits >= (code_len + 1))); \
2532 mz_uint code_len, c; \
2545 code_len = temp >> 9, temp &= 511; \
2547 code_len = TINFL_FAST_LOOKUP_BITS; \
2549 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
2553 bit_buf >>= code_len; \
[all …]
/third_party/node/deps/v8/src/logging/
Dlog.cc733 event.code_len = code->InstructionSize(); in LogRecordedBuffer()
753 event.code_len = code->instructions().length(); in LogRecordedBuffer()
805 event.code_len = from.InstructionSize(); in CodeMoveEvent()