Searched refs:remaining_bits (Results 1 – 7 of 7) sorted by relevance
/external/mesa3d/src/mapi/glapi/gen/ |
D | glX_server_table.py | 94 remaining_bits = self.max_bits - total 95 next_opcode = min_opcode + (1 << remaining_bits) 98 for M in range(0, remaining_bits): 99 op_count = 1 << (remaining_bits - M); 128 if (M == 0) or (M == remaining_bits): 129 return [remaining_bits, [], 0, 0] 151 return [remaining_bits, [], 0, 0] 165 def dump_tree(self, node, base_opcode, remaining_bits, base_entry, depth): argument 168 child_M = remaining_bits - M 175 …[%u, %u], node depth %u */' % (base_entry, base_opcode, base_opcode + (1 << remaining_bits), depth) [all …]
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
D | glX_server_table.py | 94 remaining_bits = self.max_bits - total 95 next_opcode = min_opcode + (1 << remaining_bits) 98 for M in range(0, remaining_bits): 99 op_count = 1 << (remaining_bits - M); 128 if (M == 0) or (M == remaining_bits): 129 return [remaining_bits, [], 0, 0] 151 return [remaining_bits, [], 0, 0] 165 def dump_tree(self, node, base_opcode, remaining_bits, base_entry, depth): argument 168 child_M = remaining_bits - M 175 …[%u, %u], node depth %u */' % (base_entry, base_opcode, base_opcode + (1 << remaining_bits), depth) [all …]
|
/external/chromium_org/media/base/ |
D | bit_reader_core.cc | 68 const int remaining_bits = nbits_ + nbits_next_; in SkipBits() local 69 if (remaining_bits >= num_bits) in SkipBits() 73 num_bits -= remaining_bits; in SkipBits() 74 bits_read_ += remaining_bits; in SkipBits()
|
/external/chromium-libpac/src/ |
D | net_util.cc | 118 int remaining_bits = prefix_length_in_bits % 8; in IPNumberMatchesPrefix() local 119 if (remaining_bits != 0) { in IPNumberMatchesPrefix() 120 unsigned char mask = 0xFF << (8 - remaining_bits); in IPNumberMatchesPrefix()
|
/external/libopus/celt/ |
D | bands.c | 647 opus_int32 remaining_bits; member 794 if (*b>2<<BITRES && ctx->remaining_bits > 2<<BITRES) in compute_theta() 854 if (ctx->remaining_bits>=1<<BITRES) in quant_band_n1() 863 ctx->remaining_bits -= 1<<BITRES; in quant_band_n1() 954 ctx->remaining_bits -= qalloc; in quant_partition() 959 rebalance = ctx->remaining_bits; in quant_partition() 965 rebalance = mbits - (rebalance-ctx->remaining_bits); in quant_partition() 975 rebalance = sbits - (rebalance-ctx->remaining_bits); in quant_partition() 986 ctx->remaining_bits -= curr_bits; in quant_partition() 989 while (ctx->remaining_bits < 0 && q > 0) in quant_partition() [all …]
|
/external/chromium_org/third_party/opus/src/celt/ |
D | bands.c | 647 opus_int32 remaining_bits; member 794 if (*b>2<<BITRES && ctx->remaining_bits > 2<<BITRES) in compute_theta() 854 if (ctx->remaining_bits>=1<<BITRES) in quant_band_n1() 863 ctx->remaining_bits -= 1<<BITRES; in quant_band_n1() 954 ctx->remaining_bits -= qalloc; in quant_partition() 959 rebalance = ctx->remaining_bits; in quant_partition() 965 rebalance = mbits - (rebalance-ctx->remaining_bits); in quant_partition() 975 rebalance = sbits - (rebalance-ctx->remaining_bits); in quant_partition() 986 ctx->remaining_bits -= curr_bits; in quant_partition() 989 while (ctx->remaining_bits < 0 && q > 0) in quant_partition() [all …]
|
/external/chromium_org/net/base/ |
D | net_util.cc | 158 int remaining_bits = prefix_length_in_bits % 8; in IPNumberPrefixCheck() local 159 if (remaining_bits != 0) { in IPNumberPrefixCheck() 160 unsigned char mask = 0xFF << (8 - remaining_bits); in IPNumberPrefixCheck()
|