| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| ir_expression_operation.py | 86 float_type = type("float", "f", "GLSL_TYPE_FLOAT") 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) 94 real_types = (float_type, double_type) 426 operation("exp", 1, source_types=(float_type,), c_expression="expf({src0})"), # Log base e on gentype 427 operation("log", 1, source_types=(float_type,), c_expression="logf({src0})"), # Natural log on gentype 428 operation("exp2", 1, source_types=(float_type,), c_expression="exp2f({src0})"), 429 operation("log2", 1, source_types=(float_type,), c_expression="log2f({src0})"), 432 operation("f2i", 1, source_types=(float_type,), dest_type=int_type, c_expression="(int) {src0}") [all...] |
| ir_constant_expression.cpp | 714 const struct glsl_type *float_type = local 725 op[operand] = new(mem_ctx) ir_constant(float_type, &f);
|
| builtin_functions.cpp | 1405 glsl_type::float_type, 1421 glsl_type::float_type, 1440 glsl_type::float_type, 1510 glsl_type::float_type, 1526 glsl_type::float_type, 1587 _read_invocation_intrinsic(glsl_type::float_type), 1604 _read_first_invocation_intrinsic(glsl_type::float_type), 1634 _##NAME(glsl_type::float_type), \ 1642 _##NAME(always_available, glsl_type::float_type), \ 1654 _##NAME(v130, glsl_type::float_type), \ 6601 tex->set_sampler(var_ref(s), glsl_type::float_type); member in class:glsl_type [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_lower_idiv.c | 208 nir_alu_type float_type = nir_type_float | (options->allow_fp16 ? sz * 2 : 32); 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 | 86 float_type = type("float", "f", "GLSL_TYPE_FLOAT") 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) 94 real_types = (float_type, double_type) 426 operation("exp", 1, source_types=(float_type,), c_expression="expf({src0})"), # Log base e on gentype 427 operation("log", 1, source_types=(float_type,), c_expression="logf({src0})"), # Natural log on gentype 428 operation("exp2", 1, source_types=(float_type,), c_expression="exp2f({src0})"), 429 operation("log2", 1, source_types=(float_type,), c_expression="log2f({src0})"), 432 operation("f2i", 1, source_types=(float_type,), dest_type=int_type, c_expression="(int) {src0}") [all...] |
| builtin_functions.cpp | 1288 glsl_type::float_type, 1301 glsl_type::float_type, 1314 glsl_type::float_type, 1357 glsl_type::float_type, 1370 glsl_type::float_type, 1431 _read_invocation_intrinsic(glsl_type::float_type), 1448 _read_first_invocation_intrinsic(glsl_type::float_type), 1476 _##NAME(glsl_type::float_type), \ 1484 _##NAME(always_available, glsl_type::float_type), \ 1496 _##NAME(v130, glsl_type::float_type), \ 6105 tex->set_sampler(var_ref(s), glsl_type::float_type); member in class:glsl_type [all...] |
| /xsrc/external/mit/xf86-input-synaptics/dist/tools/ |
| synclient.c | 309 Atom prop, type, float_type; local 318 float_type = XInternAtom(dpy, XATOM_FLOAT, True); 319 if (!float_type) 365 if (!float_type) 367 if (format != 32 || type != float_type) { 388 Atom a, type, float_type; local 398 float_type = XInternAtom(dpy, XATOM_FLOAT, True); 399 if (!float_type) 444 if (!float_type) 446 if (format != 32 || type != float_type) { [all...] |
| /xsrc/external/mit/xf86-input-synaptics/dist/src/ |
| properties.c | 53 static Atom float_type; variable 151 XIChangeDeviceProperty(dev, atom, float_type, 32, PropModeReplace, 184 float_type = XIGetKnownProperty(XATOM_FLOAT); 185 if (!float_type) { 186 float_type = MakeAtom(XATOM_FLOAT, strlen(XATOM_FLOAT), TRUE); 187 if (!float_type) { 513 if (prop->size != 4 || prop->format != 32 || prop->type != float_type) 591 if (prop->size != 1 || prop->format != 32 || prop->type != float_type) 633 if (prop->size != 2 || prop->format != 32 || prop->type != float_type)
|
| synaptics.c | 1154 Atom float_type, prop; local 1200 float_type = XIGetKnownProperty(XATOM_FLOAT); 1210 XIChangeDeviceProperty(dev, prop, float_type, 32,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| lp_state_setup.c | 135 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 137 LLVMValueRef a0_0f = LLVMBuildSIToFP(builder, a0_0, float_type, "");
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| si_shader_llvm_vs.c | 113 LLVMTypeRef float_type = bit_size == 16 ? ctx->ac.f16 : ctx->ac.f32; local 202 fetches[i] = LLVMGetUndef(float_type); 208 fetches[3] = LLVMConstReal(float_type, 1); 241 LLVMValueRef neg_one = LLVMConstReal(float_type, -1.0); 242 tmp = LLVMBuildSIToFP(ctx->ac.builder, tmp, float_type, ""); 246 tmp = LLVMBuildSIToFP(ctx->ac.builder, tmp, float_type, "");
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_sample.h | 331 struct lp_type float_type; member in struct:lp_build_sample_context
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| lp_state_setup.c | 134 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 136 LLVMValueRef a0_0f = LLVMBuildSIToFP(builder, a0_0, float_type, "");
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_sample.h | 384 struct lp_type float_type; member in struct:lp_build_sample_context
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/ |
| draw_llvm.c | 221 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 226 elem_types[0] = LLVMArrayType(LLVMPointerType(float_type, 0), /* vs_constants */ 230 elem_types[2] = LLVMPointerType(LLVMArrayType(LLVMArrayType(float_type, 4), 232 elem_types[3] = LLVMPointerType(float_type, 0); /* viewports */ 272 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 277 elem_types[0] = LLVMArrayType(LLVMPointerType(float_type, 0), /* constants */ 281 elem_types[2] = LLVMPointerType(LLVMArrayType(LLVMArrayType(float_type, 4), 283 elem_types[3] = LLVMPointerType(float_type, 0); /* viewports */ 333 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 336 input_array = LLVMVectorType(float_type, TGSI_NUM_CHANNELS); /* num primitives * [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/ |
| draw_llvm.c | 317 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 322 elem_types[0] = LLVMArrayType(LLVMPointerType(float_type, 0), /* vs_constants */ 326 elem_types[2] = LLVMPointerType(LLVMArrayType(LLVMArrayType(float_type, 4), 328 elem_types[3] = LLVMPointerType(float_type, 0); /* viewports */ 339 elem_types[9] = LLVMPointerType(float_type, 0); /* aniso table */ 384 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 389 elem_types[0] = LLVMArrayType(LLVMPointerType(float_type, 0), /* constants */ 393 elem_types[2] = LLVMPointerType(LLVMArrayType(LLVMArrayType(float_type, 4), 395 elem_types[3] = LLVMPointerType(float_type, 0); /* viewports */ 413 elem_types[12] = LLVMPointerType(float_type, 0); /* aniso table * 459 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 564 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 619 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 632 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 645 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local 666 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/nir_to_spirv/ |
| nir_to_spirv.c | 262 SpvId float_type = spirv_builder_type_float(&ctx->builder, bit_size); local 264 return spirv_builder_type_vector(&ctx->builder, float_type, 268 return float_type; 3307 SpvId float_type = spirv_builder_type_float(&ctx->builder, 32); local 3310 float_type,
|
| /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/ |
| nir_to_dxil.c | 4059 const struct dxil_type *float_type = dxil_module_get_float_type(&ctx->mod, 32); local 4061 const struct dxil_value *float_undef = dxil_module_get_undef(&ctx->mod, float_type);
|