HomeSort by relevance Sort by last modified time
    Searched refs:j0 (Results 1 - 25 of 70) sorted by null

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceilf.c 27 int32_t i0,j0; local
31 j0 = ((i0>>23)&0xff)-0x7f;
32 if(j0<23) {
33 if(j0<0) { /* raise inexact if x != 0 */
39 i = (0x007fffff)>>j0;
42 if(i0>0) i0 += (0x00800000)>>j0;
47 if(j0==0x80) return x+x; /* inf or NaN */
s_floorf.c 36 int32_t i0,j0; local
39 j0 = ((i0>>23)&0xff)-0x7f;
40 if(j0<23) {
41 if(j0<0) { /* raise inexact if x != 0 */
48 i = (0x007fffff)>>j0;
51 if(i0<0) i0 += (0x00800000)>>j0;
56 if(j0==0x80) return x+x; /* inf or NaN */
s_truncf.c 33 int32_t i0,j0; local
36 j0 = ((i0>>23)&0xff)-0x7f;
37 if(j0<23) {
38 if(j0<0) { /* raise inexact if x != 0 */
42 i = (0x007fffff)>>j0;
48 if(j0==0x80) return x+x; /* inf or NaN */
s_trunc.c 35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
39 if(j0<20) {
40 if(j0<0) { /* raise inexact if x != 0 */
46 i = (0x000fffff)>>j0;
52 } else if (j0>51) {
53 if(j0==0x400) return x+x; /* inf or NaN */
56 i = ((u_int32_t)(0xffffffff))>>(j0-20);
s_rint.c 40 int32_t i0,j0,sx; local
45 j0 = ((i0>>20)&0x7ff)-0x3ff;
46 if(j0<20) {
47 if(j0<0) {
59 i = (0x000fffff)>>j0;
67 * guard bit. We do this for all j0<=51. The
68 * adjustment is trickiest for j0==18 and j0==19
71 if(j0==19) i1 = 0x40000000; else
72 if(j0==18) i1 = 0x80000000; els
    [all...]
s_ceil.c 35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
39 if(j0<20) {
40 if(j0<0) { /* raise inexact if x != 0 */
46 i = (0x000fffff)>>j0;
49 if(i0>0) i0 += (0x00100000)>>j0;
53 } else if (j0>51) {
54 if(j0==0x400) return x+x; /* inf or NaN */
57 i = ((u_int32_t)(0xffffffff))>>(j0-20);
61 if(j0==20) i0+=1
    [all...]
s_floor.c 35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
39 if(j0<20) {
40 if(j0<0) { /* raise inexact if x != 0 */
47 i = (0x000fffff)>>j0;
50 if(i0<0) i0 += (0x00100000)>>j0;
54 } else if (j0>51) {
55 if(j0==0x400) return x+x; /* inf or NaN */
58 i = ((u_int32_t)(0xffffffff))>>(j0-20);
62 if(j0==20) i0+=1
    [all...]
s_modf.c 35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
39 if(j0<20) { /* integer part in high x */
40 if(j0<0) { /* |x|<1 */
44 i = (0x000fffff)>>j0;
56 } else if (j0>51) { /* no fraction part */
58 if (j0 == 0x400) { /* inf/NaN */
67 i = ((u_int32_t)(0xffffffff))>>(j0-20);
s_modff.c 27 int32_t i0,j0; local
30 j0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */
31 if(j0<23) { /* integer part in x */
32 if(j0<0) { /* |x|<1 */
36 i = (0x007fffff)>>j0;
s_rintf.c 34 int32_t i0,j0,sx; local
38 j0 = ((i0>>23)&0xff)-0x7f;
39 if(j0<23) {
40 if(j0<0) {
51 if(j0==0x80) return x+x; /* inf or NaN */
  /external/fdlibm/
s_ceil.c 38 int i0,i1,j0; local
42 j0 = ((i0>>20)&0x7ff)-0x3ff;
43 if(j0<20) {
44 if(j0<0) { /* raise inexact if x != 0 */
50 i = (0x000fffff)>>j0;
53 if(i0>0) i0 += (0x00100000)>>j0;
57 } else if (j0>51) {
58 if(j0==0x400) return x+x; /* inf or NaN */
61 i = ((unsigned)(0xffffffff))>>(j0-20);
65 if(j0==20) i0+=1;
    [all...]
s_floor.c 38 int i0,i1,j0; local
42 j0 = ((i0>>20)&0x7ff)-0x3ff;
43 if(j0<20) {
44 if(j0<0) { /* raise inexact if x != 0 */
51 i = (0x000fffff)>>j0;
54 if(i0<0) i0 += (0x00100000)>>j0;
58 } else if (j0>51) {
59 if(j0==0x400) return x+x; /* inf or NaN */
62 i = ((unsigned)(0xffffffff))>>(j0-20);
66 if(j0==20) i0+=1;
    [all...]
s_rint.c 43 int i0,j0,sx; local
49 j0 = ((i0>>20)&0x7ff)-0x3ff;
50 if(j0<20) {
51 if(j0<0) {
63 i = (0x000fffff)>>j0;
67 if(j0==19) i1 = 0x40000000; else
68 i0 = (i0&(~i))|((0x20000)>>j0);
71 } else if (j0>51) {
72 if(j0==0x400) return x+x; /* inf or NaN */
75 i = ((unsigned)(0xffffffff))>>(j0-20)
    [all...]
s_modf.c 39 int i0,i1,j0; local
43 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
44 if(j0<20) { /* integer part in high x */
45 if(j0<0) { /* |x|<1 */
50 i = (0x000fffff)>>j0;
62 } else if (j0>51) { /* no fraction part */
68 i = ((unsigned)(0xffffffff))>>(j0-20);
  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft_sse2.c 87 int j0; local
90 for (j0 = 0; j0 < l; j0 += 2) {
91 const __m128i a_00 = _mm_loadl_epi64((__m128i*)&a[j0 + 0]);
92 const __m128i a_08 = _mm_loadl_epi64((__m128i*)&a[j0 + 8]);
93 const __m128i a_32 = _mm_loadl_epi64((__m128i*)&a[j0 + 32]);
94 const __m128i a_40 = _mm_loadl_epi64((__m128i*)&a[j0 + 40]);
104 const __m128i a_16 = _mm_loadl_epi64((__m128i*)&a[j0 + 16]);
105 const __m128i a_24 = _mm_loadl_epi64((__m128i*)&a[j0 + 24])
    [all...]
aec_rdft.c 318 int j0, j1, j2, j3, k, k1, k2, m2; local
322 for (j0 = 0; j0 < l; j0 += 2) {
323 j1 = j0 + 8;
324 j2 = j0 + 16;
325 j3 = j0 + 24;
326 x0r = a[j0 + 0] + a[j1 + 0];
327 x0i = a[j0 + 1] + a[j1 + 1];
328 x1r = a[j0 + 0] - a[j1 + 0]
    [all...]
  /external/eigen/test/eigen2/
eigen2_sparse_basic.cpp 239 int j0 = ei_random(0,rows-1); local
241 VERIFY_IS_APPROX(m2.innerVector(j0), refMat2.col(j0));
242 VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), refMat2.col(j0)+refMat2.col(j1));
243 //m2.innerVector(j0) = 2*m2.innerVector(j1);
244 //refMat2.col(j0) = 2*refMat2.col(j1);
253 int j0 = ei_random(0,rows-2); local
255 int n0 = ei_random<int>(1,rows-std::max(j0,j1));
256 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(0,j0,rows,n0))
    [all...]
  /external/eigen/test/
sparse_basic.cpp 214 int j0 = internal::random<int>(0,rows-1); local
217 VERIFY_IS_APPROX(m2.innerVector(j0), refMat2.row(j0));
219 VERIFY_IS_APPROX(m2.innerVector(j0), refMat2.col(j0));
222 VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), refMat2.row(j0)+refMat2.row(j1));
224 VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), refMat2.col(j0)+refMat2.col(j1));
245 //m2.innerVector(j0) = 2*m2.innerVector(j1)
255 int j0 = internal::random<int>(0,rows-2); local
    [all...]
  /external/svox/pico/lib/
picofftsg.c 670 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; local
680 j0 = 0;
683 for (j = j0; j < j0 + k0; j += 4) {
846 k1 = j0 + k0;
907 for (i = nh >> 1; i > (j0 ^= i); i >>= 1) {
912 j0 = 0;
915 for (j = j0; j < j0 + k0; j += 4) {
998 k1 = j0 + k0
1029 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; local
1583 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh; local
1707 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
2034 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
2248 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp 76 Int i0, Int j0, Int type_pred, Int fullsearch, Int *hp_guess);
771 Int i0, Int j0, Int type_pred, Int FS_en, Int *hp_guess)
815 jlow = j0 - range;
818 jhigh = j0 + range - 1;
830 jlow = j0 - range;
833 jhigh = j0 + range - 1;
839 jmin = j0; /* needed for fullsearch */
853 mot[mbnum][0].y = (jmin - j0) << 1;
861 if (video->forwardRefVop->predictionType == I_VOP && j0 == 0 && i0 <= 64 && type_pred != 1)
871 CandidateSelection(mvx, mvy, &num_can, i0 >> 4, j0 >> 4, video, type_pred)
1187 Int j0 = *jmin; local
    [all...]
  /external/clang/test/SemaCXX/
address-of-temporary.cpp 46 void j0() { (void)S { Y().a }; } function in namespace:PointerToArrayDecay
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 956 int i0, int j0, int type_pred, int FS_en, int *hp_guess)
1032 jlow = j0 - range;
1033 if (j0 - jlow > MaxVmvR[lev_idx] - 1) /* clip to conform with the standard */
1035 jlow = j0 - MaxVmvR[lev_idx] + 1;
1042 jhigh = j0 + range - 1
1270 int j0 = *jmin; local
    [all...]
  /external/v8/benchmarks/
navier-stokes.js 225 var j0 = y | 0;
226 var j1 = j0 + 1;
229 var t1 = y - j0;
231 var row1 = j0 * rowSize;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathcalls.h 238 __MATHCALL (j0,, (_Mdouble_));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathcalls.h 238 __MATHCALL (j0,, (_Mdouble_));

Completed in 648 milliseconds

1 2 3