/external/clang/test/PCH/ |
va_arg.c | 15 char *i0(char **argv, int argc) { return argv[argc]; } function 18 h(i0, argv, 1, 2, 3);
|
/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_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_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_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_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_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...] |
/device/google/contexthub/lib/libm/ |
sf_floor.c | 40 __int32_t i0,j0; local 42 GET_FLOAT_WORD(i0,x); 43 ix = (i0&0x7fffffff); 48 if(i0>=0) {i0=0;} 50 { i0=0xbf800000;} 54 if((i0&i)==0) return x; /* x is integral */ 56 if(i0<0) i0 += (0x00800000)>>j0; 57 i0 &= (~i) [all...] |
/external/clang/test/CXX/expr/ |
p3.cpp | 13 int i0 = a + 1; local
|
/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/fdlibm/ |
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;
|
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...] |
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/ |
p2.cpp | 8 namespace i0 { namespace in namespace:test0
|
/external/clang/test/CodeGen/ |
fp16-ops.c | 13 volatile int i0; variable 99 h1 = h0 * i0; 129 h1 = (h0 / i0); 159 h1 = (h0 + i0); 189 h1 = (h0 - i0); 214 test = (i0 < h0); 218 test = (h0 < i0); 243 test = (i0 > h0); 247 test = (h0 > i0); 272 test = (i0 <= h0) [all...] |
/external/clang/test/Sema/ |
attr-unused.c | 22 Int_not_unused i0; // expected-warning {{unused variable}} local
|
/external/libchrome/base/third_party/icu/ |
icu_utf.cc | 212 int32_t i0 = i; local 218 c=utf8_errorValue[i-i0];
|
/external/libweave/third_party/chromium/base/third_party/icu/ |
icu_utf.cc | 217 int32_t i0=i; local 223 c=utf8_errorValue[i-i0];
|
/frameworks/rs/driver/runtime/ |
rs_f16_math.c | 83 short i0, j0; local 85 GET_HALF_WORD(i0, x); 86 j0 = ((i0 >> 10) & 0x1f) - 15; // exponent of x 89 SET_HALF_WORD(*iptr, i0 & 0x8000); // *iptr = +/- 0 94 if ((i0 & i) == 0) { // no bits set in fractional part 96 SET_HALF_WORD(x, i0 & 0x8000); 100 SET_HALF_WORD(*iptr, i0 & ~i); // zero out fractional parts
|
/prebuilts/go/darwin-x86/test/fixedbugs/bug248.dir/ |
bug2.go | 18 type I0 interface { 34 var i0 I0 = t0(0) // ok var 66 if _, ok := i.(I0); ok { 67 println("used t1 as i0")
|