HomeSort by relevance Sort by last modified time
    Searched refs:LLVMConstInt (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_printf.c 73 lp_build_printf(gallivm, "print 5 6: %d %d\n", LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), 5, 0),
74 LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), 6, 0));
77 lp_build_assert(gallivm, LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), 1, 0), "assert(1)");
lp_test_conv.c 130 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
138 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
lp_state_fs.c 159 LLVMConstInt(i32t, shift, 0),
171 bits[4*i + 0] = LLVMConstInt(i32t, 1 << (j + 0), 0);
172 bits[4*i + 1] = LLVMConstInt(i32t, 1 << (j + 1), 0);
173 bits[4*i + 2] = LLVMConstInt(i32t, 1 << (j + 4), 0);
174 bits[4*i + 3] = LLVMConstInt(i32t, 1 << (j + 5), 0);
    [all...]
lp_test_blend.c 213 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
225 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_printf.c 73 lp_build_printf(gallivm, "print 5 6: %d %d\n", LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), 5, 0),
74 LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), 6, 0));
77 lp_build_assert(gallivm, LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), 1, 0), "assert(1)");
lp_test_conv.c 130 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
138 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
lp_state_fs.c 159 LLVMConstInt(i32t, shift, 0),
171 bits[4*i + 0] = LLVMConstInt(i32t, 1 << (j + 0), 0);
172 bits[4*i + 1] = LLVMConstInt(i32t, 1 << (j + 1), 0);
173 bits[4*i + 2] = LLVMConstInt(i32t, 1 << (j + 4), 0);
174 bits[4*i + 3] = LLVMConstInt(i32t, 1 << (j + 5), 0);
    [all...]
lp_test_blend.c 213 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
225 LLVMValueRef index = LLVMConstInt(LLVMInt32TypeInContext(context), i, 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_const.c 239 return LLVMConstInt(LLVMIntTypeInContext(gallivm->context, type.width), 0, 0);
260 elems[0] = LLVMConstInt(elem_type, util_float_to_half(1.0f), 0);
264 elems[0] = LLVMConstInt(elem_type, 1LL << (type.width/2), 0);
266 elems[0] = LLVMConstInt(elem_type, 1, 0);
268 elems[0] = LLVMConstInt(elem_type, (1LL << (type.width - 1)) - 1, 0);
307 elem = LLVMConstInt(elem_type, util_float_to_half((float)val), 0);
314 elem = LLVMConstInt(elem_type, round(val*dscale), 0);
352 elems[i] = LLVMConstInt(elem_type, val, type.sign ? 1 : 0);
408 masks[j + i] = LLVMConstInt(elem_type,
lp_bld_const.h 124 return LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), i, 0);
144 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0);
lp_bld_swizzle.c 189 shuffles[j + i] = LLVMConstInt(elem_type, j + channel, 0);
311 shuffles[j + i] = LLVMConstInt(i32t, shuffle, 0);
315 shuffles[j + i] = LLVMConstInt(i32t, shuffle, 0);
322 shuffles[j + i] = LLVMConstInt(i32t, shuffle, 0);
578 shuffles[i] = LLVMConstInt(i32t, i * 4, 0);
613 shuffles[i*4] = LLVMConstInt(i32t, i, 0);
614 shuffles[i*4+1] = LLVMConstInt(i32t, i, 0);
615 shuffles[i*4+2] = LLVMConstInt(i32t, i, 0);
616 shuffles[i*4+3] = LLVMConstInt(i32t, i, 0);
lp_bld_sample.c 198 LLVMValueRef index0 = LLVMConstInt(i32t, 0, 0);
199 LLVMValueRef index1 = LLVMConstInt(i32t, 1, 0);
200 LLVMValueRef index2 = LLVMConstInt(i32t, 2, 0);
852 LLVMConstInt(i32t, 0, 0));
858 LLVMConstInt(i32t, 1, 0));
864 LLVMConstInt(i32t, 2, 0));
    [all...]
lp_bld_logic.c 161 args[2] = LLVMConstInt(LLVMInt8TypeInContext(gallivm->context), cc, 0);
599 shuffles[j + i] = LLVMConstInt(elem_type,
lp_bld_flow.c 251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
lp_bld_sample_soa.c     [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.c 239 return LLVMConstInt(LLVMIntTypeInContext(gallivm->context, type.width), 0, 0);
260 elems[0] = LLVMConstInt(elem_type, util_float_to_half(1.0f), 0);
264 elems[0] = LLVMConstInt(elem_type, 1LL << (type.width/2), 0);
266 elems[0] = LLVMConstInt(elem_type, 1, 0);
268 elems[0] = LLVMConstInt(elem_type, (1LL << (type.width - 1)) - 1, 0);
307 elem = LLVMConstInt(elem_type, util_float_to_half((float)val), 0);
314 elem = LLVMConstInt(elem_type, round(val*dscale), 0);
352 elems[i] = LLVMConstInt(elem_type, val, type.sign ? 1 : 0);
408 masks[j + i] = LLVMConstInt(elem_type,
lp_bld_const.h 124 return LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), i, 0);
144 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0);
lp_bld_swizzle.c 189 shuffles[j + i] = LLVMConstInt(elem_type, j + channel, 0);
311 shuffles[j + i] = LLVMConstInt(i32t, shuffle, 0);
315 shuffles[j + i] = LLVMConstInt(i32t, shuffle, 0);
322 shuffles[j + i] = LLVMConstInt(i32t, shuffle, 0);
578 shuffles[i] = LLVMConstInt(i32t, i * 4, 0);
613 shuffles[i*4] = LLVMConstInt(i32t, i, 0);
614 shuffles[i*4+1] = LLVMConstInt(i32t, i, 0);
615 shuffles[i*4+2] = LLVMConstInt(i32t, i, 0);
616 shuffles[i*4+3] = LLVMConstInt(i32t, i, 0);
lp_bld_sample.c 198 LLVMValueRef index0 = LLVMConstInt(i32t, 0, 0);
199 LLVMValueRef index1 = LLVMConstInt(i32t, 1, 0);
200 LLVMValueRef index2 = LLVMConstInt(i32t, 2, 0);
852 LLVMConstInt(i32t, 0, 0));
858 LLVMConstInt(i32t, 1, 0));
864 LLVMConstInt(i32t, 2, 0));
    [all...]
lp_bld_logic.c 161 args[2] = LLVMConstInt(LLVMInt8TypeInContext(gallivm->context), cc, 0);
599 shuffles[j + i] = LLVMConstInt(elem_type,
lp_bld_flow.c 251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 111 LLVMBuildRet(builder, LLVMConstInt(LLVMInt32Type(), 42, 0));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 72 swizzles[0] = LLVMConstInt(i32t, swizzle_x, 0);
73 swizzles[1] = LLVMConstInt(i32t, swizzle_y, 0);
74 swizzles[2] = LLVMConstInt(i32t, swizzle_z, 0);
75 swizzles[3] = LLVMConstInt(i32t, swizzle_w, 0);
876 val = LLVMBuildSelect(builder, cmp, val, LLVMConstInt(bld_base->int_bld.elem_type, -1, true), "");
945 LLVMConstInt(bld_base->uint_bld.elem_type, imm->u[i].Uint, false );
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 72 swizzles[0] = LLVMConstInt(i32t, swizzle_x, 0);
73 swizzles[1] = LLVMConstInt(i32t, swizzle_y, 0);
74 swizzles[2] = LLVMConstInt(i32t, swizzle_z, 0);
75 swizzles[3] = LLVMConstInt(i32t, swizzle_w, 0);
876 val = LLVMBuildSelect(builder, cmp, val, LLVMConstInt(bld_base->int_bld.elem_type, -1, true), "");
945 LLVMConstInt(bld_base->uint_bld.elem_type, imm->u[i].Uint, false );
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_llvm.c 507 LLVMConstInt(LLVMInt64TypeInContext(gallivm->context),
687 LLVMConstInt(LLVMInt32TypeInContext(gallivm->context),
689 LLVMConstInt(LLVMInt32TypeInContext(gallivm->context),
    [all...]

Completed in 1199 milliseconds

1 2