/third_party/ffmpeg/libavcodec/ |
H A 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, inpu in ff_imdct_calc_c() 165 int i, j, n, n8, n4, n2, n3; ff_mdct_calc_c() local [all...] |
H A 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] in fft_calc_c() [all...] |
H A 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/skia/src/gpu/tessellate/ |
H A 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_pow in writePatches() [all...] |
H A 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/typescript/tests/baselines/reference/ |
H A 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;
|
H A D | assignmentIndexedToPrimitives.js | 5 const n4: 0 = [0]; 23 var n4 = [0];
variable
|
H A D | callChain.3.js | 7 const n4: number | undefined = a?.m?.({x: absorb()}); // likewise 19 var n4 = (_d = a === null || a === void 0 ? void 0 : a.m) === null || _d === void 0 ? void 0 : _d.call(a, { x: absorb() }); // likewise
|
H A D | moduledecl.js | 68 constructor (public n, public n2: number, private n3, private n4: string) { 257 function c1(n, n2, n3, n4) {
261 this.n4 = n4;
395 private n4;
405 constructor(n: any, n2: number, n3: any, n4: string);
|
H A D | vardecl.js | 51 var n4: { variable 129 var n4;
variable 216 declare var n4: {
|
/third_party/ffmpeg/libavcodec/ppc/ |
H A 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/ffmpeg/libavcodec/mips/ |
H A 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() 243 "swc1 %[pom], 0(%[tmpz_n34]) \n\t" // tmpz[n34].re = tmpz[n4].re - tmp2; in ff_fft_calc_mips() 244 "swc1 %[pom1], 0(%[tmpz_n4]) \n\t" // tmpz[ n4].re = tmpz[n4].re + tmp2; in ff_fft_calc_mips() 245 "swc1 %[temp1],4(%[tmpz_n34]) \n\t" // tmpz[n34].im = tmpz[n4].im + tmp1; in ff_fft_calc_mips() 246 "swc1 %[temp], 4(%[tmpz_n4]) \n\t" // tmpz[ n4] in ff_fft_calc_mips() 327 int k, n8, n4, n2, n, j; ff_imdct_half_mips() local 483 int n4 = n >> 2; ff_imdct_calc_mips() local [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | LinkedListTests.cpp | 135 Node n4(4); in TEST() 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() 231 n4.InsertBefore(&n1); in TEST() 233 EXPECT_EQ(&n4, list.head()); in TEST() 247 Node n4( in TEST() [all...] |
/third_party/vixl/src/aarch64/ |
H A 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/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | ia64-mont.pl | 375 n1=r24; n2=r25; n3=r26; n4=r27; n5=r28; n6=r29; n7=r30; n8=r31; 532 (p41) add a4=a4,n4 } // (p17) a4+=n4 533 { .mfi; (p43) add a4=a4,n4,1 541 (p41) cmp.ltu p42,p40=a4,n4 } 542 { .mfi; (p43) cmp.leu p42,p40=a4,n4 663 { .mfi; (p16) getf.sig n4=nlo[4] // 31: 694 (p41) add a4=a4,n4 // (p17) a4+=n4 695 (p43) add a4=a4,n4, [all...] |
/third_party/openssl/crypto/bn/asm/ |
H A D | ia64-mont.pl | 375 n1=r24; n2=r25; n3=r26; n4=r27; n5=r28; n6=r29; n7=r30; n8=r31; 532 (p41) add a4=a4,n4 } // (p17) a4+=n4 533 { .mfi; (p43) add a4=a4,n4,1 541 (p41) cmp.ltu p42,p40=a4,n4 } 542 { .mfi; (p43) cmp.leu p42,p40=a4,n4 663 { .mfi; (p16) getf.sig n4=nlo[4] // 31: 694 (p41) add a4=a4,n4 // (p17) a4+=n4 695 (p43) add a4=a4,n4, [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Grego.java | 127 long n4 = floorDivide(rem[0], 1461, rem); in dayToFields() 130 int year = (int)(400 * n400 + 100 * n100 + 4 * n4 + n1); in dayToFields()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Grego.java | 129 long n4 = floorDivide(rem[0], 1461, rem); in dayToFields() 132 int year = (int)(400 * n400 + 100 * n100 + 4 * n4 + n1); in dayToFields()
|
/third_party/ffmpeg/libavcodec/aarch64/ |
H A D | fft_neon.S | 341 .macro def_fft n, n2, n4 347 add x28, x0, #\n4*2*8 350 bl fft\n4\()_neon 351 add x0, x28, #\n4*1*8 352 bl fft\n4\()_neon 353 sub x0, x28, #\n4*2*8 357 mov x2, #\n4>>1
|
/third_party/ffmpeg/libavcodec/loongarch/ |
H A 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, n in vp9_idct8x32_column_butterfly_addblk() local [all...] |
/third_party/ffmpeg/tests/checkasm/x86/ |
H A D | checkasm.asm | 189 %define n4 dword 0xe02f3e23 209 mov r4, n4 217 xor r4, n4
|
/third_party/icu/icu4c/source/i18n/ |
H A D | gregoimp.cpp | 116 int32_t n4 = ClockMath::floorDivide(doy, 1461, &doy); // 4-year cycle length in dayToFields() local 118 year = 400*n400 + 100*n100 + 4*n4 + n1; in dayToFields()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | gregoimp.cpp | 121 int32_t n4 = ClockMath::floorDivide(doy, 1461, &doy); // 4-year cycle length in dayToFields() local 123 year = 400*n400 + 100*n100 + 4*n4 + n1; in dayToFields()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | gregoimp.cpp | 111 int32_t n4 = ClockMath::floorDivide(doy, 1461, doy); // 4-year cycle length in dayToFields() local 113 year = 400*n400 + 100*n100 + 4*n4 + n1; in dayToFields()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | mdct_vfp.S | 44 .set trig_hi, n4 - k - 2 64 and J0, J0, #255 @ halfword value will be < n4 67 and J2, J2, #255 @ halfword value will be < n4 242 .set n4, n/4
|