HomeSort by relevance Sort by last modified time
    Searched refs:BITSET_WORDS (Results 1 - 20 of 20) sorted by null

  /external/mesa3d/src/util/
bitset.h 45 #define BITSET_WORDS(bits) (((bits) + BITSET_WORDBITS - 1) / BITSET_WORDBITS)
46 #define BITSET_DECLARE(name, bits) BITSET_WORD name[BITSET_WORDS(bits)]
116 if (word >= BITSET_WORDS(size))
register_allocate.c 197 BITSET_WORDS(count));
296 for (i = 0; i < BITSET_WORDS(regs->count); i++)
312 class->regs = rzalloc_array(class, BITSET_WORD, BITSET_WORDS(regs->count));
427 int bitset_count = BITSET_WORDS(count);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_dead_code_eliminate.cpp 81 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars));
86 sizeof(BITSET_WORD) * BITSET_WORDS(num_vars));
brw_vec4_dead_code_eliminate.cpp 47 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars));
52 sizeof(BITSET_WORD) * BITSET_WORDS(num_vars));
brw_fs_live_variables.cpp 167 for (int i = 0; i < bitset_words; i++) {
184 for (int i = 0; i < bitset_words; i++) {
257 bitset_words = BITSET_WORDS(num_vars);
259 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
260 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
261 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
262 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
brw_vec4_live_variables.cpp 146 for (int i = 0; i < bitset_words; i++) {
163 for (int i = 0; i < bitset_words; i++) {
192 bitset_words = BITSET_WORDS(num_vars);
194 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
195 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
196 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
197 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
brw_schedule_instructions.cpp 451 BITSET_WORDS(grf_count));
456 BITSET_WORDS(grf_count));
461 BITSET_WORDS(hw_reg_count));
    [all...]
brw_fs_copy_propagation.cpp 98 int bitset_words; member in class:__anon28590::fs_copy_prop_dataflow
119 bitset_words = BITSET_WORDS(num_acp);
123 bd[block->num].livein = rzalloc_array(bd, BITSET_WORD, bitset_words);
124 bd[block->num].liveout = rzalloc_array(bd, BITSET_WORD, bitset_words);
125 bd[block->num].copy = rzalloc_array(bd, BITSET_WORD, bitset_words);
126 bd[block->num].kill = rzalloc_array(bd, BITSET_WORD, bitset_words);
181 for (int i = 0; i < bitset_words; i++) {
186 for (int i = 0; i < bitset_words; i++) {
211 for (int i = 0; i < bitset_words; i++)
    [all...]
  /external/mesa3d/src/compiler/glsl/
ir_array_refcount.cpp 61 bits = new BITSET_WORD[BITSET_WORDS(num_bits)];
62 memset(bits, 0, BITSET_WORDS(num_bits) * sizeof(bits[0]));
  /external/mesa3d/src/compiler/nir/
nir_repair_ssa.c 40 const unsigned num_words = BITSET_WORDS(state->impl->num_blocks);
nir_worklist.c 39 BITSET_WORDS(num_blocks));
nir_validate.c     [all...]
nir_liveness.c 47 unsigned bitset_words; member in struct:live_ssa_defs_state
73 state->bitset_words);
74 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD));
77 state->bitset_words);
78 memset(block->live_out, 0, state->bitset_words * sizeof(BITSET_WORD));
124 NIR_VLA(BITSET_WORD, live, state->bitset_words);
125 memcpy(live, succ->live_in, state->bitset_words * sizeof *live);
150 for (unsigned i = 0; i < state->bitset_words; ++i) {
178 state.bitset_words = BITSET_WORDS(state.num_ssa_defs)
    [all...]