Searched refs:remaining_bits (Results 1 - 6 of 6) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/ |
| H A 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); 126 # case when M is 0 or remaining_bits, the node is a leaf. 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): 168 child_M = remaining_bits [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/ |
| H A 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); 126 # case when M is 0 or remaining_bits, the node is a leaf. 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): 168 child_M = remaining_bits [all...] |
| /xsrc/external/mit/xorg-server.old/dist/glx/ |
| H A D | indirect_util.c | 211 int remaining_bits; local in function:get_decode_index 217 remaining_bits = dispatch_info->bits; 218 if (opcode >= (1U << remaining_bits)) { 223 for (/* empty */; remaining_bits > 0; remaining_bits = next_remain) { 230 * If remaining_bits = 8 and tree[index] = 3, the mask of just the 236 next_remain = remaining_bits - tree[index]; 237 mask = ((1 << remaining_bits) - 1) &
|
| /xsrc/external/mit/xorg-server/dist/glx/ |
| H A D | indirect_util.c | 197 int remaining_bits; local in function:get_decode_index 202 remaining_bits = dispatch_info->bits; 203 if (opcode >= (1U << remaining_bits)) { 208 for ( /* empty */ ; remaining_bits > 0; remaining_bits = next_remain) { 214 * If remaining_bits = 8 and tree[index] = 3, the mask of just the 220 next_remain = remaining_bits - tree[index]; 221 mask = ((1 << remaining_bits) - 1) & ~((1 << next_remain) - 1);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | texcompress_astc.cpp | 609 int remaining_bits; member in struct:Block 1783 remaining_bits = 128 - config_bits - weight_bits; 1789 if (remaining_bits < (13 * num_cem_values + 4) / 5) { 1794 /* Find the largest cem_ranges that fits within remaining_bits */ 1801 if (cem_bits <= remaining_bits)
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | texcompress_astc.cpp | 610 int remaining_bits; member in struct:Block 1784 remaining_bits = 128 - config_bits - weight_bits; 1790 if (remaining_bits < (13 * num_cem_values + 4) / 5) { 1795 /* Find the largest cem_ranges that fits within remaining_bits */ 1802 if (cem_bits <= remaining_bits)
|
Completed in 10 milliseconds