HomeSort by: relevance | last modified time | path
    Searched defs:ptr_type (Results 1 - 12 of 12) sorted by relevancy

  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_bld_interp.c 593 LLVMTypeRef ptr_type = LLVMPointerType(LLVMFloatTypeInContext( local
596 a = LLVMBuildBitCast(builder, a, ptr_type, "");
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/
vtn_cfg.c 32 struct vtn_type *ptr_type = param_type; local
36 ptr_type = rzalloc(b, struct vtn_type);
37 ptr_type->base_type = vtn_base_type_pointer;
38 ptr_type->deref = param_type;
39 ptr_type->storage_class = SpvStorageClassUniformConstant;
42 return vtn_pointer_from_ssa(b, nir_load_param(&b->nb, param_idx), ptr_type);
vtn_variables.c 220 const struct glsl_type *ptr_type = vtn_ptr_type_for_mode(b, mode); local
222 desc_load->num_components = glsl_get_vector_elements(ptr_type);
225 glsl_get_bit_size(ptr_type), NULL);
337 base->ptr_type->stride);
341 if (base->ptr_type && base->ptr_type->type) {
343 glsl_get_vector_elements(base->ptr_type->type);
344 tail->dest.ssa.bit_size = glsl_get_bit_size(base->ptr_type->type);
353 tail->type, base->ptr_type->stride);
471 /* We need ptr_type for size and alignment *
2380 struct vtn_type *ptr_type = vtn_value(b, w[1], vtn_value_type_type)->type; local
2431 struct vtn_type *ptr_type = vtn_value(b, w[1], vtn_value_type_type)->type; local
    [all...]
vtn_private.h 460 struct vtn_type *ptr_type; member in struct:vtn_pointer
644 struct vtn_type *ptr_type);
761 struct vtn_type *ptr_type);
  /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/
vtn_variables.c 415 base->ptr_type->stride);
429 if (base->ptr_type && base->ptr_type->type) {
431 glsl_get_vector_elements(base->ptr_type->type);
432 tail->dest.ssa.bit_size = glsl_get_bit_size(base->ptr_type->type);
441 tail->type, base->ptr_type->stride);
1687 struct vtn_type *ptr_type)
1689 vtn_assert(ptr_type->base_type == vtn_base_type_pointer);
1693 vtn_type_without_array(ptr_type->deref);
1696 ptr->mode = vtn_storage_class_to_mode(b, ptr_type->storage_class
2342 struct vtn_type *ptr_type = vtn_get_type(b, w[1]); local
2374 struct vtn_type *ptr_type = rzalloc(b, struct vtn_type); local
2419 struct vtn_type *ptr_type = vtn_get_type(b, w[1]); local
2618 struct vtn_type *ptr_type = vtn_get_value_type(b, w[3]); local
2637 struct vtn_type *ptr_type = vtn_get_type(b, w[1]); local
    [all...]
vtn_private.h 528 struct vtn_type *ptr_type; member in struct:vtn_pointer
738 struct vtn_type *ptr_type);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_nir_soa.c 740 LLVMTypeRef ptr_type = LLVMPointerType(bld_broad->elem_type, 0); local
741 kernel_args_ptr = LLVMBuildBitCast(builder, kernel_args_ptr, ptr_type, "");
998 LLVMTypeRef ptr_type = LLVMPointerType(bld_broad->elem_type, 0); local
999 consts_ptr = LLVMBuildBitCast(builder, consts_ptr, ptr_type, "");
  /xsrc/external/mit/MesaLib/dist/src/amd/llvm/
ac_nir_to_llvm.c 2112 LLVMTypeRef ptr_type = LLVMPointerType(result_type, AC_ADDR_SPACE_GLOBAL); local
2114 addr = LLVMBuildIntToPtr(ctx->ac.builder, addr, ptr_type, "");
2139 LLVMTypeRef ptr_type = LLVMPointerType(type, AC_ADDR_SPACE_GLOBAL); local
2141 addr = LLVMBuildIntToPtr(ctx->ac.builder, addr, ptr_type, "");
2176 LLVMTypeRef ptr_type = LLVMPointerType(data_type, AC_ADDR_SPACE_GLOBAL); local
2178 addr = LLVMBuildIntToPtr(ctx->ac.builder, addr, ptr_type, "");
3135 LLVMTypeRef ptr_type = local
3137 ptr = LLVMBuildBitCast(ctx->ac.builder, ptr, ptr_type, "");
3192 LLVMTypeRef ptr_type = local
3194 ptr = LLVMBuildBitCast(ctx->ac.builder, ptr, ptr_type, "");
    [all...]
ac_llvm_build.c 4673 LLVMTypeRef ptr_type; local
4676 ptr_type = ctx->i8;
4679 ptr_type = ctx->f32;
4682 ptr_type = ac_array_in_const32_addr_space(ctx->i8);
4685 ptr_type = ctx->v4i32;
4688 ptr_type = ctx->v8i32;
4694 return ac_array_in_const32_addr_space(ptr_type);
4697 return ac_array_in_const_addr_space(ptr_type);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/nir_to_spirv/
nir_to_spirv.c 433 SpvId ptr_type = spirv_builder_type_pointer(&ctx->builder, local
436 ctx->shared_block_var = spirv_builder_emit_var(&ctx->builder, ptr_type, SpvStorageClassWorkgroup);
2203 SpvId ptr_type = spirv_builder_type_pointer(&ctx->builder, local
2211 SpvId member = spirv_builder_emit_access_chain(&ctx->builder, ptr_type,
2236 SpvId ptr_type = spirv_builder_type_pointer(&ctx->builder, local
2245 SpvId member = spirv_builder_emit_access_chain(&ctx->builder, ptr_type,
2273 SpvId ptr_type = spirv_builder_type_pointer(&ctx->builder, local
2286 SpvId member = spirv_builder_emit_access_chain(&ctx->builder, ptr_type,
3489 SpvId ptr_type = spirv_builder_type_pointer(&ctx->builder, local
3494 ptr_type,
3518 SpvId ptr_type = spirv_builder_type_pointer(&ctx->builder, local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
dxil_module.c 698 const struct dxil_type *ptr_type = dxil_module_get_pointer_type(m, int8_type); local
699 if (!ptr_type)
702 return dxil_module_get_struct_type(m, "dx.types.Handle", &ptr_type, 1);
2310 const struct dxil_type *ptr_type = local
2312 return dxil_get_metadata_value(m, ptr_type, &func->value);
  /xsrc/external/mit/MesaLib.old/dist/src/amd/common/
ac_nir_to_llvm.c 2102 LLVMTypeRef ptr_type = LLVMPointerType(LLVMGetElementType(result_type), local
2104 address = LLVMBuildBitCast(ctx->ac.builder, address, ptr_type , "");
2113 LLVMTypeRef ptr_type = LLVMPointerType(result_type, local
2115 address = LLVMBuildBitCast(ctx->ac.builder, address, ptr_type , "");
2251 LLVMTypeRef ptr_type = LLVMPointerType(LLVMTypeOf(val), local
2253 address = LLVMBuildBitCast(ctx->ac.builder, address, ptr_type , "");
2257 LLVMTypeRef ptr_type = LLVMPointerType(LLVMTypeOf(val), local
2259 address = LLVMBuildBitCast(ctx->ac.builder, address, ptr_type , "");
2265 LLVMTypeRef ptr_type = LLVMPointerType(LLVMGetElementType(LLVMTypeOf(val)), local
2267 address = LLVMBuildBitCast(ctx->ac.builder, address, ptr_type , "");
    [all...]

Completed in 27 milliseconds