/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_ir_vec4.h | 73 case UNIFORM: in add_byte_offset() 109 const unsigned stride = (reg.file == UNIFORM ? 0 : 4); in offset() 146 return (reg.file == IMM || reg.file == UNIFORM || reg.is_null()) && in is_uniform() 190 const unsigned stride = (reg.file == UNIFORM ? 0 : 4); in offset() 235 (r.file == UNIFORM ? 16 : REG_SIZE) + r.offset + in reg_offset() 415 * UNIFORM and IMM files and 32B for all other files. 420 assert(inst->dst.file != UNIFORM && inst->dst.file != IMM); in regs_written() 429 * UNIFORM and IMM files and 32B for all other files. 435 inst->src[i].file == UNIFORM || inst->src[i].file == IMM ? 16 : REG_SIZE; in regs_read()
|
H A D | brw_ir_fs.h | 80 case UNIFORM: in byte_offset() 108 case UNIFORM: in horiz_offset() 142 case UNIFORM: in offset() 184 (r.file == UNIFORM ? 4 : REG_SIZE) + r.offset + in reg_offset() 442 * UNIFORM and IMM files and 32B for all other files. 447 assert(inst->dst.file != UNIFORM && inst->dst.file != IMM); 458 * UNIFORM files and 32B for all other files. 466 const unsigned reg_size = inst->src[i].file == UNIFORM ? 4 : REG_SIZE;
|
H A D | brw_vec4_copy_propagation.cpp | 317 if (value.file != UNIFORM && in try_copy_propagate() 335 if (inst->exec_size == 4 && value.file == UNIFORM && in try_copy_propagate() 358 if ((value.file == UNIFORM || value.swizzle != BRW_SWIZZLE_XYZW) && in try_copy_propagate() 386 (value.file == UNIFORM || in try_copy_propagate() 486 * from the same type file (IMM, VGRF, UNIFORM), and try in opt_copy_propagation()
|
H A D | brw_vec4.cpp | 228 case UNIFORM: in size_read() 562 inst->src[i].file != UNIFORM) in opt_reduce_swizzle() 592 if (inst->src[i].file != UNIFORM || inst->src[i].nr >= UBO_START) in split_uniform_registers() 656 if (inst->src[0].file != UNIFORM) { in opt_algebraic() 1374 case UNIFORM: in dump_instruction() 1380 const unsigned reg_size = (inst->dst.file == UNIFORM ? 16 : REG_SIZE); in dump_instruction() 1415 case UNIFORM: in dump_instruction() 1473 const unsigned reg_size = (inst->src[i].file == UNIFORM ? 16 : REG_SIZE); in dump_instruction() 1731 case UNIFORM: { in convert_to_hw_regs() 1837 case UNIFORM in convert_to_hw_regs() [all...] |
H A D | brw_vec4_builder.h | 572 if (src.file != UNIFORM && src.file != IMM) in fix_3src_operand() 575 if (src.file == UNIFORM && brw_is_single_value_swizzle(src.swizzle)) in fix_3src_operand()
|
H A D | brw_fs_builder.h | 829 case UNIFORM: in fix_3src_operand() 860 (src.file == IMM || src.file == UNIFORM || in fix_math_operand()
|
H A D | brw_fs_cmod_propagation.cpp | 240 inst->src[0].file != UNIFORM)) in opt_cmod_propagation_local()
|
H A D | brw_vec4_cmod_propagation.cpp | 64 inst->src[0].file != UNIFORM)) in opt_cmod_propagation_local()
|
H A D | brw_fs_copy_propagation.cpp | 459 assert(entry->src.file == VGRF || entry->src.file == UNIFORM || in try_copy_propagate() 540 if ((entry->src.file == UNIFORM || !entry->src.is_contiguous()) && in try_copy_propagate() 1007 inst->src[0].file == UNIFORM || in can_propagate_from()
|
H A D | brw_fs.cpp | 67 assert(dst.file != IMM && dst.file != UNIFORM); in init() 86 case UNIFORM: in init() 538 case UNIFORM: in is_contiguous() 947 case UNIFORM: 1130 this->stride = (file == UNIFORM ? 0 : 1); 1139 this->stride = (file == UNIFORM ? 0 : 1); 1660 /* Map the offsets in the UNIFORM file to fixed HW regs. */ 1663 if (inst->src[i].file == UNIFORM) { 2407 * Assign UNIFORM file registers to either push constants or pull constants. 2453 assert(src.file == UNIFORM); [all...] |
H A D | brw_vec4_visitor.cpp | 296 if (src.file != UNIFORM && src.file != IMM) in fix_3src_operand() 299 if (src.file == UNIFORM && brw_is_single_value_swizzle(src.swizzle)) in fix_3src_operand()
|
H A D | brw_eu_defines.h | 1008 UNIFORM, /* prog_data->params[reg] */ enumerator
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineRobustnessCacheTests.cpp | 53 UNIFORM, enumerator 268 else if (m_type == UNIFORM) in iterate() 290 if (m_type == STORAGE || m_type == UNIFORM) in iterate() 406 else if (m_type == UNIFORM) pipelineRobustnessInfo.uniformBuffers = vk::VK_PIPELINE_ROBUSTNESS_BUFFER_BEHAVIOR_ROBUST_BUFFER_ACCESS_EXT; in iterate() 413 else if (m_type == UNIFORM) pipelineRobustnessInfo.uniformBuffers = vk::VK_PIPELINE_ROBUSTNESS_BUFFER_BEHAVIOR_ROBUST_BUFFER_ACCESS_2_EXT; in iterate() 643 else if (m_type == UNIFORM) in initPrograms() 700 { UNIFORM, "uniform" }, in createPipelineRobustnessCacheTests()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgVariable.cpp | 57 str << Token::UNIFORM; in tokenizeDeclaration() member in rsg::Token
|
H A D | rsgToken.hpp | 106 UNIFORM, enumerator
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | glslang_tab.h | 95 UNIFORM = 298, enumerator
|
H A D | glslang_tab.cpp | 182 UNIFORM = 298, enumerator 749 "MATRIX3", "MATRIX4", "IN_QUAL", "OUT_QUAL", "INOUT_QUAL", "UNIFORM",
|
H A D | glslang.y | 164 %token <lex> MATRIX2 MATRIX3 MATRIX4 IN_QUAL OUT_QUAL INOUT_QUAL UNIFORM VARYING 988 | UNIFORM {
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | glslang_tab_autogen.h | 98 UNIFORM = 299, enumerator
|
H A D | glslang.y | 165 %token <lex> MATRIX2 MATRIX3 MATRIX4 IN_QUAL OUT_QUAL INOUT_QUAL UNIFORM BUFFER VARYING 889 | UNIFORM {
|
H A D | glslang_tab_autogen.cpp | 187 UNIFORM = 299, enumerator 817 "UNIFORM",
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | glslang_tab.cpp.h | 468 UNIFORM = 669, /* UNIFORM */ enumerator
|
H A D | Scan.cpp | 343 (*KeywordMap)["uniform"] = UNIFORM; in fillInKeywordMap() 939 case UNIFORM: in tokenizeIdentifier()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir.c | 223 #define UNIFORM(x) CONST_VAL(ETNA_UNIFORM_UNIFORM, x) macro 929 value[i] = UNIFORM(base * 4 + i); in emit_shader() 946 c->consts[i] = UNIFORM(i).u64; in emit_shader()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cShadingLanguage420PackTests.cpp | 337 else if ((Utils::UNIFORM == storage) && ((Utils::QUAL_IN == qualifier) || (Utils::QUAL_OUT == qualifier))) in prepareQualifiersSet() 1095 if (UNIFORM == storage) in getVariableFlavour() 1182 { "uni", "fs" } } /* UNIFORM */ in getVariableName() 6710 Utils::prepareVariableStrings(in_stage, Utils::UNIFORM, test_case, "vec4", "test", uni_declaration, uni_reference); in prepareShaderSource() 7025 const std::string& uni_reference = Utils::getVariableName(in_stage, Utils::UNIFORM, "test"); in prepareShaderSource() 7340 const std::string& uni_reference = Utils::getVariableName(in_stage, Utils::UNIFORM, "test"); in prepareShaderSource() 7664 const std::string& uni_reference = Utils::getVariableName(in_stage, Utils::UNIFORM, "test"); in prepareShaderSource()
|