Home
last modified time | relevance | path

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

/external/mesa3d/src/glsl/
Dbuiltin_types.h63 const glsl_type *const glsl_type::float_type = & builtin_core_types[8];
77 { glsl_type::float_type, "near" },
78 { glsl_type::float_type, "far" },
79 { glsl_type::float_type, "diff" },
94 { glsl_type::float_type, "size" },
95 { glsl_type::float_type, "sizeMin" },
96 { glsl_type::float_type, "sizeMax" },
97 { glsl_type::float_type, "fadeThresholdSize" },
98 { glsl_type::float_type, "distanceConstantAttenuation" },
99 { glsl_type::float_type, "distanceLinearAttenuation" },
[all …]
Dglsl_types.cpp224 return float_type; in get_base_type()
296 return float_type + (rows - 1); in get_instance()
Dir_variable.cpp298 glsl_type::get_array_instance(glsl_type::float_type, in generate_130_vs_variables()
461 glsl_type::get_array_instance(glsl_type::float_type, in generate_130_fs_variables()
Dglsl_types.h151 static const glsl_type *const float_type; member
Dir.cpp327 this->type = glsl_type::float_type; in ir_expression()
332 this->type = glsl_type::float_type; in ir_expression()
457 this->type = glsl_type::float_type; in ir_constant()
Dir_validate.cpp372 assert(ir->type == glsl_type::float_type); in visit_leave()
Dast_to_hir.cpp1651 type = glsl_type::float_type; in hir()
/external/stlport/stlport/stl/
D_cmath.h163 # define _STLP_MATH_INLINE(float_type, func, cfunc) \ argument
164 inline float_type func (float_type x) { return _STLP_CMATH_FUNC_NAMESPACE::cfunc(x); }
165 # define _STLP_MATH_INLINE2(float_type, type, func, cfunc) \ argument
166 … inline float_type func (float_type x, type y) { return _STLP_CMATH_FUNC_NAMESPACE::cfunc(x, y); }
167 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) argument
168 # define _STLP_MATH_INLINE2_D(float_type, type, func, cfunc) argument
171 # define _STLP_MATH_INLINE(float_type, func, cfunc) \ argument
172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); }
173 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) \ argument
174 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::cfunc(x); }
[all …]
/external/llvm/test/Bindings/Ocaml/
Dvmcore.ml28 let float_type = Llvm.float_type context var
135 let cs = const_float float_type 2.75 in
137 insist (float_type = type_of cs);
290 ignore (define_global "const_fptrunc" (const_fptrunc ffoldbomb float_type) m);
408 insist (pointer_type float_type ==
409 type_of (declare_global float_type "GVar01" m));
417 insist (qualified_pointer_type float_type 3 ==
418 type_of (declare_qualified_global float_type "QGVar01" 3 m));
854 let f1 = build_uitofp p1 float_type "F1" atentry in
855 let f2 = build_uitofp p2 float_type "F2" atentry in
[all …]
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml283 external float_type : llcontext -> lltype = "llvm_float_type"
Dllvm.mli422 (** [float_type c] returns the IEEE 32-bit floating point type in the context
424 val float_type : llcontext -> lltype val