/art/runtime/ |
leb128.h | 157 uint32_t extra_bits = static_cast<uint32_t>(value ^ (value >> 31)) >> 6; local 159 while (extra_bits != 0u) { 163 extra_bits >>= 7; 172 uint32_t extra_bits = static_cast<uint32_t>(value ^ (value >> 31)) >> 6; local 174 while (extra_bits != 0u) { 178 extra_bits >>= 7;
|
/external/webp/src/dsp/ |
lossless.h | 277 int* const extra_bits) { 280 *extra_bits = highest_bit - 1; 285 int* const extra_bits, 289 *extra_bits = highest_bit - 1; 290 *extra_bits_value = distance & ((1 << *extra_bits) - 1); 304 int* const extra_bits) { 308 *extra_bits = prefix_code.extra_bits_; 310 VP8LPrefixEncodeBitsNoLUT(distance, code, extra_bits); 315 int* const extra_bits, 320 *extra_bits = prefix_code.extra_bits_ [all...] |
/external/opencv3/3rdparty/libwebp/utils/ |
huffman_encode.c | 288 tokens->extra_bits = 0; 297 tokens->extra_bits = 0; 303 tokens->extra_bits = repetitions - 3; 308 tokens->extra_bits = 3; 323 tokens->extra_bits = 0; 329 tokens->extra_bits = repetitions - 3; 334 tokens->extra_bits = repetitions - 11; 339 tokens->extra_bits = 0x7f; // 138 repeated 0s
|
huffman_encode.h | 26 uint8_t extra_bits; // extra bits for escape codes member in struct:__anon21918
|
/external/webp/src/utils/ |
huffman_encode.c | 267 tokens->extra_bits = 0; 276 tokens->extra_bits = 0; 282 tokens->extra_bits = repetitions - 3; 287 tokens->extra_bits = 3; 302 tokens->extra_bits = 0; 308 tokens->extra_bits = repetitions - 3; 313 tokens->extra_bits = repetitions - 11; 318 tokens->extra_bits = 0x7f; // 138 repeated 0s
|
huffman_encode.h | 26 uint8_t extra_bits; // extra bits for escape codes member in struct:__anon27477
|
/external/valgrind/VEX/switchback/ |
test_emfloat.c | 1282 u16 extra_bits[INTERNAL_FPF_PRECISION]; local 1444 u16 extra_bits[INTERNAL_FPF_PRECISION]; local [all...] |
/external/webp/src/enc/ |
backward_references.c | 549 int code, extra_bits; local 550 VP8LPrefixEncodeBits(length, &code, &extra_bits); 551 return m->literal_[VALUES_IN_BYTE + code] + extra_bits; 556 int code, extra_bits; local 557 VP8LPrefixEncodeBits(distance, &code, &extra_bits); 558 return m->distance_[code] + extra_bits; 873 int code, extra_bits; local 874 VP8LPrefixEncodeBits(len, &code, &extra_bits); 876 VP8LPrefixEncodeBits(PixOrCopyDistance(v), &code, &extra_bits); local [all...] |
histogram.c | 151 int code, extra_bits; local 152 VP8LPrefixEncodeBits(PixOrCopyLength(v), &code, &extra_bits); local 154 VP8LPrefixEncodeBits(PixOrCopyDistance(v), &code, &extra_bits); local [all...] |
vp8l.c | 541 const int extra_bits = tokens[i].extra_bits; local 545 VP8LPutBits(bw, extra_bits, 2); 548 VP8LPutBits(bw, extra_bits, 3); 551 VP8LPutBits(bw, extra_bits, 7); [all...] |
/external/libavc/encoder/ |
irc_bit_allocation.c | 797 /* extra_bits = rem_bits_in_period - max_drain_bits */ 801 /* saved_bits += extra_bits */ 810 /* extra_bits(-ve) = rem_bits_in_period - i4_min_bits_for_period */ 814 /* saved_bits += extra_bits(-ve) */ [all...] |
/external/libopus/celt/ |
rate.c | 498 int extra_bits; local 501 extra_bits = extra_fine*C<<BITRES; 502 fine_priority[j] = extra_bits >= excess-balance; 503 excess -= extra_bits;
|
/external/opencv3/3rdparty/libwebp/dec/ |
vp8l.c | 124 int extra_bits, offset; local 128 extra_bits = (distance_symbol - 2) >> 1; 129 offset = (2 + (distance_symbol & 1)) << extra_bits; 130 return offset + VP8LReadBits(br, extra_bits) + 1; 209 const int extra_bits = kCodeLengthExtraBits[slot]; local 211 int repeat = VP8LReadBits(br, extra_bits) + repeat_offset; [all...] |
/external/libgdx/gdx/jni/gdx2d/ |
jpgd.cpp | 518 inline int jpeg_decoder::huff_decode(huff_tables *pH, int& extra_bits) 535 extra_bits = get_bits_no_markers(symbol & 0xF); 544 extra_bits = symbol >> 16; 552 extra_bits = get_bits_no_markers(bits) & ((1 << num_extra_bits) - 1); 556 extra_bits = get_bits_no_markers(num_extra_bits); 1792 int extra_bits; local [all...] |
/external/opencv3/3rdparty/libwebp/enc/ |
vp8l.c | 290 const int extra_bits = tokens[i].extra_bits; local 294 VP8LWriteBits(bw, 2, extra_bits); 297 VP8LWriteBits(bw, 3, extra_bits); 300 VP8LWriteBits(bw, 7, extra_bits); [all...] |
/external/opencv3/3rdparty/zlib/ |
trees.c | 119 const intf *extra_bits; /* extra bits for each code or NULL */ member in struct:static_tree_desc_s 120 int extra_base; /* base index for extra_bits */ 251 static_l_desc.extra_bits = extra_lbits; 253 static_d_desc.extra_bits = extra_dbits; 254 static_bl_desc.extra_bits = extra_blbits; 495 const intf *extra = desc->stat_desc->extra_bits; [all...] |
/external/pdfium/third_party/zlib_v128/ |
trees.c | 119 const intf *extra_bits; /* extra bits for each code or NULL */ member in struct:static_tree_desc_s 120 int extra_base; /* base index for extra_bits */ 251 static_l_desc.extra_bits = extra_lbits; 253 static_d_desc.extra_bits = extra_dbits; 254 static_bl_desc.extra_bits = extra_blbits; 495 const intf *extra = desc->stat_desc->extra_bits; [all...] |
/external/webp/src/dec/ |
vp8l.c | 151 int extra_bits, offset; local 155 extra_bits = (distance_symbol - 2) >> 1; 156 offset = (2 + (distance_symbol & 1)) << extra_bits; 157 return offset + VP8LReadBits(br, extra_bits) + 1; 288 const int extra_bits = kCodeLengthExtraBits[slot]; local 290 int repeat = VP8LReadBits(br, extra_bits) + repeat_offset; [all...] |
/external/zlib/src/ |
trees.c | 119 const intf *extra_bits; /* extra bits for each code or NULL */ member in struct:static_tree_desc_s 120 int extra_base; /* base index for extra_bits */ 251 static_l_desc.extra_bits = extra_lbits; 253 static_d_desc.extra_bits = extra_dbits; 254 static_bl_desc.extra_bits = extra_blbits; 495 const intf *extra = desc->stat_desc->extra_bits; [all...] |
/external/crcalc/src/com/hp/creals/ |
CR.java | 950 int extra_bits = rough_appr.bitLength() - 3; local [all...] |
/external/chromium-trace/catapult/tracing/third_party/jszip/ |
jszip.min.js | [all...] |
/prebuilts/android-emulator/linux-x86_64/ |
emulator-ranchu-arm64 | |
emulator-ranchu-mips64 | |
emulator-ranchu-x86 | |
emulator-ranchu-x86_64 | |