/third_party/ffmpeg/libavcodec/ |
D | sbrdsp_fixed.c | 37 uint64_t accu = 0, round; in sbr_sum_square_c() local 53 while ((accu0|accu1|accu2|accu3) > (UINT64_MAX - accu) >> 2) { in sbr_sum_square_c() 58 accu >>= 1; in sbr_sum_square_c() 61 accu += accu0 + accu1 + accu2 + accu3; in sbr_sum_square_c() 68 u = accu >> 32; in sbr_sum_square_c() 79 u = ((accu + round) >> nz); in sbr_sum_square_c() 122 static av_always_inline SoftFloat autocorr_calc(int64_t accu) in autocorr_calc() argument 126 int i = (int)(accu >> 32); in autocorr_calc() 139 mant = (int)((accu + round) >> nz); in autocorr_calc() 214 int64_t accu; in sbr_hf_gen_c() local [all …]
|
D | fft-internal.h | 44 int64_t accu; \ 45 (accu) = (int64_t)(bre) * (are); \ 46 (accu) -= (int64_t)(bim) * (aim); \ 47 (dre) = (int)(((accu) + 0x40000000) >> 31); \ 48 (accu) = (int64_t)(bre) * (aim); \ 49 (accu) += (int64_t)(bim) * (are); \ 50 (dim) = (int)(((accu) + 0x40000000) >> 31); \
|
D | fft_template.c | 324 int64_t accu; in fft_calc_c() local 383 accu = (int64_t)Q31(M_SQRT1_2)*(int)(tmp1 + tmp2); in fft_calc_c() 384 tmp5 = (int32_t)((accu + 0x40000000) >> 31); in fft_calc_c() 385 accu = (int64_t)Q31(M_SQRT1_2)*(int)(tmp3 - tmp4); in fft_calc_c() 386 tmp7 = (int32_t)((accu + 0x40000000) >> 31); in fft_calc_c() 387 accu = (int64_t)Q31(M_SQRT1_2)*(int)(tmp2 - tmp1); in fft_calc_c() 388 tmp6 = (int32_t)((accu + 0x40000000) >> 31); in fft_calc_c() 389 accu = (int64_t)Q31(M_SQRT1_2)*(int)(tmp3 + tmp4); in fft_calc_c() 390 tmp8 = (int32_t)((accu + 0x40000000) >> 31); in fft_calc_c() 437 accu = (int64_t)w_re*tmpz[ n2+i].re; in fft_calc_c() [all …]
|
D | aacsbr_fixed.c | 374 int64_t accu; in sbr_chirp() local 383 accu = (int64_t)new_bw * 1610612736; in sbr_chirp() 384 accu += (int64_t)ch_data->bw_array[i] * 0x20000000; in sbr_chirp() 385 new_bw = (int)((accu + 0x40000000) >> 31); in sbr_chirp() 387 accu = (int64_t)new_bw * 1946157056; in sbr_chirp() 388 accu += (int64_t)ch_data->bw_array[i] * 201326592; in sbr_chirp() 389 new_bw = (int)((accu + 0x40000000) >> 31); in sbr_chirp()
|
D | ac3dec.c | 902 int64_t accu = ((bin << 23) + (bandsize << 22)) in spx_coordinates() local 904 nratio = (int)(accu >> 32); in spx_coordinates() 915 accu = (int64_t)nblend * 1859775393; in spx_coordinates() 916 nblend = (int)((accu + (1<<29)) >> 30); in spx_coordinates() 940 accu = (int64_t)nblend * spx_coord_mant; in spx_coordinates() 941 s->spx_noise_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23); in spx_coordinates() 942 accu = (int64_t)sblend * spx_coord_mant; in spx_coordinates() 943 s->spx_signal_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23); in spx_coordinates()
|
/third_party/ffmpeg/libavutil/ |
D | tx_priv.h | 70 int64_t accu; \ 71 (accu) = (int64_t)(bre) * (are); \ 72 (accu) -= (int64_t)(bim) * (aim); \ 73 (dre) = (int)(((accu) + 0x40000000) >> 31); \ 74 (accu) = (int64_t)(bim) * (are); \ 75 (accu) += (int64_t)(bre) * (aim); \ 76 (dim) = (int)(((accu) + 0x40000000) >> 31); \ 80 int64_t accu; \ 81 (accu) = (int64_t)(bre) * (are); \ 82 (accu) -= (int64_t)(bim) * (aim); \ [all …]
|
D | fixed_dsp.c | 52 int64_t accu; in vector_fmul_add_c() local 55 accu = (int64_t)src0[i] * src1[i]; in vector_fmul_add_c() 56 dst[i] = src2[i] + (int)((accu + 0x40000000) >> 31); in vector_fmul_add_c() 63 int64_t accu; in vector_fmul_reverse_c() local 67 accu = (int64_t)src0[i] * src1[-i]; in vector_fmul_reverse_c() 68 dst[i] = (int)((accu+0x40000000) >> 31); in vector_fmul_reverse_c() 116 int64_t accu; in vector_fmul_c() local 119 accu = (int64_t)src0[i] * src1[i]; in vector_fmul_c() 120 dst[i] = (int)((accu+0x40000000) >> 31); in vector_fmul_c()
|
D | fixed_dsp.h | 179 int64_t accu; in fixed_sqrt() local 192 accu = (int64_t)guess * guess; in fixed_sqrt() 193 square = (int)((accu + bit_mask) >> bits); in fixed_sqrt()
|
/third_party/typescript/tests/baselines/reference/ |
D | destructuringTuple.types | 25 const [oops1] = [1, 2, 3].reduce((accu, el) => accu.concat(el), []); 27 >[1, 2, 3].reduce((accu, el) => accu.concat(el), []) : number 34 >(accu, el) => accu.concat(el) : (accu: [], el: number) => never[] 35 >accu : [] 37 >accu.concat(el) : never[] 38 >accu.concat : { (...items: ConcatArray<never>[]): never[]; (...items: ConcatArray<never>[]): never… 39 >accu : []
|
D | destructuringTuple.symbols | 22 const [oops1] = [1, 2, 3].reduce((accu, el) => accu.concat(el), []); 26 >accu : Symbol(accu, Decl(destructuringTuple.ts, 10, 34)) 28 >accu.concat : Symbol(Array.concat, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) 29 >accu : Symbol(accu, Decl(destructuringTuple.ts, 10, 34))
|
D | destructuringTuple.js | 12 const [oops1] = [1, 2, 3].reduce((accu, el) => accu.concat(el), []); 22 var oops1 = [1, 2, 3].reduce(function (accu, el) { return accu.concat(el); }, [])[0]; argument
|
D | destructuringTuple.errors.txt | 26 const [oops1] = [1, 2, 3].reduce((accu, el) => accu.concat(el), []);
|
/third_party/python/Modules/_io/ |
D | stringio.c | 35 _PyAccu accu; member 129 PyObject *intermediate = _PyAccu_Finish(&self->accu); in make_intermediate() 133 if (_PyAccu_Init(&self->accu) || in make_intermediate() 134 _PyAccu_Accumulate(&self->accu, intermediate)) { in make_intermediate() 153 intermediate = _PyAccu_Finish(&self->accu); in realize() 221 if (_PyAccu_Accumulate(&self->accu, decoded)) in write_str() 575 _PyAccu_Destroy(&self->accu); in _io_StringIO_close_impl() 605 _PyAccu_Destroy(&self->accu); in stringio_dealloc() 690 _PyAccu_Destroy(&self->accu); in _io_StringIO___init___impl() 745 if (_PyAccu_Init(&self->accu)) in _io_StringIO___init___impl()
|
/third_party/typescript/tests/cases/compiler/ |
D | destructuringTuple.ts | 13 const [oops1] = [1, 2, 3].reduce((accu, el) => accu.concat(el), []);
|
/third_party/python/Tools/scripts/ |
D | texi2html.py | 269 accu = [] 274 if accu: 275 if not self.skip: self.process(accu) 276 accu = [] 286 accu.append(line) 288 if accu: 290 self.process(accu) 291 accu = [] 296 if accu: 298 self.process(accu) [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_signalstats.c | 569 int accy, accu, accv; in filter_frame8() local 666 accy = accu = accv = accsat = 0; in filter_frame8() 684 accu += histu[fil]; in filter_frame8() 689 if (lowu == -1 && accu >= clowp) lowu = fil; in filter_frame8() 694 if (highu == -1 && accu >= chighp) highu = fil; in filter_frame8() 791 int accy, accu, accv; in filter_frame16() local 888 accy = accu = accv = accsat = 0; in filter_frame16() 906 accu += histu[fil]; in filter_frame16() 911 if (lowu == -1 && accu >= clowp) lowu = fil; in filter_frame16() 916 if (highu == -1 && accu >= chighp) highu = fil; in filter_frame16()
|
/third_party/python/Lib/test/ |
D | test_builtin.py | 964 accu = 0 965 for i in v: accu = accu + i 966 return accu
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | disasm-a3xx.c | 271 OPC(3, OPC_WMM_ACCU, wmm.accu),
|
/third_party/python/ |
D | Makefile.pre.in | 403 Objects/accu.o \
|
/third_party/python/Misc/ |
D | HISTORY | 8163 - Issue #14387: Do not include accu.h from Python.h.
|