/external/mesa3d/src/glsl/ |
D | builtin_types.h | 73 const glsl_type *const glsl_type::float_type = & builtin_core_types[8]; 87 { glsl_type::float_type, "near" }, 88 { glsl_type::float_type, "far" }, 89 { glsl_type::float_type, "diff" }, 104 { glsl_type::float_type, "size" }, 105 { glsl_type::float_type, "sizeMin" }, 106 { glsl_type::float_type, "sizeMax" }, 107 { glsl_type::float_type, "fadeThresholdSize" }, 108 { glsl_type::float_type, "distanceConstantAttenuation" }, 109 { glsl_type::float_type, "distanceLinearAttenuation" }, [all …]
|
D | glsl_types.cpp | 318 return float_type; in get_base_type() 342 return float_type; in get_scalar_type() 413 return float_type + (rows - 1); in get_instance()
|
D | glsl_types.h | 162 static const glsl_type *const float_type; member
|
D | ir.cpp | 309 this->type = glsl_type::float_type; in ir_expression() 386 this->type = glsl_type::float_type; in ir_expression() 396 this->type = glsl_type::float_type; in ir_expression() 545 this->type = glsl_type::float_type; in ir_constant()
|
D | lower_clip_distance.cpp | 97 assert (ir->type->element_type() == glsl_type::float_type); in visit()
|
D | lower_ubo_reference.cpp | 291 ubo_load(glsl_type::float_type, in emit_ubo_loads()
|
D | builtin_variables.cpp | 750 glsl_type::get_array_instance(glsl_type::float_type, 0); in generate_130_vs_variables() 987 glsl_type::get_array_instance(glsl_type::float_type, 0); in generate_fs_clipdistance()
|
D | ir_validate.cpp | 420 assert(ir->type == glsl_type::float_type); in visit_leave()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_cubemap_normalize.cpp | 80 glsl_type::float_type, in visit_leave() 84 glsl_type::float_type, in visit_leave() 88 glsl_type::float_type, in visit_leave()
|
D | brw_fs_visitor.cpp | 224 if (ir->type != glsl_type::float_type) in try_emit_mad() 587 fs_reg packed_consts = fs_reg(this, glsl_type::float_type); in visit() 1256 fs_reg limit = fs_reg(this, glsl_type::float_type); in emit_texcoord() 1369 if (ir->type == glsl_type::float_type) { in swizzle_result() 1888 fs_reg(this, glsl_type::float_type); in emit_interpolation_setup_gen4() 1890 fs_reg(this, glsl_type::float_type); in emit_interpolation_setup_gen4() 1901 this->wpos_w = fs_reg(this, glsl_type::float_type); in emit_interpolation_setup_gen4() 1907 this->pixel_w = fs_reg(this, glsl_type::float_type); in emit_interpolation_setup_gen4() 1937 this->pixel_x = fs_reg(this, glsl_type::float_type); in emit_interpolation_setup_gen6() 1938 this->pixel_y = fs_reg(this, glsl_type::float_type); in emit_interpolation_setup_gen6() [all …]
|
D | brw_fs_cse.cpp | 128 entry->tmp = fs_reg(this, glsl_type::float_type); in opt_cse_local()
|
D | brw_fs.cpp | 815 fs_reg expanded = fs_reg(this, glsl_type::float_type); in emit_math() 855 fs_reg expanded = fs_reg(this, glsl_type::float_type); in emit_math() 862 fs_reg expanded = fs_reg(this, glsl_type::float_type); in emit_math() 1227 fs_reg dst = fs_reg(this, glsl_type::float_type); in setup_pull_constants()
|
D | brw_vec4_visitor.cpp | 1861 lod_type = glsl_type::float_type; in visit() 2019 if (ir->op == ir_txs || ir->type == glsl_type::float_type in swizzle_result() 2288 glsl_type::float_type, WRITEMASK_XYZW)))); in emit_urb_slot()
|
/external/lldb/source/Core/ |
D | DataExtractor.cpp | 731 typedef float float_type; in GetFloat() typedef 732 float_type val = 0.0; in GetFloat() 733 const size_t src_size = sizeof(float_type); in GetFloat() 734 const float_type *src = (const float_type *)GetData (offset_ptr, src_size); in GetFloat() 741 for (size_t i=0; i<sizeof(float_type); ++i) in GetFloat() 742 dst_data[sizeof(float_type) - 1 - i] = src_data[i]; in GetFloat() 755 typedef double float_type; in GetDouble() typedef 756 float_type val = 0.0; in GetDouble() 757 const size_t src_size = sizeof(float_type); in GetDouble() 758 const float_type *src = (const float_type *)GetData (offset_ptr, src_size); in GetDouble() [all …]
|
/external/llvm/test/Bindings/OCaml/ |
D | core.ml | 34 let float_type = Llvm.float_type context var 171 let cs = const_float float_type 2.75 in 173 insist (float_type = type_of cs); 342 ignore (define_global "const_fptrunc" (const_fptrunc ffoldbomb float_type) m); 470 insist (pointer_type float_type == 471 type_of (declare_global float_type "GVar01" m)); 479 insist (qualified_pointer_type float_type 3 == 480 type_of (declare_qualified_global float_type "QGVar01" 3 m)); 955 let f1 = build_uitofp p1 float_type "F1" atentry in 956 let f2 = build_uitofp p2 float_type "F2" atentry in [all …]
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_llvm.c | 157 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); in create_jit_context_type() local 161 elem_types[0] = LLVMPointerType(float_type, 0); /* vs_constants */ in create_jit_context_type() 162 elem_types[1] = LLVMPointerType(float_type, 0); /* gs_constants */ in create_jit_context_type() 163 elem_types[2] = LLVMPointerType(LLVMArrayType(LLVMArrayType(float_type, 4), in create_jit_context_type() 165 elem_types[3] = LLVMPointerType(float_type, 0); /* viewport */ in create_jit_context_type()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_sample.h | 208 struct lp_type float_type; member
|
D | lp_bld_sample_soa.c | 1271 bld.float_type = lp_type_float(32); in lp_build_sample_soa() 1284 lp_build_context_init(&bld.float_bld, gallivm, bld.float_type); in lp_build_sample_soa() 1447 bld4.float_type = lp_type_float(32); in lp_build_sample_soa() 1460 lp_build_context_init(&bld4.float_bld, gallivm, bld4.float_type); in lp_build_sample_soa()
|
/external/lldb/docs/testsuite/ |
D | best-practices.txt | 48 self.float_type()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_setup.c | 181 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); in emit_facing_coef() local 183 LLVMValueRef a0_0f = LLVMBuildSIToFP(builder, a0_0, float_type, ""); in emit_facing_coef()
|
/external/mesa3d/src/mesa/main/ |
D | ff_fragment_shader.cpp | 1166 ir_variable *f_var = p->make_temp(glsl_type::float_type, "fog_factor"); in emit_fog_instructions() 1195 ir_variable *temp_var = p->make_temp(glsl_type::float_type, "fog_temp"); in emit_fog_instructions()
|
/external/mesa3d/src/mesa/program/ |
D | ir_to_mesa.cpp | 1602 index_reg = get_temp(glsl_type::float_type); in visit() 1612 src_reg accum_reg = get_temp(glsl_type::float_type); in visit()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi.cpp | 2025 glsl_type::int_type : glsl_type::float_type); in visit() 2036 glsl_type::int_type : glsl_type::float_type); in visit()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.ml | 349 external float_type : llcontext -> lltype = "llvm_float_type"
|
D | llvm.mli | 528 (** [float_type c] returns the IEEE 32-bit floating point type in the context 530 val float_type : llcontext -> lltype val
|