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

1 2 3 4 5

  /bionic/libm/src/
s_ceilf.c 28 int32_t i0,j0; local
31 GET_FLOAT_WORD(i0,x);
32 j0 = ((i0>>23)&0xff)-0x7f;
36 if(i0<0) {i0=0x80000000;}
37 else if(i0!=0) { i0=0x3f800000;}
41 if((i0&i)==0) return x; /* x is integral */
43 if(i0>0) i0 += (0x00800000)>>j0
    [all...]
s_floorf.c 37 int32_t i0,j0; local
39 GET_FLOAT_WORD(i0,x);
40 j0 = ((i0>>23)&0xff)-0x7f;
44 if(i0>=0) {i0=0;}
45 else if((i0&0x7fffffff)!=0)
46 { i0=0xbf800000;}
50 if((i0&i)==0) return x; /* x is integral */
52 if(i0<0) i0 += (0x00800000)>>j0
    [all...]
s_rint.c 39 int32_t i0,j0,sx; local
42 EXTRACT_WORDS(i0,i1,x);
43 sx = (i0>>31)&1;
44 j0 = ((i0>>20)&0x7ff)-0x3ff;
47 if(((i0&0x7fffffff)|i1)==0) return x;
48 i1 |= (i0&0x0fffff);
49 i0 &= 0xfffe0000;
50 i0 |= ((i1|-i1)>>12)&0x80000;
51 SET_HIGH_WORD(x,i0);
54 GET_HIGH_WORD(i0,t)
    [all...]
s_truncf.c 33 int32_t i0,j0; local
35 GET_FLOAT_WORD(i0,x);
36 j0 = ((i0>>23)&0xff)-0x7f;
40 i0 &= 0x80000000;
43 if((i0&i)==0) return x; /* x is integral */
45 i0 &= (~i);
51 SET_FLOAT_WORD(x,i0);
s_ceil.c 34 int32_t i0,i1,j0; local
36 EXTRACT_WORDS(i0,i1,x);
37 j0 = ((i0>>20)&0x7ff)-0x3ff;
41 if(i0<0) {i0=0x80000000;i1=0;}
42 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
46 if(((i0&i)|i1)==0) return x; /* x is integral */
48 if(i0>0) i0 += (0x00100000)>>j0
    [all...]
s_floor.c 34 int32_t i0,i1,j0; local
36 EXTRACT_WORDS(i0,i1,x);
37 j0 = ((i0>>20)&0x7ff)-0x3ff;
41 if(i0>=0) {i0=i1=0;}
42 else if(((i0&0x7fffffff)|i1)!=0)
43 { i0=0xbff00000;i1=0;}
47 if(((i0&i)|i1)==0) return x; /* x is integral */
49 if(i0<0) i0 += (0x00100000)>>j0
    [all...]
s_rintf.c 33 int32_t i0,j0,sx; local
35 GET_FLOAT_WORD(i0,x);
36 sx = (i0>>31)&1;
37 j0 = ((i0>>23)&0xff)-0x7f;
40 if((i0&0x7fffffff)==0) return x;
43 GET_FLOAT_WORD(i0,t);
44 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31));
s_trunc.c 33 int32_t i0,i1,j0; local
35 EXTRACT_WORDS(i0,i1,x);
36 j0 = ((i0>>20)&0x7ff)-0x3ff;
40 i0 &= 0x80000000U;
45 if(((i0&i)|i1)==0) return x; /* x is integral */
47 i0 &= (~i); i1=0;
59 INSERT_WORDS(x,i0,i1);
s_modff.c 28 int32_t i0,j0; local
30 GET_FLOAT_WORD(i0,x);
31 j0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */
34 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */
38 if((i0&i)==0) { /* x is integral */
45 SET_FLOAT_WORD(*iptr,i0&(~i));
s_modf.c 35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
38 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
41 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
45 if(((i0&i)|i1)==0) { /* x is integral */
52 INSERT_WORDS(*iptr,i0&(~i),0);
71 INSERT_WORDS(*iptr,i0,i1&(~i));
s_exp2f.c 95 uint32_t hx, hr, ix, i0; local
116 /* Reduce x, computing z, i0, and k. */
118 GET_FLOAT_WORD(i0, t);
119 i0 += TBLSIZE / 2;
120 k = (i0 >> TBLBITS) << 23;
121 i0 &= TBLSIZE - 1;
125 /* Compute r = exp2(y) = exp2ft[i0] * p(z). */
126 tv = exp2ft[i0];
  /external/fdlibm/
s_rint.c 43 int i0,j0,sx; local
46 i0 = __HI(x);
47 sx = (i0>>31)&1;
49 j0 = ((i0>>20)&0x7ff)-0x3ff;
52 if(((i0&0x7fffffff)|i1)==0) return x;
53 i1 |= (i0&0x0fffff);
54 i0 &= 0xfffe0000;
55 i0 |= ((i1|-i1)>>12)&0x80000;
56 __HI(x)=i0;
59 i0 = __HI(t)
    [all...]
s_ceil.c 38 int i0,i1,j0; local
40 i0 = __HI(x);
42 j0 = ((i0>>20)&0x7ff)-0x3ff;
46 if(i0<0) {i0=0x80000000;i1=0;}
47 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
51 if(((i0&i)|i1)==0) return x; /* x is integral */
53 if(i0>0) i0 += (0x00100000)>>j0
    [all...]
s_floor.c 38 int i0,i1,j0; local
40 i0 = __HI(x);
42 j0 = ((i0>>20)&0x7ff)-0x3ff;
46 if(i0>=0) {i0=i1=0;}
47 else if(((i0&0x7fffffff)|i1)!=0)
48 { i0=0xbff00000;i1=0;}
52 if(((i0&i)|i1)==0) return x; /* x is integral */
54 if(i0<0) i0 += (0x00100000)>>j0
    [all...]
s_modf.c 39 int i0,i1,j0; local
41 i0 = __HI(x); /* high x */
43 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
46 __HIp(iptr) = i0&0x80000000;
51 if(((i0&i)|i1)==0) { /* x is integral */
57 __HIp(iptr) = i0&(~i);
75 __HIp(iptr) = i0;
  /external/clang/test/CXX/expr/
p3.cpp 13 int i0 = a + 1; local
p9.cpp 49 __typeof__(0 + 0) i0;
50 int &ir = i0;
  /external/openssl/crypto/rc4/asm/
rc4-ia64.pl 88 # shladd Iptr = I, KeyTable, 3 M0-M3, I0, I1 1 cyc
89 # I = (I + 1) & 0xff padd1 nextI = I, one M0-M3, I0, I1 3 cyc
94 # J = SI + J add J = J, SI M0-M3, I0, I1 1 cyc c2
98 # J = J & 0xff zxt1 J = J I0, I1, 1 cyc c3
100 # shladd Jptr = J, KeyTable, 3 M0-M3, I0, I1 1 cyc c4
105 # T = (SI + SJ) add T = SI, SJ M0-M3, I0, I1 1 cyc c6
107 # T = T & 0xff zxt1 T = T I0, I1 1 cyc
111 # shladd Tptr = T, KeyTable, 3 M0-M3, I0, I1 1 cyc c8
116 # data ^= T xor data = data, T M0-M3, I0, I1 1 cyc c10
118 # *out++ = Data ^ T dep word = word, data, 8, POS I0, I1 1 cyc c1
    [all...]
  /dalvik/dx/tests/084-dex-high-register-moves/
Blort.java 24 int i0 = 0; local
  /external/openssl/crypto/bn/asm/
x86_64-gf2m.pl 37 ($i0,$i1)=("%rsi","%rdi");
51 lea ($a,$a),$i0
58 sar \$63,$i0 # broadcast 62nd bit
64 and $b,$i0
66 mov $i0,$t1
67 shl \$62,$i0
70 xor $i0,$lo
107 mov $mask,$i0
109 and $b,$i0
117 movq (%rsp,$i0,8),$R # half of calculations is done in SSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c4_17pf.cpp 165 The code length is 40, containing 4 nonzero pulses: i0...i3.
167 Pulse i0 to i2 can have 8 possible positions, pulse i3 can have
170 i0 : 0, 5, 10, 15, 20, 25, 30, 35.
394 Word16 i0; local
448 * i0 loop: try 4 positions (use position with max of corr.). *
451 for (i0 = ipos[0]; i0 < L_CODE; i0 += STEP)
453 if (dn2[i0] >= 0)
455 ps0 = dn[i0];
    [all...]
c2_11pf.cpp 73 * The code length is 40, containing 2 nonzero pulses: i0...i1.
75 * Pulse i0 can have 2x8=16 possible positions, pulse i1 can have
78 * i0 : 1, 6, 11, 16, 21, 26, 31, 36.
179 The code length is 40, containing 2 nonzero pulses: i0...i1.
181 Pulse i0 can have 2x8=16 possible positions, pulse i1 can have
184 i0 : 1, 6, 11, 16, 21, 26, 31, 36.
411 Word16 i0; local
456 * i0 loop: try 8 positions. *
458 for (i0 = ipos[0]; i0 < L_CODE; i0 += STEP
    [all...]
c2_9pf.cpp 197 The code length is 40, containing 2 nonzero pulses: i0...i1. All pulses can
198 have two possible amplitudes: +1 or -1. Pulse i0 can have 8 possible positions,
203 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
205 second i0 : 1, 6, 11, 16, 21, 26, 31, 36.
209 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
211 second i0 : 2, 7, 12, 17, 22, 27, 32, 37.
215 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
217 second i0 : 1, 6, 11, 16, 21, 26, 31, 36.
221 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
223 second i0 : 1, 6, 11, 16, 21, 26, 31, 36
595 register Word16 i0; local
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
p2.cpp 8 namespace i0 { namespace in namespace:test0
  /external/clang/test/Sema/
attr-unused.c 22 Int_not_unused i0; // expected-warning {{unused variable}} local

Completed in 242 milliseconds

1 2 3 4 5