Searched refs:i0 (Results 1 - 25 of 212) sorted by relevance

123456789

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/torture/
H A Dpr26898-1.c9 int i0, i1; local
10 if (!(i0 + 1 < i1 + 1 == i0 < i1))
12 if (!(i0 + INT_MIN < i1 - INT_MAX == i0 < i1 - -1))
H A Dcris-asm-mof-1.c12 register int i0 asm ("mof") = i;
13 asm ("in-asm: %0" : : "x" (i0));
/netbsd-6-1-5-RELEASE/lib/libm/src/
H A Ds_ceilf.c29 int32_t i0,jj0; local
32 GET_FLOAT_WORD(i0,x);
33 jj0 = ((i0>>23)&0xff)-0x7f;
37 if(i0<0) {i0=0x80000000;}
38 else if(i0!=0) { i0=0x3f800000;}
42 if((i0&i)==0) return x; /* x is integral */
44 if(i0>0) i0
[all...]
H A Ds_floorf.c38 int32_t i0,jj0; local
40 GET_FLOAT_WORD(i0,x);
41 jj0 = ((i0>>23)&0xff)-0x7f;
45 if(i0>=0) {i0=0;}
46 else if((i0&0x7fffffff)!=0)
47 { i0=0xbf800000;}
51 if((i0&i)==0) return x; /* x is integral */
53 if(i0<0) i0
[all...]
H A Ds_rint.c40 int32_t i0,jj0,sx; local
43 EXTRACT_WORDS(i0,i1,x);
44 sx = (i0>>31)&1;
45 jj0 = ((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,
[all...]
H A Ds_rintf.c33 int32_t i0,jj0,sx; local
40 GET_FLOAT_WORD(i0,x);
41 sx = (i0>>31)&1;
42 jj0 = ((i0>>23)&0xff)-0x7f;
45 if((i0&0x7fffffff)==0) return x;
46 i1 = (i0&0x07fffff);
47 i0 &= 0xfff00000;
48 i0 |= ((i1|-i1)>>9)&0x400000;
49 SET_FLOAT_WORD(x,i0);
52 GET_FLOAT_WORD(i0,
[all...]
H A Ds_truncf.c38 int32_t i0,jj0; local
40 GET_FLOAT_WORD(i0,x);
41 jj0 = ((i0>>23)&0xff)-0x7f;
45 i0 &= 0x80000000;
48 if((i0&i)==0) return x; /* x is integral */
50 i0 &= (~i);
56 SET_FLOAT_WORD(x,i0);
H A Ds_ceil.c35 int32_t i0,i1,jj0; local
37 EXTRACT_WORDS(i0,i1,x);
38 jj0 = ((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
[all...]
H A Ds_floor.c35 int32_t i0,i1,jj0; local
37 EXTRACT_WORDS(i0,i1,x);
38 jj0 = ((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
[all...]
H A Dlroundf.c46 u_int32_t i0; local
50 GET_FLOAT_WORD(i0, x);
51 e = i0 >> SNG_FRACBITS;
68 GET_FLOAT_WORD(i0, x);
69 e = ((i0 >> SNG_FRACBITS) & 0xff) - SNG_EXP_BIAS;
70 i0 &= 0x7fffff;
71 i0 |= (1 << SNG_FRACBITS);
75 res = (shift < 32 ? (RESTYPE)i0 << shift : 0);
77 res = (shift > -32 ? i0 >> -shift : 0);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr28888.c8 register int i0, i1, i2, i3, i4, i5; local
10 if (i0)
15 l3:i0 = i1 == 255;
17 Out__LongInt ((int) i0, (int) 0);
18 i0 = i4 >= i1;
19 if (i0)
H A DWdeclaration-after-statement-1.c22 struct foo { int i0; } k = { 4 }; /* { dg-warning "" "declaration after statement" } */ member in struct:foo
23 if (k.i0 != 4)
H A DWdeclaration-after-statement-2.c22 struct foo { int i0; } k = { 4 }; /* { dg-warning "" "declaration-after-statement" } */ member in struct:foo
23 if (k.i0 != 4)
H A DWdeclaration-after-statement-3.c20 struct foo { int i0; } k = { 4 }; /* { dg-error "" "declaration-after-statement" } */ member in struct:foo
21 if (k.i0 != 4)
H A Dc99-mixdecl-1.c21 struct foo { int i0; } k = { 4 }; member in struct:foo
22 if (k.i0 != 4)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dpr28888.c8 register int i0, i1, i2, i3, i4, i5; local
10 if (i0)
15 l3:i0 = i1 == 255;
17 Out__LongInt ((int) i0, (int) 0);
18 i0 = i4 >= i1;
19 if (i0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dloop-21.c9 int i0, i1; local
12 for (i0 = f0; i0 <= e0; ++i0)
13 op(i0, i1);
H A D20030917-2.c22 size_t i0; local
30 for (i0 = 0; i0 < (size_t) (1); i0++)
34 if ((void *) (*x).def_op[i0] != ((void *) 0))
35 gt_ggc_mx_lang_tree_node ((*x).def_op[i0]);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/powerpc/
H A Dppc-mov-1.c21 int64_t i0,j0; local
24 i0 = temp.long_val;
26 j0 = ((i0>>52)&0x7ff)-0x3ff;
30 if(i0>=0) {i0=0;}
31 else if((i0&0x7fffffffffffffff)!=0)
32 { i0=0xbff0000000000000;}
36 if((i0&i)==0) return x;
38 if(i0<0) i0
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.target/powerpc/
H A Dppc-mov-1.c22 int64_t i0,j0; local
25 i0 = temp.long_val;
27 j0 = ((i0>>52)&0x7ff)-0x3ff;
31 if(i0>=0) {i0=0;}
32 else if((i0&0x7fffffffffffffff)!=0)
33 { i0=0xbff0000000000000;}
37 if((i0&i)==0) return x;
39 if(i0<0) i0
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/tree-ssa/
H A D20030917-2.c22 size_t i0; local
30 for (i0 = 0; i0 < (size_t) (1); i0++)
34 if ((void *) (*x).def_op[i0] != ((void *) 0))
35 gt_ggc_mx_lang_tree_node ((*x).def_op[i0]);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/unsorted/
H A Dgen_tst.c36 int i0, i1; local
38 for (i0 = 0; i0 < 8; i0++)
42 printf ("%s%s_cmp (r0, r1, x0, x1, p0, p1)\n", a0[i0], a1[i1]);
45 a0[i0], a1[i1], a0[i0]);
52 int i0, i1; local
54 for (i0 = 0; i0 <
[all...]
H A Dpp.c1 foo (a, b, c, d, e, i0, f, i1)
3 int i0, i1;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/unsorted/
H A Dgen_tst.c36 int i0, i1; local
38 for (i0 = 0; i0 < 8; i0++)
42 printf ("%s%s_cmp (r0, r1, x0, x1, p0, p1)\n", a0[i0], a1[i1]);
45 a0[i0], a1[i1], a0[i0]);
52 int i0, i1; local
54 for (i0 = 0; i0 <
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/arch/sparc/gen/
H A Dsetjmp.S67 add %i0, 32, %o2 /* build sigcontext sc.sc_mask */
77 st %o1, [%i0 + 0] /* sc.sc_onstack = current onstack; */
78 st %fp, [%i0 + 8] /* sc.sc_sp = (caller's) sp */
80 st %o0, [%i0 + 12] /* sc.sc_pc = return_pc */
81 st %g3, [%i0 + 16] /* sc.sc_npc */
82 st %g0, [%i0 + 20] /* sc.sc_psr = (clean psr) */
83 st %g2, [%i0 + 24]
84 st %g4, [%i0 + 48]
85 st %g7, [%i0 + 52]

Completed in 153 milliseconds

123456789