/bionic/libc/stdlib/ |
_rand48.c | 32 unsigned long accu; local 35 accu = (unsigned long) __rand48_mult[0] * (unsigned long) xseed[0] + 37 temp[0] = (unsigned short) accu; /* lower 16 bits */ 38 accu >>= sizeof(unsigned short) * 8; 39 accu += (unsigned long) __rand48_mult[0] * (unsigned long) xseed[1] + 41 temp[1] = (unsigned short) accu; /* middle 16 bits */ 42 accu >>= sizeof(unsigned short) * 8; 43 accu += __rand48_mult[0] * xseed[2] + __rand48_mult[1] * xseed[1] + __rand48_mult[2] * xseed[0]; 46 xseed[2] = (unsigned short) accu;
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
ps_pwr_transient_detection.cpp | 191 Int32 accu; local 215 accu = 0; 222 accu = fxp_mac32_Q31(accu, temp_r, temp_r); 223 accu = fxp_mac32_Q31(accu, temp_i, temp_i); 226 aPower[gr - 2] = accu >> 1; 235 accu = fxp_mul32_Q31(temp_r, temp_r); 236 accu = fxp_mac32_Q31(accu, temp_i, temp_i) [all...] |
/frameworks/base/media/libstagefright/codecs/aacenc/src/ |
band_nrg.c | 43 Word32 accu = 0; local 45 accu = L_add(accu, MULHIGH(mdctSpectrum[j], mdctSpectrum[j])); 47 accu = L_add(accu, accu); 48 accuSum = L_add(accuSum, accu); 49 bandEnergy[i] = accu;
|
quantize.c | 243 Word32 accu; local 249 accu = quantSpectrum[line]; 251 ex = norm_l(accu); 252 accu = accu << ex; 255 tabIndex = (accu >> (INT_BITS-2-MANT_DIGITS)) & (~MANT_SIZE); 264 accu = MULHIGH(s, t); 271 mdctSpectrum[line] = accu << specExp; 273 mdctSpectrum[line] = accu >> (-specExp);
|
tns.c | 678 Word32 accu; local 685 accu = 0; 687 accu = L_add(accu, ((input[j] * input[j]) >> scf)); 689 corr[0] = accu; 697 accu = 0; 699 accu = L_add(accu, ((input[j] * input[j+i]) >> scf)); 701 corr[i] = accu; 865 Word32 accu,tmp,tmpSave local [all...] |
sf_estim.c | 110 Word32 accu, avgFormFactor,iSfbWidth; local 115 accu = 0; 118 accu += formfac_sqrt(L_abs(*mdctSpec)); mdctSpec++; 120 logSfbFormFactor[i] = iLog4(accu); 126 sfbNRelevantLines[i] = accu / avgFormFactor;
|
/frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/ |
LVPSA_QPD_Process.c | 75 LVM_INT32 accu; local 117 MUL32x32INTO32(temp2,Kp,accu,31); 126 accu +=temp + Xg0; 128 if (accu > 0x7FFF) 129 accu = 0x7FFF; 130 else if(accu < 0) 131 accu = 0x0000; 133 V0 = (LVM_INT16)accu;
|
/external/bluetooth/glib/tests/ |
slice-color.c | 44 guint64 accu = 0, i, j; local 53 accu += memd[j][o]; 54 return accu; 62 guint64 j, accu, n = n_blocks; local 82 accu = access_memory3 (mema, memb, memc, n, repeats); 86 g_assert (accu / repeats == (2 + 3) * n / 2 + 4 * n / 2);
|
/external/bluetooth/glib/tests/refcount/ |
closures.c | 155 static guint32 accu = 2147483563; local 156 accu = 1664525 * accu + 1013904223; 157 return accu;
|
/external/bluetooth/glib/gobject/ |
gsignal.c | 3110 GValue *return_accu, accu = { 0, }; local [all...] |