/third_party/ffmpeg/libavcodec/ |
D | mdct_template.c | 46 int n, n4, i; in ff_mdct_init() local 54 n4 = n >> 2; in ff_mdct_init() 66 s->tsin = s->tcos + n4; in ff_mdct_init() 77 theta = 1.0 / 8.0 + (scale < 0 ? n4 : 0); in ff_mdct_init() 79 for(i=0;i<n4;i++) { in ff_mdct_init() 103 int k, n8, n4, n2, n, j; in ff_imdct_half_c() local 112 n4 = n >> 2; in ff_imdct_half_c() 118 for(k = 0; k < n4; k++) { in ff_imdct_half_c() 148 int n4 = n >> 2; in ff_imdct_calc_c() local 150 ff_imdct_half_c(s, output+n4, input); in ff_imdct_calc_c() [all …]
|
D | fft_template.c | 325 int n4, n2, n34; in fft_calc_c() local 412 n4 = 4; in fft_calc_c() 415 n2 = 2*n4; in fft_calc_c() 416 n34 = 3*n4; in fft_calc_c() 434 tmpz[n34].re = tmpz[n4].re - tmp2; in fft_calc_c() 435 tmpz[ n4].re = tmpz[n4].re + tmp2; in fft_calc_c() 436 tmpz[n34].im = tmpz[n4].im + tmp1; in fft_calc_c() 437 tmpz[ n4].im = tmpz[n4].im - tmp1; in fft_calc_c() 439 for (i=1; i<n4; i++){ in fft_calc_c() 464 tmpz[n34+i].re = tmpz[n4+i].re - tmp2; in fft_calc_c() [all …]
|
D | svq1dec.c | 162 n4 = (mean << 16) + mean; 176 uint32_t n1, n2, n3, n4; in svq1_decode_block_intra() local 217 n1 = n4; in svq1_decode_block_intra() 218 n2 = n4; in svq1_decode_block_intra() 243 uint32_t n1, n2, n3, n4; in svq1_decode_block_non_intra() local 279 n1 = n4 + ((n3 & 0xFF00FF00) >> 8); in svq1_decode_block_non_intra() 280 n2 = n4 + (n3 & 0x00FF00FF); in svq1_decode_block_non_intra()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/primitive_types/the_number_type/ |
D | the_number_type_2.ts | 43 let n4: number = 0o17; variable 44 Assert.isNumber(n4); 45 Assert.equal(n4, 0o17); 46 n4 = 0o24; 47 Assert.isNumber(n4); 48 Assert.equal(n4, 0o24);
|
/third_party/skia/src/gpu/tessellate/ |
D | PathCurveTessellator.cpp | 58 float n4 = wangs_formula::quadratic_pow4(kTessellationPrecision, in writePatches() local 61 if (n4 <= 1) { in writePatches() 64 if (n4 <= maxSegments_pow4) { in writePatches() 70 SkScalarCeilToInt(wangs_formula::root4(n4/maxSegments_pow4)); in writePatches() 73 numFixedSegments_pow4 = std::max(n4, numFixedSegments_pow4); in writePatches() 102 float n4 = wangs_formula::cubic_pow4(kTessellationPrecision, in writePatches() local 105 if (n4 <= 1) { in writePatches() 108 if (n4 <= maxSegments_pow4) { in writePatches() 114 SkScalarCeilToInt(wangs_formula::root4(n4/maxSegments_pow4)); in writePatches() 117 numFixedSegments_pow4 = std::max(n4, numFixedSegments_pow4); in writePatches()
|
D | PathWedgeTessellator.cpp | 173 float n4 = wangs_formula::quadratic_pow4(kTessellationPrecision, in writePatches() local 176 if (n4 <= maxSegments_pow4) { in writePatches() 182 SkScalarCeilToInt(wangs_formula::root4(n4/maxSegments_pow4)); in writePatches() 185 numFixedSegments_pow4 = std::max(n4, numFixedSegments_pow4); in writePatches() 213 float n4 = wangs_formula::cubic_pow4(kTessellationPrecision, in writePatches() local 216 if (n4 <= maxSegments_pow4) { in writePatches() 222 SkScalarCeilToInt(wangs_formula::root4(n4/maxSegments_pow4)); in writePatches() 225 numFixedSegments_pow4 = std::max(n4, numFixedSegments_pow4); in writePatches()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | fft_mips.c | 65 int n4, n2, n34; in ff_fft_calc_mips() local 203 n4 = 4; in ff_fft_calc_mips() 207 n2 = 2 * n4; in ff_fft_calc_mips() 208 n34 = 3 * n4; in ff_fft_calc_mips() 215 tmpz_n4 = tmpz + n4; in ff_fft_calc_mips() 258 for (i=1; i<n4; i++) { in ff_fft_calc_mips() 317 n4 <<= 1; in ff_fft_calc_mips() 327 int k, n8, n4, n2, n, j; in ff_imdct_half_mips() local 342 n4 = n >> 2; in ff_imdct_half_mips() 355 for(k = 0; k < n4; k += 2) { in ff_imdct_half_mips() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | commentsVarDecl.js | 42 var n4: (x: number) => string; variable 43 n4 = z2; 75 var n4; variable 76 n4 = z2; 102 declare var n4: (x: number) => string;
|
D | commentsVarDecl.symbols | 63 var n4: (x: number) => string; 64 >n4 : Symbol(n4, Decl(commentsVarDecl.ts, 40, 3)) 67 n4 = z2; 68 >n4 : Symbol(n4, Decl(commentsVarDecl.ts, 40, 3))
|
D | commentsVarDecl.types | 74 var n4: (x: number) => string; 75 >n4 : (x: number) => string 78 n4 = z2; 79 >n4 = z2 : (x: number) => string 80 >n4 : (x: number) => string
|
D | objectRest.types | 58 let nestedrest: { x: number, n1: { y: number, n2: { z: number, n3: { n4: number } } }, rest: number… 59 …er; n1: { y: number; n2: { z: number; n3: { n4: number; }; … 61 >n1 : { y: number; n2: { z: number; n3: { n4: number; };}; } 63 >n2 : { z: number; n3: { n4: number;}; } 65 >n3 : { n4: number; } 66 >n4 : number 77 >nr : { n4: number; } 79 >nestedrest : { x: number; n1: { y: number; n2: { z: number; n3: { n4: number; }; }; }; rest: numbe…
|
D | assignmentIndexedToPrimitives.symbols | 11 const n4: 0 = [0]; 12 >n4 : Symbol(n4, Decl(assignmentIndexedToPrimitives.ts, 3, 5))
|
D | moduledecl.js | 68 constructor (public n, public n2: number, private n3, private n4: string) { 257 function c1(n, n2, n3, n4) { argument 261 this.n4 = n4; 395 private n4; field in c1 405 constructor(n: any, n2: number, n3: any, n4: string);
|
D | assignmentIndexedToPrimitives.js | 5 const n4: 0 = [0]; variable 23 var n4 = [0]; variable
|
D | assignmentIndexedToPrimitives.types | 18 const n4: 0 = [0]; 19 >n4 : 0
|
D | callChain.3.symbols | 38 const n4: number | undefined = a?.m?.({x: absorb()}); // likewise 39 >n4 : Symbol(n4, Decl(callChain.3.ts, 5, 5))
|
D | callChain.3.js | 7 const n4: number | undefined = a?.m?.({x: absorb()}); // likewise constant 19 var n4 = (_d = a === null || a === void 0 ? void 0 : a.m) === null || _d === void 0 ? void 0 : _d.c… variable
|
D | vardecl.js | 51 var n4: { variable 129 var n4; variable 216 declare var n4: {
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | fft_init.c | 51 int n4 = n >> 2; in imdct_half_altivec() local 55 const uint16_t *revtabk = s->revtab+n4; in imdct_half_altivec() 58 const vec_f *pin = (const vec_f*)(input+n4); in imdct_half_altivec() 59 vec_f *pout = (vec_f*)(output+n4); in imdct_half_altivec() 135 int n4 = n >> 2; in imdct_calc_altivec() local 138 vec_u32 *p0 = (vec_u32*)(output+n4); in imdct_calc_altivec() 139 vec_u32 *p1 = (vec_u32*)(output+n4*3); in imdct_calc_altivec() 141 imdct_half_altivec(s, output + n4, input); in imdct_calc_altivec()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
D | LinkedListTests.cpp | 135 Node n4(4); in TEST() local 141 list.Append(&n4); in TEST() 165 EXPECT_EQ(&n4, list.tail()); in TEST() 175 EXPECT_EQ(&n4, list.tail()); in TEST() 183 n4.RemoveFromList(); in TEST() 193 list.Append(&n4); in TEST() 210 Node n4(4); in TEST() local 231 n4.InsertBefore(&n1); in TEST() 233 EXPECT_EQ(&n4, list.head()); in TEST() 247 Node n4(4); in TEST() local [all …]
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.1/better_inference_for_literal_types/ |
D | better_inference_for_literal_types_3.ts | 33 let n4 = newN; variable 34 n4 = 10; 35 Assert.equal(n4, 10);
|
/third_party/vixl/src/aarch64/ |
D | pointer-auth-aarch64.cc | 96 uint64_t n4 = GetNibble(in_data, 4 * (i + 4)); in BigShuffle() local 99 uint64_t t0 = RotNibble(n8, 2) ^ RotNibble(n4, 1) ^ RotNibble(n0, 1); in BigShuffle() 100 uint64_t t1 = RotNibble(n12, 1) ^ RotNibble(n4, 2) ^ RotNibble(n0, 1); in BigShuffle() 102 uint64_t t3 = RotNibble(n12, 1) ^ RotNibble(n8, 1) ^ RotNibble(n4, 2); in BigShuffle()
|
/third_party/typescript/tests/cases/compiler/ |
D | commentsVarDecl.ts | 45 var n4: (x: number) => string; variable 46 n4 = z2;
|
/third_party/ffmpeg/libavcodec/loongarch/ |
D | vp9_idct_lsx.c | 742 __m128i m0, m1, m2, m3, m4, m5, m6, m7, n0, n1, n2, n3, n4, n5, n6, n7; in vp9_idct_butterfly_transpose_store() local 793 n0, n4, n2, n6); in vp9_idct_butterfly_transpose_store() 831 LSX_TRANSPOSE8x8_H(m4, n4, m5, n5, m6, n6, m7, n7, in vp9_idct_butterfly_transpose_store() 832 m4, n4, m5, n5, m6, n6, m7, n7); in vp9_idct_butterfly_transpose_store() 835 __lsx_vst(n4, dst, 16 + 32 * 2); in vp9_idct_butterfly_transpose_store() 850 tmp_buf, 16 * 26, tmp_buf, 16 * 27, m4, n4, m5, n5); in vp9_idct_butterfly_transpose_store() 866 LSX_TRANSPOSE8x8_H(m4, n4, m5, n5, m6, n6, m7, n7, in vp9_idct_butterfly_transpose_store() 867 m4, n4, m5, n5, m6, n6, m7, n7); in vp9_idct_butterfly_transpose_store() 870 __lsx_vst(n4, dst, 48 + 32 * 2); in vp9_idct_butterfly_transpose_store() 1158 __m128i m0, m1, m2, m3, m4, m5, m6, m7, n0, n1, n2, n3, n4, n5, n6, n7; in vp9_idct8x32_column_butterfly_addblk() local [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | Grego.java | 129 long n4 = floorDivide(rem[0], 1461, rem); in dayToFields() local 132 int year = (int)(400 * n400 + 100 * n100 + 4 * n4 + n1); in dayToFields()
|