HomeSort by relevance Sort by last modified time
    Searched refs:int_vec_type (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_bitarit.c 52 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
53 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
78 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
79 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
106 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
107 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
135 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
136 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
160 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
lp_bld_logic.c 81 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, type); local
82 LLVMValueRef zeros = LLVMConstNull(int_vec_type);
83 LLVMValueRef ones = LLVMConstAllOnes(int_vec_type);
166 res = LLVMBuildBitCast(builder, res, int_vec_type, "");
280 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
284 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
289 res = LLVMGetUndef(int_vec_type);
336 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
340 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
345 res = LLVMGetUndef(int_vec_type);
409 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
    [all...]
lp_bld_arit.c 1107 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1110 a = LLVMBuildBitCast(builder, a, int_vec_type, "");
1221 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1449 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1595 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1616 LLVMTypeRef int_vec_type = bld->int_vec_type; local
1672 LLVMTypeRef int_vec_type = bld->int_vec_type; local
1731 LLVMTypeRef int_vec_type = bld->int_vec_type; local
2789 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
    [all...]
lp_bld_conv.c 95 LLVMTypeRef int_vec_type = lp_build_vec_type(gallivm, i32_type); local
109 LLVMValueRef h = LLVMBuildZExt(builder, src, int_vec_type, "");
116 LLVMValueRef scaled = LLVMBuildBitCast(builder, LLVMBuildFMul(builder, shifted, f32_magic, ""), int_vec_type, "");
158 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, src_type); local
188 res = LLVMBuildBitCast(builder, res, int_vec_type, "");
205 res = LLVMBuildFPToSI(builder, res, int_vec_type, "");
234 res = LLVMBuildFPToSI(builder, res, int_vec_type, "");
282 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, dst_type); local
334 LLVMBuildBitCast(builder, bias_, int_vec_type, ""), "");
lp_bld_type.c 388 bld->int_vec_type = bld->int_elem_type;
392 bld->int_vec_type = LLVMVectorType(bld->int_elem_type, type.length);
lp_bld_tgsi_soa.c 79 mask->int_vec_type = lp_build_int_vec_type(bld->gallivm, mask->bld->type);
81 LLVMConstAllOnes(mask->int_vec_type);
129 assert(mask->cond_mask == LLVMConstAllOnes(mask->int_vec_type));
132 assert(LLVMTypeOf(val) == mask->int_vec_type);
149 assert(prev_mask == LLVMConstAllOnes(mask->int_vec_type));
173 assert(mask->cont_mask == LLVMConstAllOnes(mask->int_vec_type));
174 assert(mask->break_mask == LLVMConstAllOnes(mask->int_vec_type));
186 mask->break_var = lp_build_alloca(mask->bld->gallivm, mask->int_vec_type, "");
    [all...]
lp_bld_tgsi.h 242 LLVMTypeRef int_vec_type; member in struct:lp_exec_mask
lp_bld_type.h 155 LLVMTypeRef int_vec_type; member in struct:lp_build_context
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_bitarit.c 52 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
53 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
78 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
79 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
106 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
107 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
135 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
136 b = LLVMBuildBitCast(builder, b, bld->int_vec_type, "");
160 a = LLVMBuildBitCast(builder, a, bld->int_vec_type, "");
lp_bld_logic.c 81 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, type); local
82 LLVMValueRef zeros = LLVMConstNull(int_vec_type);
83 LLVMValueRef ones = LLVMConstAllOnes(int_vec_type);
166 res = LLVMBuildBitCast(builder, res, int_vec_type, "");
280 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
284 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
289 res = LLVMGetUndef(int_vec_type);
336 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
340 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
345 res = LLVMGetUndef(int_vec_type);
409 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
    [all...]
lp_bld_arit.c 1107 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1110 a = LLVMBuildBitCast(builder, a, int_vec_type, "");
1221 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1449 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1595 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
1616 LLVMTypeRef int_vec_type = bld->int_vec_type; local
1672 LLVMTypeRef int_vec_type = bld->int_vec_type; local
1731 LLVMTypeRef int_vec_type = bld->int_vec_type; local
2789 LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->gallivm, type); local
    [all...]
lp_bld_conv.c 95 LLVMTypeRef int_vec_type = lp_build_vec_type(gallivm, i32_type); local
109 LLVMValueRef h = LLVMBuildZExt(builder, src, int_vec_type, "");
116 LLVMValueRef scaled = LLVMBuildBitCast(builder, LLVMBuildFMul(builder, shifted, f32_magic, ""), int_vec_type, "");
158 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, src_type); local
188 res = LLVMBuildBitCast(builder, res, int_vec_type, "");
205 res = LLVMBuildFPToSI(builder, res, int_vec_type, "");
234 res = LLVMBuildFPToSI(builder, res, int_vec_type, "");
282 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, dst_type); local
334 LLVMBuildBitCast(builder, bias_, int_vec_type, ""), "");
lp_bld_type.c 388 bld->int_vec_type = bld->int_elem_type;
392 bld->int_vec_type = LLVMVectorType(bld->int_elem_type, type.length);
lp_bld_tgsi_soa.c 79 mask->int_vec_type = lp_build_int_vec_type(bld->gallivm, mask->bld->type);
81 LLVMConstAllOnes(mask->int_vec_type);
129 assert(mask->cond_mask == LLVMConstAllOnes(mask->int_vec_type));
132 assert(LLVMTypeOf(val) == mask->int_vec_type);
149 assert(prev_mask == LLVMConstAllOnes(mask->int_vec_type));
173 assert(mask->cont_mask == LLVMConstAllOnes(mask->int_vec_type));
174 assert(mask->break_mask == LLVMConstAllOnes(mask->int_vec_type));
186 mask->break_var = lp_build_alloca(mask->bld->gallivm, mask->int_vec_type, "");
    [all...]
lp_bld_tgsi.h 242 LLVMTypeRef int_vec_type; member in struct:lp_exec_mask
lp_bld_type.h 155 LLVMTypeRef int_vec_type; member in struct:lp_build_context
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_depth.c 699 s_bld.int_vec_type, "");
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_depth.c 699 s_bld.int_vec_type, "");

Completed in 926 milliseconds