/external/v8/test/webkit/fast/regex/ |
D | pcre-test-4.js | 29 var input0 = "acb"; variable 44 var input0 = "a\u4000xyb"; 62 var input0 = "a\xc0\x88b"; 67 var input0 = "a\u0100b"; 72 var input0 = "a\xc0\x88b"; 77 var input0 = "a\u0100b"; 82 var input0 = "a\xc0\x92bcd"; 87 var input0 = "a\u0240bcd"; 92 var input0 = "a\xc0\x92bcd"; 97 var input0 = "a\u0240bcd"; [all …]
|
D | pcre-test-4-expected.txt | 29 PASS regex0.exec(input0); is results 33 PASS regex1.exec(input0); is results 38 PASS regex2.exec(input0); is results 39 PASS regex3.exec(input0); is results 40 PASS regex4.exec(input0); is results 41 PASS regex5.exec(input0); is results 42 PASS regex6.exec(input0); is results 43 PASS regex7.exec(input0); is results 44 PASS regex8.exec(input0); is results 45 PASS regex9.exec(input0); is results [all …]
|
/external/v8/src/compiler/ |
D | node-matchers.cc | 38 Node* input0 = merge->InputAt(0); in DiamondMatcher() local 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()
|
/external/opencv3/modules/superres/src/ |
D | optical_flow.cpp | 65 virtual void impl(InputArray input0, InputArray input1, OutputArray dst) = 0; 96 UMat input0 = convertToType(frame0, work_type_, ubuf_[2], ubuf_[3]); in ocl_calc() local 101 impl(input0, input1, _flow1); in ocl_calc() 105 impl(input0, input1, uflow_); in ocl_calc() 131 Mat input0 = convertToType(frame0, work_type_, buf_[2], buf_[3]); in calc() local 136 impl(input0, input1, _flow1); in calc() 140 impl(input0, input1, flow_); in calc() 192 void impl(InputArray input0, InputArray input1, OutputArray dst); 225 void Farneback::impl(InputArray input0, InputArray input1, OutputArray dst) in impl() argument 227 calcOpticalFlowFarneback(input0, input1, InputOutputArray(dst), pyrScale_, in impl() [all …]
|
/external/v8/test/unittests/compiler/ |
D | js-context-relaxation-unittest.cc | 78 Node* const input0 = Parameter(0); in TEST_F() local 87 javascript()->CallFunction(2, STRICT, VectorSlotPair()), input0, input1, in TEST_F() 96 Node* const input0 = Parameter(0); in TEST_F() local 105 javascript()->CallFunction(2, STRICT, VectorSlotPair()), input0, input1, in TEST_F() 114 Node* const input0 = Parameter(0); in TEST_F() local 123 javascript()->CallFunction(2, STRICT, VectorSlotPair()), input0, input1, in TEST_F() 132 Node* const input0 = Parameter(0); in TEST_F() local 141 javascript()->CallFunction(2, STRICT, VectorSlotPair()), input0, input1, in TEST_F() 150 Node* const input0 = Parameter(0); in TEST_F() local 162 javascript()->CallFunction(2, STRICT, VectorSlotPair()), input0, input1, in TEST_F() [all …]
|
D | js-intrinsic-lowering-unittest.cc | 66 Node* const input0 = Parameter(0); in TEST_F() local 72 javascript()->CallRuntime(Runtime::kInlineConstructDouble, 2), input0, in TEST_F() 78 input0)); in TEST_F()
|
/external/v8/test/mjsunit/ |
D | regexp-capture-3.js | 192 var input0 = "a"; variable 193 regex6.exec(input0); 200 regex7.exec(input0); 203 regex8.exec(input0); 209 regex9.exec(input0); 212 regex10.exec(input0); 215 regex11.exec(input0);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | lattice_mips.c | 127 void WebRtcIsacfix_FilterMaLoopMIPS(int16_t input0, // Filter coefficient in WebRtcIsacfix_FilterMaLoopMIPS() argument 240 : [input0] "r" (input0), [input1] "r" (input1), in WebRtcIsacfix_FilterMaLoopMIPS() 324 : [input0] "r" (input0), [input1] "r" (input1), in WebRtcIsacfix_FilterMaLoopMIPS()
|
D | lattice_neon.c | 25 void WebRtcIsacfix_FilterMaLoopNeon(int16_t input0, // Filter coefficient in WebRtcIsacfix_FilterMaLoopNeon() argument 36 int32x4_t input0_v = vdupq_n_s32((int32_t)input0 << 16); in WebRtcIsacfix_FilterMaLoopNeon() 185 tmp32a = WEBRTC_SPL_MUL_16_32_RSFT15(input0, *ptr0); in WebRtcIsacfix_FilterMaLoopNeon() 192 tmp32b = WEBRTC_SPL_MUL_16_32_RSFT15(input0, *ptr2); in WebRtcIsacfix_FilterMaLoopNeon()
|
D | codec.h | 170 void WebRtcIsacfix_FilterMaLoopC(int16_t input0, 184 void WebRtcIsacfix_FilterMaLoopNeon(int16_t input0, 199 void WebRtcIsacfix_FilterMaLoopMIPS(int16_t input0, 216 typedef void (*FilterMaLoopFix)(int16_t input0,
|
D | lattice.c | 55 void WebRtcIsacfix_FilterMaLoopC(int16_t input0, // Filter coefficient in WebRtcIsacfix_FilterMaLoopC() argument 76 tmp32a = WEBRTC_SPL_MUL_16_32_RSFT15(input0, *ptr0); // Q15 * Q15 >> 15 = Q15 in WebRtcIsacfix_FilterMaLoopC() 82 tmp32b = WEBRTC_SPL_MUL_16_32_RSFT15(input0, *ptr2); // Q15*Q15>>15 = Q15 in WebRtcIsacfix_FilterMaLoopC()
|
/external/libvpx/libvpx/vp8/common/mips/msa/ |
D | idct_msa.c | 90 v8i16 input0, input1; in idct4x4_addblk_msa() local 98 LD_SH2(input, 8, input0, input1); in idct4x4_addblk_msa() 99 UNPCK_SH_SW(input0, in0, in1); in idct4x4_addblk_msa() 147 v8i16 input0, input1; in vp8_short_inv_walsh4x4_msa() local 151 LD_SH2(input, 8, input0, input1); in vp8_short_inv_walsh4x4_msa() 152 UNPCK_SH_SW(input0, in0, in1); in vp8_short_inv_walsh4x4_msa() 182 v8i16 input0, input1, dequant_in0, dequant_in1, mul0, mul1; in dequant_idct4x4_addblk_msa() local 192 LD_SH2(input, 8, input0, input1); in dequant_idct4x4_addblk_msa() 194 MUL2(input0, dequant_in0, input1, dequant_in1, mul0, mul1); in dequant_idct4x4_addblk_msa()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | inv_txfm_sse2.c | 33 __m128i input0, input1, input2, input3; in vpx_idct4x4_16_add_sse2() local 36 input0 = load_input_data(input); in vpx_idct4x4_16_add_sse2() 40 input0 = _mm_shufflelo_epi16(input0, 0xd8); in vpx_idct4x4_16_add_sse2() 41 input0 = _mm_shufflehi_epi16(input0, 0xd8); in vpx_idct4x4_16_add_sse2() 45 input1 = _mm_unpackhi_epi32(input0, input0); in vpx_idct4x4_16_add_sse2() 46 input0 = _mm_unpacklo_epi32(input0, input0); in vpx_idct4x4_16_add_sse2() 51 input0 = _mm_madd_epi16(input0, cst); in vpx_idct4x4_16_add_sse2() 56 input0 = _mm_add_epi32(input0, rounding); in vpx_idct4x4_16_add_sse2() 61 input0 = _mm_srai_epi32(input0, DCT_CONST_BITS); in vpx_idct4x4_16_add_sse2() 67 input0 = _mm_packs_epi32(input0, input1); in vpx_idct4x4_16_add_sse2() [all …]
|
D | fwd_txfm_impl_sse2.h | 623 __m128i input0, input1, input2, input3, input4, input5, input6, input7; in FDCT16x16_2D() local 720 input0 = ADD_EPI16(in00, in15); in FDCT16x16_2D() 729 overflow = check_epi16_overflow_x8(&input0, &input1, &input2, &input3, in FDCT16x16_2D() 761 const __m128i q0 = ADD_EPI16(input0, input7); in FDCT16x16_2D() 768 const __m128i q7 = SUB_EPI16(input0, input7); in FDCT16x16_2D()
|
/external/dng_sdk/source/ |
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()
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | fwd_txfm_msa.h | 189 #define FDCT8x16_ODD(input0, input1, input2, input3, \ argument 221 BUTTERFLY_4(input0, input1, stp22_m, stp23_m, \
|
/external/opencv3/modules/imgproc/test/ |
D | test_imgwarp.cpp | 810 cv::Mat input0; member in CV_UndistortTest 867 cv::undistort(input0,input_output,input1,cv::Mat()); in run_func() 871 cv::undistort(input0,input_output,input1,input2); in run_func() 938 input0 = test_mat[INPUT][0]; in prepare_test_case()
|
/external/deqp/modules/gles2/functional/ |
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)… in init() 1314 …const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcIn… in init() 1315 …const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : fun… in init()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderOperatorTests.cpp | 341 , input0 (input0_) in BuiltinFuncInfo() 378 , input0 (input0_) in BuiltinFuncInfo() 398 Value input0; member 1913 …const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : fun… in init() 1914 …const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcIn… in init()
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderOperatorTests.cpp | 447 , input0 (input0_) in BuiltinFuncInfo() 473 , input0 (input0_) in BuiltinFuncInfo() 493 Value input0; member 1954 …const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : fun… in init() 1955 …const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcIn… in init()
|
/external/bison/tests/ |
D | testsuite | 45244 cat >input0.y <<'_ATEOF' 45332 --graph=xml-tests/test.dot -o input0.c input0.y 45345 …ary --show-reachable=no"; export VALGRIND_OPTS; bison --xml=xml-tests/test.xml -o input0.c input0.y 45397 ( $at_check_trace; bison -o input0.c input0.y 45424 ( $at_check_trace; $CC $CFLAGS $CPPFLAGS $LDFLAGS -o input0 input0.c $LIBS 45437 ( $at_check_trace; $PREPARSER ./input0
|