Home
last modified time | relevance | path

Searched refs:float_type (Results 1 – 25 of 25) sorted by relevance

/external/mesa3d/src/glsl/
Dbuiltin_types.h73 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 …]
Dglsl_types.cpp318 return float_type; in get_base_type()
342 return float_type; in get_scalar_type()
413 return float_type + (rows - 1); in get_instance()
Dglsl_types.h162 static const glsl_type *const float_type; member
Dir.cpp309 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()
Dlower_clip_distance.cpp97 assert (ir->type->element_type() == glsl_type::float_type); in visit()
Dlower_ubo_reference.cpp291 ubo_load(glsl_type::float_type, in emit_ubo_loads()
Dbuiltin_variables.cpp750 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()
Dir_validate.cpp420 assert(ir->type == glsl_type::float_type); in visit_leave()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_cubemap_normalize.cpp80 glsl_type::float_type, in visit_leave()
84 glsl_type::float_type, in visit_leave()
88 glsl_type::float_type, in visit_leave()
Dbrw_fs_visitor.cpp224 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 …]
Dbrw_fs_cse.cpp128 entry->tmp = fs_reg(this, glsl_type::float_type); in opt_cse_local()
Dbrw_fs.cpp815 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()
Dbrw_vec4_visitor.cpp1861 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/
DDataExtractor.cpp731 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/
Dcore.ml34 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/
Ddraw_llvm.c157 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/
Dlp_bld_sample.h208 struct lp_type float_type; member
Dlp_bld_sample_soa.c1271 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/
Dbest-practices.txt48 self.float_type()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_setup.c181 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/
Dff_fragment_shader.cpp1166 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/
Dir_to_mesa.cpp1602 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/
Dst_glsl_to_tgsi.cpp2025 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/
Dllvm.ml349 external float_type : llcontext -> lltype = "llvm_float_type"
Dllvm.mli528 (** [float_type c] returns the IEEE 32-bit floating point type in the context
530 val float_type : llcontext -> lltype val