HomeSort by: relevance | last modified time | path
    Searched defs:int_type (Results 1 - 25 of 34) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_const.h 141 LLVMTypeRef int_type; local
145 int_type = LLVMIntTypeInContext(gallivm->context, 8 * sizeof(void *));
146 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0);
148 LLVMPointerType(int_type, 0),
lp_bld_printf.c 138 LLVMTypeRef int_type = LLVMIntTypeInContext(gallivm->context, sizeof(int) * 8); local
140 param = LLVMBuildZExt(builder, param, int_type, "");
142 param = LLVMBuildSExt(builder, param, int_type, "");
lp_bld_format_srgb.c 187 struct lp_type int_type = lp_int_type(src_type); local
199 tmp = LLVMBuildBitCast(builder, tmp, lp_build_vec_type(gallivm, int_type), "");
lp_bld_sample.h 116 struct lp_type int_type; member in struct:lp_sampler_size_query_params
338 struct lp_type int_type; member in struct:lp_build_sample_context
lp_bld_arit.c 1911 LLVMTypeRef int_type; local
1917 int_type = lp_build_int_vec_type(bld->gallivm, type);
1922 sign = LLVMBuildBitCast(builder, a, int_type, "");
1924 one = LLVMConstBitCast(bld->one, int_type);
2948 struct lp_type int_type = lp_int_type(bld->type); local
3026 int_type, PIPE_FUNC_EQUAL,
3752 struct lp_type int_type = lp_int_type(bld->type); local
3765 return lp_build_compare(bld->gallivm, int_type, PIPE_FUNC_NOTEQUAL,
3779 struct lp_type int_type = lp_int_type(type); local
3780 LLVMValueRef const0 = lp_build_const_int_vec(gallivm, int_type,
    [all...]
lp_bld_tgsi_soa.c 179 LLVMTypeRef int_type = LLVMInt32TypeInContext(mask->bld->gallivm->context); local
192 int_type, "looplimiter");
195 LLVMConstInt(int_type, LP_MAX_TGSI_LOOP_ITERATIONS, false),
428 LLVMTypeRef int_type = LLVMInt32TypeInContext(mask->bld->gallivm->context); local
461 LLVMConstInt(int_type, 1, false),
478 LLVMConstNull(int_type), "i2cond");
2650 params.int_type = bld->bld_base.int_bld.type;
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_const.h 152 LLVMTypeRef int_type; local
156 int_type = LLVMIntTypeInContext(gallivm->context, 8 * sizeof(void *));
157 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0);
159 LLVMPointerType(int_type, 0),
lp_bld_printf.c 137 LLVMTypeRef int_type = LLVMIntTypeInContext(gallivm->context, sizeof(int) * 8); local
139 param = LLVMBuildZExt(builder, param, int_type, "");
141 param = LLVMBuildSExt(builder, param, int_type, "");
lp_bld_ir_common.c 152 LLVMTypeRef int_type = LLVMInt32TypeInContext(mask->bld->gallivm->context); local
166 int_type, "looplimiter");
169 LLVMConstInt(int_type, LP_MAX_TGSI_LOOP_ITERATIONS, false),
278 LLVMTypeRef int_type = LLVMInt32TypeInContext(mask->bld->gallivm->context); local
311 LLVMConstInt(int_type, 1, false),
328 LLVMConstNull(int_type), "i2cond");
lp_bld_format_srgb.c 188 struct lp_type int_type = lp_int_type(src_type); local
200 tmp = LLVMBuildBitCast(builder, tmp, lp_build_vec_type(gallivm, int_type), "");
lp_bld_sample.h 123 struct lp_type int_type; member in struct:lp_sampler_size_query_params
391 struct lp_type int_type; member in struct:lp_build_sample_context
lp_bld_arit.c 1790 LLVMTypeRef int_type; local
1796 int_type = lp_build_int_vec_type(bld->gallivm, type);
1801 sign = LLVMBuildBitCast(builder, a, int_type, "");
1803 one = LLVMConstBitCast(bld->one, int_type);
2837 struct lp_type int_type = lp_int_type(bld->type); local
2915 int_type, PIPE_FUNC_EQUAL,
3683 struct lp_type int_type = lp_int_type(bld->type); local
3696 return lp_build_compare(bld->gallivm, int_type, PIPE_FUNC_NOTEQUAL,
3710 struct lp_type int_type = lp_int_type(type); local
3711 LLVMValueRef const0 = lp_build_const_int_vec(gallivm, int_type,
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
ir_expression_operation.py 83 int_type = type("int", "i", "GLSL_TYPE_INT") variable
90 all_types = (uint_type, int_type, float_type, double_type, uint64_type, int64_type, bool_type)
91 numeric_types = (uint_type, int_type, float_type, double_type, uint64_type, int64_type)
92 signed_numeric_types = (int_type, float_type, double_type, int64_type)
93 integer_types = (uint_type, int_type, uint64_type, int64_type)
432 operation("f2i", 1, source_types=(float_type,), dest_type=int_type, c_expression="(int) {src0}"),
436 operation("i2f", 1, source_types=(int_type,), dest_type=float_type, c_expression="(float) {src0}"),
444 operation("i2b", 1, source_types=(uint_type, int_type), dest_type=bool_type, c_expression="{src0} ? true : false"),
446 operation("b2i", 1, source_types=(bool_type,), dest_type=int_type, c_expression="{src0} ? 1 : 0"),
450 operation("i2u", 1, source_types=(int_type,), dest_type=uint_type, c_expression="{src0}")
    [all...]
ir_constant_expression.cpp 729 const struct glsl_type *int_type = local
740 op[operand] = new(mem_ctx) ir_constant(int_type, &d);
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_idiv.c 207 nir_alu_type int_type = nir_op_infos[op].output_type | sz; local
210 nir_ssa_def *p = nir_type_convert(b, numer, int_type, float_type);
211 nir_ssa_def *q = nir_type_convert(b, denom, int_type, float_type);
222 res = nir_type_convert(b, res, float_type, int_type);
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
ir_expression_operation.py 83 int_type = type("int", "i", "GLSL_TYPE_INT") variable
90 all_types = (uint_type, int_type, float_type, double_type, uint64_type, int64_type, bool_type)
91 numeric_types = (uint_type, int_type, float_type, double_type, uint64_type, int64_type)
92 signed_numeric_types = (int_type, float_type, double_type, int64_type)
93 integer_types = (uint_type, int_type, uint64_type, int64_type)
432 operation("f2i", 1, source_types=(float_type,), dest_type=int_type, c_expression="(int) {src0}"),
436 operation("i2f", 1, source_types=(int_type,), dest_type=float_type, c_expression="(float) {src0}"),
442 operation("i2b", 1, source_types=(uint_type, int_type), dest_type=bool_type, c_expression="{src0} ? true : false"),
444 operation("b2i", 1, source_types=(bool_type,), dest_type=int_type, c_expression="{src0} ? 1 : 0"),
448 operation("i2u", 1, source_types=(int_type,), dest_type=uint_type, c_expression="{src0}")
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_shader_llvm_vs.c 112 LLVMTypeRef int_type = bit_size == 16 ? ctx->ac.i16 : ctx->ac.i32; local
206 fetches[3] = LLVMConstInt(int_type, 1, 0);
219 LLVMValueRef c30 = LLVMConstInt(int_type, 30, 0);
223 tmp = LLVMBuildFPToUI(ctx->ac.builder, tmp, int_type, "");
235 fix_fetch.u.format == AC_FETCH_FORMAT_SNORM ? LLVMConstInt(int_type, 7, 0) : c30, "");
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_llvm.c 222 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
228 elem_types[1] = LLVMArrayType(int_type, /* num_vs_constants */
273 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
279 elem_types[1] = LLVMArrayType(int_type, /* num_constants */
290 elem_types[6] = LLVMPointerType(LLVMPointerType(int_type, 0), 0);
291 elem_types[7] = LLVMPointerType(LLVMVectorType(int_type,
293 elem_types[8] = LLVMPointerType(LLVMVectorType(int_type,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_state_fs.c 312 struct lp_type int_type = lp_int_type(type); local
384 int_vec_type = lp_build_vec_type(gallivm, int_type);
527 lp_build_context_init(&smask_bld, gallivm, int_type);
561 LLVMValueRef s_max_mask = lp_build_const_int_vec(gallivm, int_type, 255);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
draw_llvm.c 318 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
324 elem_types[1] = LLVMArrayType(int_type, /* num_vs_constants */
335 elem_types[7] = LLVMArrayType(LLVMPointerType(int_type, 0), /* vs_ssbo */
337 elem_types[8] = LLVMArrayType(int_type, /* num_vs_ssbos */
385 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
391 elem_types[1] = LLVMArrayType(int_type, /* num_constants */
403 elem_types[7] = LLVMPointerType(LLVMPointerType(int_type, 0), 0);
404 elem_types[8] = LLVMPointerType(LLVMVectorType(int_type,
406 elem_types[9] = LLVMPointerType(LLVMVectorType(int_type,
409 elem_types[10] = LLVMArrayType(LLVMPointerType(int_type, 0), /* ssbos *
565 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
667 LLVMTypeRef int_type = LLVMInt32TypeInContext(gallivm->context); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_state_fs.c 584 struct lp_type int_type = lp_int_type(type); local
670 int_vec_type = lp_build_vec_type(gallivm, int_type);
1046 lp_build_context_init(&smask_bld, gallivm, int_type);
1150 LLVMValueRef cmp = LLVMBuildICmp(builder, LLVMIntNE, smask_bit, lp_build_const_int_vec(gallivm, int_type, 0), "");
1201 LLVMValueRef s_max_mask = lp_build_const_int_vec(gallivm, int_type, 255);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/nir_to_spirv/
nir_to_spirv.c 276 SpvId int_type = spirv_builder_type_int(&ctx->builder, bit_size); local
278 return spirv_builder_type_vector(&ctx->builder, int_type,
282 return int_type;
  /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
nir_to_dxil.c 656 const struct dxil_type *int_type = dxil_module_get_int_type(&ctx->mod, 32); local
657 const struct dxil_value *int_undef = dxil_module_get_undef(&ctx->mod, int_type);
4058 const struct dxil_type *int_type = dxil_module_get_int_type(&ctx->mod, 32); local
4060 const struct dxil_value *int_undef = dxil_module_get_undef(&ctx->mod, int_type);
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/
brw_eu.h 845 unsigned int_type:1; member in struct:brw_instruction::__anon7056::__anon7065
860 unsigned int_type:1; member in struct:brw_instruction::__anon7056::__anon7066
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
brw_structs.h 1323 unsigned int int_type:1; member in struct:brw_instruction::__anon7617::__anon7623

Completed in 74 milliseconds

1 2