Lines Matching defs:exp
157 * ir_binop_ldexp x exp
161 * resulting_biased_exp = min(extracted_biased_exp + exp, 255);
183 * resulting_biased_exp = min(extracted_biased_exp + exp, 255);
206 * There is additional language limiting the defined range of exp, but this
207 * is merely to allow implementations that store 2^exp in a temporary
220 ir_variable *exp = new(ir) ir_variable(ivec, "exp", ir_var_temporary);
238 /* Copy <x> and <exp> arguments. */
241 i.insert_before(exp);
242 i.insert_before(assign(exp, ir->operands[1]));
252 * "If exp is greater than +128 (single-precision) or +1024
253 * (double-precision), the value returned is undefined. If exp is less
258 * which could happen when exp is close to INT_MAX. Addition underflow
263 min2(add(extracted_biased_exp, exp),
351 ir_variable *exp = new(ir) ir_variable(ivec, "exp", ir_var_temporary);
366 /* Copy <x> and <exp> arguments. */
369 i.insert_before(exp);
370 i.insert_before(assign(exp, ir->operands[1]));
382 add(extracted_biased_exp, exp)));