/third_party/mesa3d/src/intel/compiler/ |
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() 420 assert(inst->dst.file != UNIFORM && inst->dst.file != IMM); in regs_written() 435 inst->src[i].file == UNIFORM || inst->src[i].file == IMM ? 16 : REG_SIZE; in regs_read()
|
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() 447 assert(inst->dst.file != UNIFORM && inst->dst.file != IMM); in regs_written() 466 const unsigned reg_size = inst->src[i].file == UNIFORM ? 4 : REG_SIZE; in regs_read()
|
D | brw_vec4_copy_propagation.cpp | 315 if (value.file != UNIFORM && in try_copy_propagate() 333 if (inst->exec_size == 4 && value.file == UNIFORM && in try_copy_propagate() 356 if ((value.file == UNIFORM || value.swizzle != BRW_SWIZZLE_XYZW) && in try_copy_propagate() 384 (value.file == UNIFORM || in try_copy_propagate()
|
D | brw_vec4.cpp | 230 case UNIFORM: in size_read() 566 inst->src[i].file != UNIFORM) in opt_reduce_swizzle() 596 if (inst->src[i].file != UNIFORM || inst->src[i].nr >= UBO_START) in split_uniform_registers() 675 if (inst->src[i].file != UNIFORM || inst->src[i].nr >= UBO_START) in pack_uniform_registers() 701 inst->src[0].file == UNIFORM) { in pack_uniform_registers() 785 if (inst->src[i].file != UNIFORM || inst->src[i].nr >= UBO_START) in pack_uniform_registers() 848 if (inst->src[0].file != UNIFORM) { in opt_algebraic() 980 if (inst->src[i].file != UNIFORM || inst->src[i].nr >= UBO_START || in move_push_constants_to_pull_constants() 1657 case UNIFORM: in dump_instruction() 1663 const unsigned reg_size = (inst->dst.file == UNIFORM ? 16 : REG_SIZE); in dump_instruction() [all …]
|
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()
|
D | brw_fs_copy_propagation.cpp | 457 assert(entry->src.file == VGRF || entry->src.file == UNIFORM || in try_copy_propagate() 519 if ((entry->src.file == UNIFORM || !entry->src.is_contiguous()) && in try_copy_propagate() 953 inst->src[0].file == UNIFORM || in can_propagate_from()
|
D | brw_fs_builder.h | 830 case UNIFORM: in fix_3src_operand() 861 (src.file == IMM || src.file == UNIFORM || in fix_math_operand()
|
D | brw_vec4_cmod_propagation.cpp | 64 inst->src[0].file != UNIFORM)) in opt_cmod_propagation_local()
|
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() 1684 inst->src[0].file != UNIFORM) in move_uniform_array_access_to_pull_constants() 1714 inst->src[0].file != UNIFORM) in move_uniform_array_access_to_pull_constants()
|
D | brw_fs_cmod_propagation.cpp | 240 inst->src[0].file != UNIFORM)) in opt_cmod_propagation_local()
|
D | brw_fs.cpp | 66 assert(dst.file != IMM && dst.file != UNIFORM); in init() 85 case UNIFORM: in init() 551 case UNIFORM: in is_contiguous() 1029 case UNIFORM: in size_read() 1211 this->stride = (file == UNIFORM ? 0 : 1); in fs_reg() 1220 this->stride = (file == UNIFORM ? 0 : 1); in fs_reg() 1760 if (inst->src[i].file == UNIFORM) { in assign_curb_setup() 2480 if (inst->src[i].file != UNIFORM) in assign_constant_locations() 2688 assert(src.file == UNIFORM); in get_pull_locs() 2733 if (inst->src[i].file != UNIFORM) in lower_constant_loads() [all …]
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_program_interface_query.txt | 140 UNIFORM 0x92E1 243 * UNIFORM corresponds to the set of active uniform variables (section 353 For the UNIFORM, PROGRAM_INPUT, PROGRAM_OUTPUT, and 371 When a program is linked successfully, active variables in the UNIFORM, 516 TYPE UNIFORM, PROGRAM_INPUT, PROGRAM_OUTPUT, 520 ARRAY_SIZE UNIFORM, BUFFER_VARIABLE, PROGRAM_INPUT, 522 UNIFORM, TESS_CONTROL_SUBROUTINE_UNIFORM, 526 UNIFORM, TRANSFORM_FEEDBACK_VARYING 528 OFFSET UNIFORM, BUFFER_VARIABLE 529 BLOCK_INDEX UNIFORM, BUFFER_VARIABLE [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_program_interface_query.txt | 130 UNIFORM 0x92E1 233 * UNIFORM corresponds to the set of active uniform variables (section 343 For the UNIFORM, PROGRAM_INPUT, PROGRAM_OUTPUT, and 361 When a program is linked successfully, active variables in the UNIFORM, 506 TYPE UNIFORM, PROGRAM_INPUT, PROGRAM_OUTPUT, 510 ARRAY_SIZE UNIFORM, BUFFER_VARIABLE, PROGRAM_INPUT, 512 UNIFORM, TESS_CONTROL_SUBROUTINE_UNIFORM, 516 UNIFORM, TRANSFORM_FEEDBACK_VARYING 518 OFFSET UNIFORM, BUFFER_VARIABLE 519 BLOCK_INDEX UNIFORM, BUFFER_VARIABLE [all …]
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLLexer.h | 64 #undef UNIFORM 65 UNIFORM, enumerator
|
/third_party/flutter/skia/src/sksl/lex/ |
D | sksl.lex | 23 UNIFORM = "uniform"
|
/third_party/skia/src/sksl/lex/ |
D | sksl.lex | 33 UNIFORM = "uniform"
|
/third_party/vk-gl-cts/framework/randomshaders/ |
D | rsgVariable.cpp | 57 str << Token::UNIFORM; in tokenizeDeclaration()
|
D | rsgToken.hpp | 106 UNIFORM, enumerator
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | glslang_tab.h | 95 UNIFORM = 298, enumerator
|
D | glslang.l | 110 "uniform" { return(UNIFORM); }
|
/third_party/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_program.h | 54 #define BRW_PARAM_UNIFORM(idx) BRW_PARAM(UNIFORM, (idx))
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | glslang_tab_autogen.h | 98 UNIFORM = 299, enumerator
|
/third_party/glslang/glslang/MachineIndependent/ |
D | glslang_tab.cpp.h | 418 UNIFORM = 628, enumerator
|
/third_party/mesa3d/docs/relnotes/ |
D | 17.0.6.rst | 151 - i965/vec4: fix register width for DF VGRF and UNIFORM
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_compiler_nir.c | 221 #define UNIFORM(x) CONST_VAL(ETNA_UNIFORM_UNIFORM, x) macro 926 value[i] = UNIFORM(base * 4 + i); in emit_shader() 943 c->consts[i] = UNIFORM(i).u64; in emit_shader()
|