/third_party/mesa3d/src/compiler/glsl/ |
D | ir.cpp | 187 ir_rvalue *op0, ir_rvalue *op1, in ir_expression() argument 193 this->operands[0] = op0; in ir_expression() 210 ir_expression::ir_expression(int op, ir_rvalue *op0) in ir_expression() argument 214 this->operands[0] = op0; in ir_expression() 255 this->type = op0->type; in ir_expression() 270 op0->type->vector_elements, 1); in ir_expression() 283 op0->type->vector_elements, 1); in ir_expression() 290 op0->type->vector_elements, 1); in ir_expression() 295 op0->type->vector_elements, 1); in ir_expression() 299 if (op0->type->base_type == GLSL_TYPE_INT) { in ir_expression() [all …]
|
D | lower_packing_builtins.cpp | 73 ir_rvalue *op0 = expr->operands[0]; in handle_rvalue() local 74 ralloc_steal(factory.mem_ctx, op0); in handle_rvalue() 78 *rvalue = lower_pack_snorm_2x16(op0); in handle_rvalue() 81 *rvalue = lower_pack_snorm_4x8(op0); in handle_rvalue() 84 *rvalue = lower_pack_unorm_2x16(op0); in handle_rvalue() 87 *rvalue = lower_pack_unorm_4x8(op0); in handle_rvalue() 90 *rvalue = lower_pack_half_2x16(op0); in handle_rvalue() 93 *rvalue = lower_unpack_snorm_2x16(op0); in handle_rvalue() 96 *rvalue = lower_unpack_snorm_4x8(op0); in handle_rvalue() 99 *rvalue = lower_unpack_unorm_2x16(op0); in handle_rvalue() [all …]
|
D | ir_constant_expression.cpp | 45 dot_f(ir_constant *op0, ir_constant *op1) in dot_f() argument 47 assert(op0->type->is_float() && op1->type->is_float()); in dot_f() 50 for (unsigned c = 0; c < op0->type->components(); c++) in dot_f() 51 result += op0->value.f[c] * op1->value.f[c]; in dot_f() 57 dot_d(ir_constant *op0, ir_constant *op1) in dot_d() argument 59 assert(op0->type->is_double() && op1->type->is_double()); in dot_d() 62 for (unsigned c = 0; c < op0->type->components(); c++) in dot_d() 63 result += op0->value.d[c] * op1->value.d[c]; in dot_d()
|
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/ |
D | parser_test.js | 135 let op0 = inst.operand(0); variable 136 assert.equal(op0.name(), "GLSL"); 137 assert.equal(op0.type(), "ValueEnum"); 138 assert.equal(op0.value(), 2); 156 let op0 = inst.operand(0); 157 assert.equal(op0.name(), "GLSL"); 158 assert.equal(op0.type(), "ValueEnum"); 159 assert.equal(op0.value(), 2); 307 let op0 = inst.operand(0); 308 assert.equal(op0.name(), "int"); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/ |
D | parser_test.js | 135 let op0 = inst.operand(0); variable 136 assert.equal(op0.name(), "GLSL"); 137 assert.equal(op0.type(), "ValueEnum"); 138 assert.equal(op0.value(), 2); 156 let op0 = inst.operand(0); 157 assert.equal(op0.name(), "GLSL"); 158 assert.equal(op0.type(), "ValueEnum"); 159 assert.equal(op0.value(), 2); 307 let op0 = inst.operand(0); 308 assert.equal(op0.name(), "int"); [all …]
|
/third_party/spirv-tools/tools/sva/src/ |
D | parser_test.js | 135 let op0 = inst.operand(0); variable 136 assert.equal(op0.name(), "GLSL"); 137 assert.equal(op0.type(), "ValueEnum"); 138 assert.equal(op0.value(), 2); 156 let op0 = inst.operand(0); 157 assert.equal(op0.name(), "GLSL"); 158 assert.equal(op0.type(), "ValueEnum"); 159 assert.equal(op0.value(), 2); 307 let op0 = inst.operand(0); 308 assert.equal(op0.name(), "int"); [all …]
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_glsl.hpp | 629 void emit_nminmax_op(uint32_t result_type, uint32_t id, uint32_t op0, uint32_t op1, GLSLstd450 op); 631 …void emit_quaternary_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1,… 633 …void emit_trinary_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, ui… 635 …void emit_binary_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, con… 636 …void emit_atomic_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, con… 637 …void emit_atomic_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, uin… 639 …void emit_unary_func_op_cast(uint32_t result_type, uint32_t result_id, uint32_t op0, const char *o… 641 …void emit_binary_func_op_cast(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1… 643 …void emit_binary_func_op_cast_clustered(uint32_t result_type, uint32_t result_id, uint32_t op0, ui… 645 …void emit_trinary_func_op_cast(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op… [all …]
|
D | spirv_glsl.cpp | 5665 void CompilerGLSL::emit_unary_op(uint32_t result_type, uint32_t result_id, uint32_t op0, const char… in emit_unary_op() argument 5667 bool forward = should_forward(op0); in emit_unary_op() 5668 emit_op(result_type, result_id, join(op, to_enclosed_unpacked_expression(op0)), forward); in emit_unary_op() 5669 inherit_expression_dependencies(result_id, op0); in emit_unary_op() 5672 void CompilerGLSL::emit_binary_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t … in emit_binary_op() argument 5678 bool forward = should_forward(op0) && should_forward(op1) && !force_temporary_precise; in emit_binary_op() 5681 …join(to_enclosed_unpacked_expression(op0), " ", op, " ", to_enclosed_unpacked_expression(op1)), fo… in emit_binary_op() 5683 inherit_expression_dependencies(result_id, op0); in emit_binary_op() 5708 void CompilerGLSL::emit_unrolled_binary_op(uint32_t result_type, uint32_t result_id, uint32_t op0, … in emit_unrolled_binary_op() argument 5711 auto &type0 = expression_type(op0); in emit_unrolled_binary_op() [all …]
|
D | spirv_hlsl.hpp | 244 bool emit_complex_bitcast(uint32_t result_type, uint32_t id, uint32_t op0) override; 344 BitcastType get_bitcast_type(uint32_t result_type, uint32_t op0);
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | dec_neon.c | 471 int8x16_t* const op0, in ApplyFilter2NoFlip_NEON() argument 479 *op0 = vqaddq_s8(p0s, delta3); in ApplyFilter2NoFlip_NEON() 487 uint8x16_t* const op0, uint8x16_t* const oq0) { in ApplyFilter2_NEON() argument 496 *op0 = FlipSignBack_NEON(sp0); in ApplyFilter2_NEON() 503 uint8x16_t* const op0, uint8x16_t* const oq0) { in DoFilter2_NEON() argument 510 ApplyFilter2_NEON(p0s, q0s, delta1, op0, oq0); in DoFilter2_NEON() 514 uint8x16_t p1, p0, q0, q1, op0, oq0; in SimpleVFilter16_NEON() local 518 DoFilter2_NEON(p1, p0, q0, q1, mask, &op0, &oq0); in SimpleVFilter16_NEON() 520 Store16x2_NEON(op0, oq0, p, stride); in SimpleVFilter16_NEON() 524 uint8x16_t p1, p0, q0, q1, oq0, op0; in SimpleHFilter16_NEON() local [all …]
|
/third_party/node/deps/v8/src/diagnostics/arm/ |
D | disasm-arm.cc | 1887 int op0 = instr->Bits(25, 24); in DecodeSpecialCondition() local 1893 } else if ((instr->Bits(27, 26) == 0b11) && (op0 == 0b10) && in DecodeSpecialCondition() 1903 int op0 = instr->Bits(23, 20); in DecodeFloatingPointDataProcessing() local 1907 if (((op0 & 0b1000) == 0) && op2 && !op3) { in DecodeFloatingPointDataProcessing() 2005 int op0 = instr->Bits(26, 25); in DecodeUnconditional() local 2013 if (op0 == 0b01) { in DecodeUnconditional() 2015 } else if ((op0 & 0b10) == 0b10 && op1) { in DecodeUnconditional() 2017 } else if (op0 == 0b10 && !op1) { in DecodeUnconditional() 2025 int op0 = instr->Bit(23); in DecodeAdvancedSIMDDataProcessing() local 2027 if (op0 == 0) { in DecodeAdvancedSIMDDataProcessing() [all …]
|
/third_party/mesa3d/src/microsoft/compiler/ |
D | dxil_module.h | 418 const struct dxil_value *op0, const struct dxil_value *op1, 423 const struct dxil_value *op0, const struct dxil_value *op1); 427 const struct dxil_value *op0,
|
D | dxil_module.c | 2632 const struct dxil_value *op0, const struct dxil_value *op1, in dxil_emit_binop() argument 2635 assert(types_equal(op0->type, op1->type)); in dxil_emit_binop() 2636 assert(legal_arith_type(op0->type)); in dxil_emit_binop() 2637 struct dxil_instr *instr = create_instr(m, INSTR_BINOP, op0->type); in dxil_emit_binop() 2642 instr->binop.operands[0] = op0; in dxil_emit_binop() 2651 const struct dxil_value *op0, const struct dxil_value *op1) in dxil_emit_cmp() argument 2653 assert(types_equal(op0->type, op1->type)); in dxil_emit_cmp() 2654 assert(legal_arith_type(op0->type)); in dxil_emit_cmp() 2660 instr->cmp.operands[0] = op0; in dxil_emit_cmp() 2668 const struct dxil_value *op0, in dxil_emit_select() argument [all …]
|
/third_party/openGLES/extensions/NV/ |
D | NV_fragment_program_option.txt | 615 f = VectorLoad(op0); 629 f = VectorLoad(op0); 644 tmp0 = VectorLoad(op0); 665 tmp0 = VectorLoad(op0); 692 tmp0 = VectorLoad(op0); 724 tmp0 = VectorLoad(op0); 757 axis = VectorLoad(op0); 779 tmp0 = VectorLoad(op0); 803 tmp0 = VectorLoad(op0); 817 tmp0 = VectorLoad(op0); [all …]
|
D | NV_fragment_program2.txt | 522 tmp0 = VectorLoad(op0); 539 tmp0 = VectorLoad(op0); 554 tmp0 = VectorLoad(op0); 570 tmp = VectorLoad(op0); 596 tmp = VectorLoad(op0); 756 tmp = VectorLoad(op0); 757 LoopCount = floor(op0.x); 758 LoopIndex = floor(op0.y); 759 LoopIncr = floor(op0.z); 793 tmp = VectorLoad(op0); [all …]
|
D | NV_vertex_program2.txt | 1870 Instructions will have up to three operands, referred to as "op0", "op1", 1895 tmp = VectorLoad(op0); 1923 tmp0 = VectorLoad(op0); 1951 itmp = AddrVectorLoad(op0); 1976 tmp = ScalarLoad(op0); 1986 tmp = VectorLoad(op0); 2016 tmp = VectorLoad(op0); 2094 tmp = ScalarLoad(op0); 2123 tmp0 = VectorLoad(op0); 2141 tmp0 = VectorLoad(op0); [all …]
|
D | NV_gpu_program4.txt | 2749 tmp = VectorLoad(op0); 2764 tmp0 = VectorLoad(op0); 2779 tmp0 = VectorLoad(op0); 2855 tmp = VectorLoad(op0); 2879 tmp0 = VectorLoad(op0); 2912 tmp = ScalarLoad(op0); 2943 tmp0 = VectorLoad(op0); 2964 tmp0 = VectorLoad(op0); 2982 tmp0 = VectorLoad(op0); 3000 tmp0 = VectorLoad(op0); [all …]
|
D | NV_vertex_program2_option.txt | 707 tmp = VectorLoad(op0); 730 itmp = AddrVectorLoad(op0); 744 tmp = VectorLoad(op0); 810 tmp = ScalarLoad(op0); 827 tmp = ScalarLoad(op0); 873 tmp0 = VectorLoad(op0); 897 tmp0 = VectorLoad(op0); 911 tmp = ScalarLoad(op0); 924 tmp0 = VectorLoad(op0); 938 tmp0 = VectorLoad(op0); [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_fragment_program_option.txt | 615 f = VectorLoad(op0); 629 f = VectorLoad(op0); 644 tmp0 = VectorLoad(op0); 665 tmp0 = VectorLoad(op0); 692 tmp0 = VectorLoad(op0); 724 tmp0 = VectorLoad(op0); 757 axis = VectorLoad(op0); 779 tmp0 = VectorLoad(op0); 803 tmp0 = VectorLoad(op0); 817 tmp0 = VectorLoad(op0); [all …]
|
D | NV_fragment_program2.txt | 522 tmp0 = VectorLoad(op0); 539 tmp0 = VectorLoad(op0); 554 tmp0 = VectorLoad(op0); 570 tmp = VectorLoad(op0); 596 tmp = VectorLoad(op0); 756 tmp = VectorLoad(op0); 757 LoopCount = floor(op0.x); 758 LoopIndex = floor(op0.y); 759 LoopIncr = floor(op0.z); 793 tmp = VectorLoad(op0); [all …]
|
D | NV_vertex_program2.txt | 1870 Instructions will have up to three operands, referred to as "op0", "op1", 1895 tmp = VectorLoad(op0); 1923 tmp0 = VectorLoad(op0); 1951 itmp = AddrVectorLoad(op0); 1976 tmp = ScalarLoad(op0); 1986 tmp = VectorLoad(op0); 2016 tmp = VectorLoad(op0); 2094 tmp = ScalarLoad(op0); 2123 tmp0 = VectorLoad(op0); 2141 tmp0 = VectorLoad(op0); [all …]
|
D | NV_gpu_program4.txt | 2749 tmp = VectorLoad(op0); 2764 tmp0 = VectorLoad(op0); 2779 tmp0 = VectorLoad(op0); 2855 tmp = VectorLoad(op0); 2879 tmp0 = VectorLoad(op0); 2912 tmp = ScalarLoad(op0); 2943 tmp0 = VectorLoad(op0); 2964 tmp0 = VectorLoad(op0); 2982 tmp0 = VectorLoad(op0); 3000 tmp0 = VectorLoad(op0); [all …]
|
D | NV_vertex_program2_option.txt | 707 tmp = VectorLoad(op0); 730 itmp = AddrVectorLoad(op0); 744 tmp = VectorLoad(op0); 810 tmp = ScalarLoad(op0); 827 tmp = ScalarLoad(op0); 873 tmp0 = VectorLoad(op0); 897 tmp0 = VectorLoad(op0); 911 tmp = ScalarLoad(op0); 924 tmp0 = VectorLoad(op0); 938 tmp0 = VectorLoad(op0); [all …]
|
/third_party/lzma/Asm/x86/ |
D | XzCrc64Opt.asm | 139 CRC macro op0:req, op1:req, dest0:req, dest1:req, src:req, t:req 140 op0 dest0, DWORD PTR [rT + src * 8 + 0800h * t]
|
/third_party/mesa3d/src/mesa/main/ |
D | atifragshader.c | 417 GLuint op0 = curProg->Instructions[j][i].Opcode[0]; in _mesa_EndFragmentShaderATI() local 419 const char *op0_enum = op0 > 5 ? _mesa_enum_to_string(op0) : "0"; in _mesa_EndFragmentShaderATI() 423 fprintf(stderr, "%2d %04X %s %d %04X %s %d\n", i, op0, op0_enum, count0, in _mesa_EndFragmentShaderATI()
|