Home | History | Annotate | Download | only in glsl

Lines Matching refs:lsb

1352    ir_variable *lsb =
1353 new(ir) ir_variable(glsl_type::ivec(elements), "lsb", ir_var_temporary);
1390 * int lsb = (floatBitsToInt(as_float) >> 23) - 0x7f;
1392 i.insert_before(lsb);
1393 i.insert_before(assign(lsb, sub(rshift(bitcast_f2i(as_float), c23), c7F)));
1398 * (lsb_only == 0) ? -1 : lsb;
1402 * 0. Instead of using (lsb_only == 0), we could use (lsb >= 0). Which is
1410 ir->operands[2] = new(ir) ir_dereference_variable(lsb);
1702 * lsb = mul(x_lo, y_lo)
1722 ir_variable *lsb =
1723 new(ir) ir_variable(var_type, "lsb", ir_var_temporary);
1734 i.insert_before(lsb);
1737 i.insert_before(assign(lsb, mul(x, y)));
1742 swizzle(lsb, elem, 1),