/third_party/node/deps/v8/src/compiler/ |
H A D | node-matchers.cc | 38 Node* input0 = merge->InputAt(0); in DiamondMatcher() 39 if (input0->InputCount() != 1) return; in DiamondMatcher() 42 Node* branch = input0->InputAt(0); in DiamondMatcher() 45 if (input0->opcode() == IrOpcode::kIfTrue && in DiamondMatcher() 48 if_true_ = input0; in DiamondMatcher() 50 } else if (input0->opcode() == IrOpcode::kIfFalse && in DiamondMatcher() 54 if_false_ = input0; in DiamondMatcher()
|
H A D | wasm-compiler.h | 651 Node* input0, Node* input1 = nullptr);
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_color_unquantize.cpp | 44 vint4 input0, in rgba_delta_unpack() 50 bit_transfer_signed(input1, input0); in rgba_delta_unpack() 54 input1 = input1 + input0; in rgba_delta_unpack() 57 input0 = uncontract_color(input0); in rgba_delta_unpack() 59 std::swap(input0, input1); in rgba_delta_unpack() 62 output0 = clamp(0, 255, input0); in rgba_delta_unpack() 71 * @param input0 The packed endpoint 0 color. 77 vint4 input0, in rgb_delta_unpack() 82 rgba_delta_unpack(input0, input in rgb_delta_unpack() 43 rgba_delta_unpack( vint4 input0, vint4 input1, vint4& output0, vint4& output1 ) rgba_delta_unpack() argument 76 rgb_delta_unpack( vint4 input0, vint4 input1, vint4& output0, vint4& output1 ) rgb_delta_unpack() argument 87 rgba_unpack( vint4 input0, vint4 input1, vint4& output0, vint4& output1 ) rgba_unpack() argument 115 rgb_unpack( vint4 input0, vint4 input1, vint4& output0, vint4& output1 ) rgb_unpack() argument 137 rgb_scale_alpha_unpack( vint4 input0, uint8_t alpha1, uint8_t scale, vint4& output0, vint4& output1 ) rgb_scale_alpha_unpack() argument 161 rgb_scale_unpack( vint4 input0, int scale, vint4& output0, vint4& output1 ) rgb_scale_unpack() argument [all...] |
H A D | astcenc_vecmathlib_common_4.h | 383 * @param input0 The first encoded endpoint. 387 vint4& input0, in bit_transfer_signed() 390 input1 = lsr<1>(input1) | (input0 & 0x80); in bit_transfer_signed() 391 input0 = lsr<1>(input0) & 0x3F; in bit_transfer_signed() 393 vmask4 mask = (input0 & 0x20) != vint4::zero(); in bit_transfer_signed() 394 input0 = select(input0, input0 - 0x40, mask); in bit_transfer_signed() 386 bit_transfer_signed( vint4& input0, vint4& input1 ) bit_transfer_signed() argument
|
H A D | astcenc_internal.h | 1895 * @param input0 The packed endpoint 0 color. 1901 vint4 input0, 1909 * @param input0 The packed endpoint 0 color. 1915 vint4 input0,
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktAtomicOperationTests.cpp | 517 // input0 = input at index i in checkOperation() 522 // are executed for each InOut value (using input0 and input1). in checkOperation() 534 const T input0 = *reinterpret_cast<const T*>(&original.input[elementNdx]); in checkOperation() local 544 exp.push_back(Expected<T>(originalInout + input0 + input1, originalInout, originalInout + input0)); in checkOperation() 545 exp.push_back(Expected<T>(originalInout + input0 + input1, originalInout + input1, originalInout)); in checkOperation() 551 exp.push_back(Expected<T>(originalInout & input0 & input1, originalInout, originalInout & input0)); in checkOperation() 552 exp.push_back(Expected<T>(originalInout & input0 & input1, originalInout & input1, originalInout)); in checkOperation() 558 exp.push_back(Expected<T>(originalInout | input0 | input in checkOperation() 737 const T input0 = *reinterpret_cast<const T*>(&original.input[elementNdx]); checkOperationFloatingPoint() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
H A D | vktAtomicOperationTests.cpp | 517 // input0 = input at index i in checkOperation() 522 // are executed for each InOut value (using input0 and input1). in checkOperation() 534 const T input0 = *reinterpret_cast<const T*>(&original.input[elementNdx]); in checkOperation() local 544 exp.push_back(Expected<T>(originalInout + input0 + input1, originalInout, originalInout + input0)); in checkOperation() 545 exp.push_back(Expected<T>(originalInout + input0 + input1, originalInout + input1, originalInout)); in checkOperation() 551 exp.push_back(Expected<T>(originalInout & input0 & input1, originalInout, originalInout & input0)); in checkOperation() 552 exp.push_back(Expected<T>(originalInout & input0 & input1, originalInout & input1, originalInout)); in checkOperation() 558 exp.push_back(Expected<T>(originalInout | input0 | input in checkOperation() 737 const T input0 = *reinterpret_cast<const T*>(&original.input[elementNdx]); checkOperationFloatingPoint() local [all...] |
/third_party/ffmpeg/libavcodec/mips/ |
H A D | vp8_idct_msa.c | 50 v8i16 input0, input1; in ff_vp8_idct_add_msa() local 58 LD_SH2(input, 8, input0, input1); in ff_vp8_idct_add_msa() 59 UNPCK_SH_SW(input0, in0, in1); in ff_vp8_idct_add_msa() 107 v8i16 input0, input1; in ff_vp8_luma_dc_wht_msa() local 112 LD_SH2(input, 8, input0, input1); in ff_vp8_luma_dc_wht_msa() 113 UNPCK_SH_SW(input0, in0, in1); in ff_vp8_luma_dc_wht_msa()
|
/third_party/ffmpeg/libavfilter/tests/ |
H A D | dnn-layer-mathbinary.c | 136 float input0[1*1*2*3] = { in test_no_broadcast() local 148 operands[0].data = input0; in test_no_broadcast() 165 for (int i = 0; i < sizeof(input0) / sizeof(float); i++) { in test_no_broadcast() 166 float expected_output = get_expected(input0[i], input1[i], op); in test_no_broadcast()
|
/third_party/ffmpeg/tests/dnn/ |
H A D | dnn-layer-mathbinary-test.c | 136 float input0[1*1*2*3] = { in test_no_broadcast() local 148 operands[0].data = input0; in test_no_broadcast() 165 for (int i = 0; i < sizeof(input0) / sizeof(float); i++) { in test_no_broadcast() 166 float expected_output = get_expected(input0[i], input1[i], op); in test_no_broadcast()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | dec_msa.c | 44 v8i16 input0, input1; in TransformOne() local 50 LD_SH2(in, 8, input0, input1); in TransformOne() 51 UNPCK_SH_SW(input0, in0, in1); in TransformOne() 78 v8i16 input0, input1; in TransformWHT() local 86 LD_SH2(in, 8, input0, input1); in TransformWHT() 88 tmp0 = input0 + input1; in TransformWHT() 89 tmp1 = input0 - input1; in TransformWHT() 93 VSHF_H2_SH(out0, out1, out0, out1, mask2, mask3, input0, input1); in TransformWHT() 94 tmp0 = input0 + input1; in TransformWHT() 95 tmp1 = input0 in TransformWHT() [all...] |
H A D | enc_msa.c | 46 v8i16 input0, input1; in ITransformOne() local 52 LD_SH2(in, 8, input0, input1); in ITransformOne() 53 UNPCK_SH_SW(input0, in0, in1); in ITransformOne()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/shaders/ |
H A D | common.h | 151 Int input0 = input[offset]; in bytesToInt() local 156 return input0 | (input1 << 8) | (input2 << 16) | (input3 << 24); in bytesToInt()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_read_image.cpp | 256 const uint8 *input0 = input; in DecodeFPDelta() local 260 const uint8 *input0 = input + rowIncrement; in DecodeFPDelta() 266 output [0] = input0 [col]; in DecodeFPDelta() 278 const uint8 *input0 = input; in DecodeFPDelta() local 285 output [0] = input0 [col]; in DecodeFPDelta() 299 const uint8 *input0 = input; in DecodeFPDelta() local 307 const uint8 *input0 = input + rowIncrement * 3; in DecodeFPDelta() 313 output [0] = input0 [col]; in DecodeFPDelta()
|
/third_party/node/deps/v8/src/compiler/backend/arm64/ |
H A D | instruction-selector-arm64.cc | 2101 PushParameter input0 = (*arguments)[slot]; in EmitPrepareArguments() local 2104 if (input0.node == nullptr) { in EmitPrepareArguments() 2112 input0.location.GetType() == input1.location.GetType()) { in EmitPrepareArguments() 2113 Emit(kArm64PokePair, g.NoOutput(), g.UseRegister(input0.node), in EmitPrepareArguments() 2117 Emit(kArm64Poke, g.NoOutput(), g.UseRegister(input0.node), in EmitPrepareArguments() 4115 void ArrangeShuffleTable(Arm64OperandGenerator* g, Node* input0, Node* input1, in ArrangeShuffleTable() argument 4117 if (input0 == input1) { in ArrangeShuffleTable() 4119 *src0 = *src1 = g->UseRegister(input0); in ArrangeShuffleTable() 4122 *src0 = g->UseFixed(input0, fp_fixed1); in ArrangeShuffleTable() 4141 Node* input0 in VisitI8x16Shuffle() local [all...] |
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_opencl.c | 879 struct nir_ssa_def *input0 = srcs[0]; in handle_shuffle2() local 885 unsigned in_elems = input0->num_components; in handle_shuffle2() 894 nir_ssa_def *val0 = nir_vector_extract(&b->nb, input0, vmask); in handle_shuffle2()
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
H A D | instruction-selector-arm.cc | 2988 void ArrangeShuffleTable(ArmOperandGenerator* g, Node* input0, Node* input1, in ArrangeShuffleTable() argument 2990 if (input0 == input1) { in ArrangeShuffleTable() 2992 *src0 = *src1 = g->UseRegister(input0); in ArrangeShuffleTable() 2995 *src0 = g->UseFixed(input0, q0); in ArrangeShuffleTable() 3006 Node* input0 = node->InputAt(0); in VisitI8x16Shuffle() local 3014 Emit(kArmS128Dup, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle() 3021 InstructionOperand src0 = g.UseUniqueRegister(input0); in VisitI8x16Shuffle() 3030 Emit(kArmS128Dup, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle() 3036 Emit(kArmS128Dup, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle() 3048 Emit(kArmS8x16Concat, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle() [all...] |
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fShaderOperatorTests.cpp | 261 , input0 (input0_) in BuiltinFuncInfo() 279 Value input0; member 1239 bool isIntCase = (funcInfo.input0.valueType & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0; in init() 1314 const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcInfo.input2; in init() 1315 const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : funcInfo.input2; in init()
|
/third_party/node/deps/v8/src/compiler/backend/mips/ |
H A D | instruction-selector-mips.cc | 2452 Node* input0 = node->InputAt(0); in VisitI8x16Shuffle() local 2458 g.UseRegister(input0), g.UseImmediate(offset)); in VisitI8x16Shuffle() 2462 Emit(kMipsS32x4Shuffle, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle() 2467 Emit(kMipsI8x16Shuffle, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderOperatorTests.cpp | 329 , input0 (input0_) in BuiltinFuncInfo() 366 , input0 (input0_) in BuiltinFuncInfo() 386 Value input0; member 1775 const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : funcInfo.input2; in init() 1776 const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcInfo.input2; in init()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
H A D | vktShaderRenderOperatorTests.cpp | 329 , input0 (input0_) in BuiltinFuncInfo() 366 , input0 (input0_) in BuiltinFuncInfo() 386 Value input0; member 1779 const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : funcInfo.input2; in init() 1780 const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcInfo.input2; in init()
|
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
H A D | instruction-selector-mips64.cc | 3220 Node* input0 = node->InputAt(0); in VisitI8x16Shuffle() local 3226 g.UseRegister(input0), g.UseImmediate(offset)); in VisitI8x16Shuffle() 3230 Emit(kMips64S32x4Shuffle, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle() 3235 Emit(kMips64I8x16Shuffle, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle()
|
/third_party/node/deps/v8/src/compiler/backend/loong64/ |
H A D | instruction-selector-loong64.cc | 2964 Node* input0 = node->InputAt(0); in VisitI8x16Shuffle() local 2970 g.UseRegister(input0), g.UseImmediate(offset)); in VisitI8x16Shuffle() 2974 Emit(kLoong64S32x4Shuffle, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle() 2979 Emit(kLoong64I8x16Shuffle, g.DefineAsRegister(node), g.UseRegister(input0), in VisitI8x16Shuffle()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | graph-builder-interface.cc | 841 const Value& input0, const Value& input1, in Simd8x16ShuffleOp() 843 TFNode* input_nodes[] = {input0.node, input1.node}; in Simd8x16ShuffleOp()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderOperatorTests.cpp | 544 , input0 (input0_) in BuiltinFuncInfo() 570 , input0 (input0_) in BuiltinFuncInfo() 590 Value input0; member 2178 const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : funcInfo.input2; in init() 2179 const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcInfo.input2; in init()
|