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

1 2 3 4 5

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceilf.c 27 int32_t i0,j0; local
30 GET_FLOAT_WORD(i0,x);
31 j0 = ((i0>>23)&0xff)-0x7f;
35 if(i0<0) {i0=0x80000000;}
36 else if(i0!=0) { i0=0x3f800000;}
40 if((i0&i)==0) return x; /* x is integral */
42 if(i0>0) i0 += (0x00800000)>>j0
    [all...]
s_floorf.c 36 int32_t i0,j0; local
38 GET_FLOAT_WORD(i0,x);
39 j0 = ((i0>>23)&0xff)-0x7f;
43 if(i0>=0) {i0=0;}
44 else if((i0&0x7fffffff)!=0)
45 { i0=0xbf800000;}
49 if((i0&i)==0) return x; /* x is integral */
51 if(i0<0) i0 += (0x00800000)>>j0
    [all...]
s_rint.c 40 int32_t i0,j0,sx; local
43 EXTRACT_WORDS(i0,i1,x);
44 sx = (i0>>31)&1;
45 j0 = ((i0>>20)&0x7ff)-0x3ff;
48 if(((i0&0x7fffffff)|i1)==0) return x;
49 i1 |= (i0&0x0fffff);
50 i0 &= 0xfffe0000;
51 i0 |= ((i1|-i1)>>12)&0x80000;
52 SET_HIGH_WORD(x,i0);
55 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 35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
42 if(i0<0) {i0=0x80000000;i1=0;}
43 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
47 if(((i0&i)|i1)==0) return x; /* x is integral */
49 if(i0>0) i0 += (0x00100000)>>j0
    [all...]
s_floor.c 35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
42 if(i0>=0) {i0=i1=0;}
43 else if(((i0&0x7fffffff)|i1)!=0)
44 { i0=0xbff00000;i1=0;}
48 if(((i0&i)|i1)==0) return x; /* x is integral */
50 if(i0<0) i0 += (0x00100000)>>j0
    [all...]
s_rintf.c 34 int32_t i0,j0,sx; local
36 GET_FLOAT_WORD(i0,x);
37 sx = (i0>>31)&1;
38 j0 = ((i0>>23)&0xff)-0x7f;
41 if((i0&0x7fffffff)==0) return x;
44 GET_FLOAT_WORD(i0,t);
45 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31));
s_trunc.c 35 int32_t i0,i1,j0; local
37 EXTRACT_WORDS(i0,i1,x);
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
42 i0 &= 0x80000000U;
47 if(((i0&i)|i1)==0) return x; /* x is integral */
49 i0 &= (~i); i1=0;
61 INSERT_WORDS(x,i0,i1);
s_modff.c 27 int32_t i0,j0; local
29 GET_FLOAT_WORD(i0,x);
30 j0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */
33 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */
37 if((i0&i)==0) { /* x is integral */
44 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);
75 INSERT_WORDS(*iptr,i0,i1&(~i));
s_exp2f.c 98 uint32_t hx, ix, i0; local
119 /* Reduce x, computing z, i0, and k. */
121 GET_FLOAT_WORD(i0, t);
122 i0 += TBLSIZE / 2;
123 k = (i0 >> TBLBITS) << 20;
124 i0 &= TBLSIZE - 1;
129 /* Compute r = exp2(y) = exp2ft[i0] * p(z). */
130 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 50 __typeof__(0 + 0) i0;
51 int &ir = i0;
  /external/clang/test/SemaCXX/
attr-unused.cpp 8 ns_unused::Int_unused i0; // expected-warning {{'Int_unused' was marked unused but was used}} local
  /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...]
  /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 1281 milliseconds

1 2 3 4 5