HomeSort by: relevance | last modified time | path
    Searched defs:first_bit (Results 1 - 2 of 2) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_nir_analyze_ubo_ranges.c 258 int first_bit = ffsll(offsets) - 1; local
260 /* Find the first 0 bit in offsets beyond first_bit. To find the
262 * order to ignore bits before first_bit, we mask off those bits.
264 int first_hole = ffsll(~offsets & ~((1ull << first_bit) - 1)) - 1;
281 entry->range.start = first_bit;
283 entry->range.length = first_hole - first_bit;
287 entry->benefit += info->uses[first_bit + i];
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_nir_analyze_ubo_ranges.c 264 int first_bit = ffsll(offsets) - 1; local
266 /* Find the first 0 bit in offsets beyond first_bit. To find the
268 * order to ignore bits before first_bit, we mask off those bits.
270 int first_hole = ffsll(~offsets & ~((1ull << first_bit) - 1)) - 1;
287 entry->range.start = first_bit;
289 entry->range.length = first_hole - first_bit;
293 entry->benefit += info->uses[first_bit + i];

Completed in 19 milliseconds