Home
last modified time | relevance | path

Searched refs:code_len (Results 1 - 15 of 15) sorted by relevance

/third_party/node/deps/brotli/c/dec/
H A 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()
543 PRECONDITION: code_len
545 ProcessRepeatedCodeLength(uint32_t code_len, uint32_t repeat_delta, uint32_t alphabet_size, uint32_t* symbol, uint32_t* repeat, uint32_t* space, uint32_t* prev_code_len, uint32_t* repeat_code_len, uint16_t* symbol_lists, uint16_t* code_length_histo, int* next_symbol) ProcessRepeatedCodeLength() argument
610 uint32_t code_len; ReadSymbolCodeLengths() local
650 uint32_t code_len; SafeReadSymbolCodeLengths() local
[all...]
/third_party/skia/third_party/externals/brotli/c/dec/
H A 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()
543 PRECONDITION: code_len
545 ProcessRepeatedCodeLength(uint32_t code_len, uint32_t repeat_delta, uint32_t alphabet_size, uint32_t* symbol, uint32_t* repeat, uint32_t* space, uint32_t* prev_code_len, uint32_t* repeat_code_len, uint16_t* symbol_lists, uint16_t* code_length_histo, int* next_symbol) ProcessRepeatedCodeLength() argument
610 uint32_t code_len; ReadSymbolCodeLengths() local
650 uint32_t code_len; SafeReadSymbolCodeLengths() local
[all...]
/third_party/ffmpeg/libavformat/
H A 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/skia/third_party/externals/libwebp/src/dec/
H A 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/
H A Dnode_win32_etw_provider.cc107 jevent->code_len); in CodeAddressNotification()
/third_party/node/deps/v8/src/diagnostics/
H A Dsystem-jit-win.cc123 script_context, event->code_start, (uint64_t)event->code_len, in EventHandler()
H A Dgdb-jit.cc2069 AddCode(event_name.c_str(), {addr, event->code_len}, shared, lineinfo,
/third_party/ffmpeg/libavcodec/
H A Dwebp.c372 int code_len; in read_huffman_code_normal() local
376 code_len = huff_reader_get_symbol(&code_len_hc, &s->gb); in read_huffman_code_normal()
377 if (code_len < 16) { in read_huffman_code_normal()
379 code_lengths[symbol++] = code_len; in read_huffman_code_normal()
380 if (code_len) in read_huffman_code_normal()
381 prev_code_len = code_len; in read_huffman_code_normal()
384 switch (code_len) { in read_huffman_code_normal()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen.h226 uint32 code_len);
H A Dvmw_screen_ioctl.c868 uint32 code_len) in vmw_ioctl_shader_create()
877 sh_arg.size = code_len; in vmw_ioctl_shader_create()
866 vmw_ioctl_shader_create(struct vmw_winsys_screen *vws, SVGA3dShaderType type, uint32 code_len) vmw_ioctl_shader_create() argument
/third_party/node/deps/v8/include/
H A Dv8-callbacks.h70 size_t code_len; member
/third_party/node/deps/v8/include/v8-include/
H A Dv8-callbacks.h72 size_t code_len; member
/third_party/node/deps/v8/src/third_party/vtune/
H A Dvtune-jit.cc196 jmethod.method_size = static_cast<unsigned int>(event->code_len); in event_handler()
/third_party/astc-encoder/Source/
H A 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
2795 mz_uint code_len; tinfl_decompress() local
2824 bit_buf >>= code_len; tinfl_decompress() local
2848 bit_buf >>= code_len; tinfl_decompress() local
[all...]
/third_party/node/deps/v8/src/logging/
H A 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()

Completed in 31 milliseconds