Searched refs:first_hole (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_nir_analyze_ubo_ranges.c270 int first_hole = ffsll(~offsets & ~((1ull << first_bit) - 1)) - 1; local in function:brw_nir_analyze_ubo_ranges
272 if (first_hole == -1) {
276 first_hole = 64;
279 /* We've processed all bits before first_hole. Mask them off. */
280 offsets &= ~((1ull << first_hole) - 1);
288 /* first_hole is one beyond the end, so we don't need to add 1 */
289 entry->range.length = first_hole - first_bit;
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_nir_analyze_ubo_ranges.c264 int first_hole = ffsll(~offsets & ~((1ull << first_bit) - 1)) - 1; local in function:brw_nir_analyze_ubo_ranges
266 if (first_hole == -1) {
270 first_hole = 64;
273 /* We've processed all bits before first_hole. Mask them off. */
274 offsets &= ~((1ull << first_hole) - 1);
282 /* first_hole is one beyond the end, so we don't need to add 1 */
283 entry->range.length = first_hole - first_bit;

Completed in 7 milliseconds