HomeSort by relevance Sort by last modified time
    Searched defs:extra_bits_value (Results 1 - 2 of 2) sorted by null

  /external/puffin/src/
puffer.cc 171 uint16_t extra_bits_value = 0; local
175 extra_bits_value = br->ReadBits(extra_bits_len);
178 auto length = kLengthBases[len_code_start] + extra_bits_value;
193 extra_bits_value = 0;
197 extra_bits_value = br->ReadBits(extra_bits_len);
203 pd.distance = kDistanceBases[distance_alphabet] + extra_bits_value;
  /external/v8/src/wasm/
decoder.h 337 int extra_bits_value; local
343 // If b is 0x0f, the value is negative, so extra_bits_value is 0x70.
344 // If b is 0x03, the value is positive, so extra_bits_value is 0x00.
345 extra_bits_value = (static_cast<int8_t>(b << kExtraBits) >> 8) &
348 extra_bits_value = 0;
350 if (*length == kMaxLength && (b & kExtraBitsMask) != extra_bits_value) {

Completed in 58 milliseconds