HomeSort by: relevance | last modified time | path
    Searched refs:fract (Results 1 - 18 of 18) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/targets/libgl-gdi/
stw_wgl.c 232 one.fract = 0;
234 minus_one.fract = 0;
236 zero.fract = 0;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/wgl/
stw_wgl.c 243 one.fract = 0;
245 minus_one.fract = 0;
247 zero.fract = 0;
  /xsrc/external/mit/xedit/dist/lisp/
write.c 666 char stk[64], fmt[32], *ptr, *fract = NULL; local
714 fract = strchr(ptr, '.');
715 if (fract)
716 *fract++ = '\0';
721 if (fract)
722 strcpy(buffer + strlen(buffer), fract);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/pp/
disasm.c 427 CASE(fract, 1),
550 CASE(fract, 1),
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/pp/
disasm.c 392 CASE(fract, 1),
515 CASE(fract, 1),
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
ir_builder.h 145 ir_expression *fract(operand a);
lower_instructions.cpp 92 * Note: before we used to implement this as op1 * fract(op / op1) but this
118 * Converts double trunc, ceil, floor, round to fract
927 i.insert_before(assign(frtemp, fract(ir->operands[0])));
946 ir->operands[1] = fract(ir->operands[0]->clone(ir, NULL));
979 i.insert_before(assign(frtemp, fract(temp)));
986 ir->operands[0] = equal(fract(ir->operands[0]->clone(ir, NULL)),
988 ir->operands[1] = csel(equal(fract(mul(t2, p5->clone(ir, NULL))),
1016 i.insert_before(assign(frtemp, fract(arg)));
ir_builder.cpp 259 ir_expression *fract(operand a) function in namespace:ir_builder
builtin_functions.cpp 1040 BA1(fract)
1890 FD(fract)
5406 UNOPA(fract, ir_unop_fract)
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
ir_builder.h 145 ir_expression *fract(operand a);
lower_instructions.cpp 91 * Note: before we used to implement this as op1 * fract(op / op1) but this
117 * Converts double trunc, ceil, floor, round to fract
919 i.insert_before(assign(frtemp, fract(ir->operands[0])));
938 ir->operands[1] = fract(ir->operands[0]->clone(ir, NULL));
971 i.insert_before(assign(frtemp, fract(temp)));
978 ir->operands[0] = equal(fract(ir->operands[0]->clone(ir, NULL)),
980 ir->operands[1] = csel(equal(fract(mul(t2, p5->clone(ir, NULL))),
1008 i.insert_before(assign(frtemp, fract(arg)));
ir_builder.cpp 259 ir_expression *fract(operand a) function in namespace:ir_builder
builtin_functions.cpp 950 BA1(fract)
1712 FD(fract)
4917 UNOPA(fract, ir_unop_fract)
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 230 LLVMValueRef fract; local
240 fract = lp_build_round(coord_bld, coord);
241 fract = lp_build_sub(coord_bld, coord, fract);
242 coord = lp_build_add(coord_bld, fract, fract);
253 /* XXX: not safe without arch rounding, fract can be anything. */
280 /* wrap with normalized floats is just fract */
lp_bld_arit.c 2422 clamp_fract(struct lp_build_context *bld, LLVMValueRef fract)
2429 return lp_build_min_ext(bld, fract, max,
2635 * Combined ifloor() & fract().
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 240 LLVMValueRef fract; local
250 fract = lp_build_round(coord_bld, coord);
251 fract = lp_build_sub(coord_bld, coord, fract);
252 coord = lp_build_add(coord_bld, fract, fract);
263 /* XXX: not safe without arch rounding, fract can be anything. */
290 /* wrap with normalized floats is just fract */
lp_bld_arit.c 2311 clamp_fract(struct lp_build_context *bld, LLVMValueRef fract)
2318 return lp_build_min_ext(bld, fract, max,
2524 * Combined ifloor() & fract().
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_instruction_selection.cpp 1275 Temp fract = bld.vop1(aco_opcode::v_fract_f64, bld.def(v2), src0);
1276 Temp min = bld.vop3(aco_opcode::v_min_f64, bld.def(v2), fract, min_val);

Completed in 120 milliseconds