HomeSort by relevance Sort by last modified time
    Searched refs:accu (Results 1 - 7 of 7) sorted by null

  /bionic/libc/bionic/
_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;
  /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;
  /external/opencore/codecs_v2/audio/aac/dec/src/
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/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...]
  /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...]

Completed in 1067 milliseconds