/third_party/typescript/tests/baselines/reference/ |
D | importStatementsInterfaces.symbols | 15 export module inA { 16 >inA : Symbol(inA, Decl(importStatementsInterfaces.ts, 4, 5)) 45 import b = a.inA; 48 >inA : Symbol(a.inA, Decl(importStatementsInterfaces.ts, 4, 5)) 83 import a = A.inA; 86 >inA : Symbol(a, Decl(importStatementsInterfaces.ts, 4, 5))
|
D | importStatementsInterfaces.types | 11 export module inA { 34 import b = a.inA; 37 >inA : any 75 import a = A.inA; 78 >inA : any
|
D | importStatementsInterfaces.js | 8 export module inA { 23 import b = a.inA; 38 import a = A.inA;
|
D | importStatementsInterfaces.errors.txt | 11 export module inA { 26 import b = a.inA; 43 import a = A.inA;
|
/third_party/cmsis/CMSIS/DSP/Source/TransformFunctions/ |
D | arm_cfft_f16.c | 123 float16_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_f16_mve() local 124 float16_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_f16_mve() 138 vecA = vldrhq_f16(inA); in _arm_radix4_butterfly_f16_mve() 154 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_f16_mve() 155 inA += 8; in _arm_radix4_butterfly_f16_mve() 196 vecA = vldrhq_f16(inA); in _arm_radix4_butterfly_f16_mve() 332 float16_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_inverse_f16_mve() local 333 float16_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_inverse_f16_mve() 345 vecA = vldrhq_f16(inA); in _arm_radix4_butterfly_inverse_f16_mve() 361 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_inverse_f16_mve() [all …]
|
D | arm_cfft_q31.c | 78 q31_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_q31_mve() local 79 q31_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_q31_mve() 91 vecA = vldrwq_s32(inA); in _arm_radix4_butterfly_q31_mve() 107 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_q31_mve() 108 inA += 4; in _arm_radix4_butterfly_q31_mve() 147 vecA = vldrwq_s32(inA); in _arm_radix4_butterfly_q31_mve() 328 q31_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_inverse_q31_mve() local 329 q31_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_inverse_q31_mve() 341 vecA = vldrwq_s32(inA); in _arm_radix4_butterfly_inverse_q31_mve() 357 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_inverse_q31_mve() [all …]
|
D | arm_cfft_q15.c | 75 q15_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_q15_mve() local 76 q15_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_q15_mve() 88 vecA = vldrhq_s16(inA); in _arm_radix4_butterfly_q15_mve() 104 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_q15_mve() 105 inA += 8; in _arm_radix4_butterfly_q15_mve() 145 vecA = vldrhq_s16(inA); in _arm_radix4_butterfly_q15_mve() 311 q15_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_inverse_q15_mve() local 312 q15_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_inverse_q15_mve() 324 vecA = vldrhq_s16(inA); in _arm_radix4_butterfly_inverse_q15_mve() 340 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_inverse_q15_mve() [all …]
|
D | arm_cfft_f32.c | 125 float32_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_f32_mve() local 126 float32_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_f32_mve() 140 vecA = vldrwq_f32(inA); in _arm_radix4_butterfly_f32_mve() 156 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_f32_mve() 157 inA += 4; in _arm_radix4_butterfly_f32_mve() 198 vecA = vldrwq_f32(inA); in _arm_radix4_butterfly_f32_mve() 334 float32_t *inA = pSrc + CMPLX_DIM * i * n1; in _arm_radix4_butterfly_inverse_f32_mve() local 335 float32_t *inB = inA + n2 * CMPLX_DIM; in _arm_radix4_butterfly_inverse_f32_mve() 347 vecA = vldrwq_f32(inA); in _arm_radix4_butterfly_inverse_f32_mve() 363 vst1q(inA, vecTmp0); in _arm_radix4_butterfly_inverse_f32_mve() [all …]
|
/third_party/typescript/tests/cases/conformance/internalModules/codeGeneration/ |
D | importStatementsInterfaces.ts | 7 export module inA { 22 import b = a.inA; 37 import a = A.inA;
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | enc_sse41.c | 73 static int TTransform_SSE41(const uint8_t* inA, const uint8_t* inB, in TTransform_SSE41() argument 80 const __m128i inA_0 = _mm_loadu_si128((const __m128i*)&inA[BPS * 0]); in TTransform_SSE41() 81 const __m128i inA_1 = _mm_loadu_si128((const __m128i*)&inA[BPS * 1]); in TTransform_SSE41() 82 const __m128i inA_2 = _mm_loadu_si128((const __m128i*)&inA[BPS * 2]); in TTransform_SSE41() 87 const __m128i inA_3 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 3]); in TTransform_SSE41()
|
D | enc_sse2.c | 1097 static int TTransform_SSE2(const uint8_t* inA, const uint8_t* inB, in TTransform_SSE2() argument 1105 const __m128i inA_0 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 0]); in TTransform_SSE2() 1106 const __m128i inA_1 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 1]); in TTransform_SSE2() 1107 const __m128i inA_2 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 2]); in TTransform_SSE2() 1108 const __m128i inA_3 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 3]); in TTransform_SSE2()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | enc_sse41.c | 73 static int TTransform_SSE41(const uint8_t* inA, const uint8_t* inB, in TTransform_SSE41() argument 80 const __m128i inA_0 = _mm_loadu_si128((const __m128i*)&inA[BPS * 0]); in TTransform_SSE41() 81 const __m128i inA_1 = _mm_loadu_si128((const __m128i*)&inA[BPS * 1]); in TTransform_SSE41() 82 const __m128i inA_2 = _mm_loadu_si128((const __m128i*)&inA[BPS * 2]); in TTransform_SSE41() 87 const __m128i inA_3 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 3]); in TTransform_SSE41()
|
D | enc_sse2.c | 1097 static int TTransform_SSE2(const uint8_t* inA, const uint8_t* inB, in TTransform_SSE2() argument 1105 const __m128i inA_0 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 0]); in TTransform_SSE2() 1106 const __m128i inA_1 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 1]); in TTransform_SSE2() 1107 const __m128i inA_2 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 2]); in TTransform_SSE2() 1108 const __m128i inA_3 = _mm_loadl_epi64((const __m128i*)&inA[BPS * 3]); in TTransform_SSE2()
|
/third_party/skia/tests/ |
D | SkSLInterpreterTest.cpp | 112 float inR, float inG, float inB, float inA, in test() argument 125 p.eval(1, &inR, &inG, &inB, &inA); in test() 127 float actual[4] = { inR, inG, inB, inA }; in test()
|
/third_party/flutter/skia/tests/ |
D | SkSLInterpreterTest.cpp | 116 void test(skiatest::Reporter* r, const char* src, float inR, float inG, float inB, float inA, in test() argument 133 float inoutColor[4] = { inR, inG, inB, inA }; in test()
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 53308 zYPB(=3SDMx?QQxDV6BrRpn<J-6_X*C1*gY?&CV%p^E}>`+{KmB%>F51|CCr)X`inA
|