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

123

/freebsd-11-stable/lib/msun/src/
H A Ds_ceilf.c27 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
[all...]
H A Ds_floorf.c36 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
[all...]
H A Ds_rint.c40 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,
[all...]
H A Ds_truncf.c33 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);
H A Ds_ceil.c35 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
[all...]
H A Ds_floor.c35 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
[all...]
H A Ds_rintf.c34 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));
H A Ds_trunc.c35 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);
H A Ds_modff.c27 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));
H A Ds_modf.c35 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));
H A Ds_exp2f.c99 uint32_t hx, ix, i0; local
120 /* Reduce x, computing z, i0, and k. */
122 GET_FLOAT_WORD(i0, t);
123 i0 += TBLSIZE / 2;
124 k = (i0 >> TBLBITS) << 20;
125 i0 &= TBLSIZE - 1;
130 /* Compute r = exp2(y) = exp2ft[i0] * p(z). */
131 tv = exp2ft[i0];
/freebsd-11-stable/sys/contrib/ncsw/inc/
H A Dmath_ext.h51 int32_t i0,i1,j0; /*- cc 020130 -*/ local
53 i0 = HIGH(x);
55 j0 = ((i0>>20)&0x7ff)-0x3ff;
59 if(i0<0) {i0=0x80000000;i1=0;}
60 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
64 if(((i0&i)|i1)==0) return x; /* x is integral */
66 if(i0>0) i0
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bitvector.h128 for (uptr i0 = 0; i0 < kLevel1Size; i0++) {
129 l1_[i0].setAll();
131 l2_[i0][i1].setAll();
145 uptr i0 = idx0(idx); local
148 if (!l1_[i0].getBit(i1)) {
149 l1_[i0].setBit(i1);
150 l2_[i0][i1].clear();
152 bool res = l2_[i0][i
160 uptr i0 = idx0(idx); local
174 uptr i0 = idx0(idx); local
[all...]
/freebsd-11-stable/lib/libc/sparc64/gen/
H A D_setjmp.S73 ldx [%i0 + _JB_SP], %fp
74 ldx [%i0 + _JB_PC], %i7
75 mov 1, %i0
76 movrnz %i1, %i1, %i0
H A Dsetjmp.S65 add %i0, _JB_SIGMASK, %o2
79 add %i0, _JB_SIGMASK, %o1
82 ldx [%i0 + _JB_SP], %fp
83 ldx [%i0 + _JB_PC], %i7
84 mov 1, %i0
85 movrnz %i1, %i1, %i0
/freebsd-11-stable/tools/test/testfloat/sparc64/
H A Dsystfloat.S56 .macro i2f32 src=%i0,dst=%f0
61 .macro i2f64 src=%i0,dst=%f0
66 .macro f2i32 src=%f0,dst=%i0
71 .macro f2i64 src=%f0,dst=%i0
85 st %i0,[%sp+2231]
89 ld [%sp+2231],%i0
103 st %i0,[%sp+2231]
107 ldx [%sp+2231],%i0
121 st %i0,[%sp+2231]
125 ldx [%sp+2231],%i0
[all...]
/freebsd-11-stable/lib/libc/sparc64/sys/
H A Dcerror.S55 stw %i0, [%o0]
56 mov -1, %i0
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/inline/
H A Dtst.InlineKinds.d37 inline int i0 = 100 + 23; /* constant-folded integer constant */
49 inline struct s i3 = xlate < struct s > (i0); /* translator */
55 printf("i0 = %d\n", i0);
/freebsd-11-stable/lib/libc/gen/
H A Dmodf.c94 int32_t i0,i1,j0; local
96 EXTRACT_WORDS(i0,i1,x);
97 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
100 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
104 if(((i0&i)|i1)==0) { /* x is integral */
111 INSERT_WORDS(*iptr,i0&(~i),0);
134 INSERT_WORDS(*iptr,i0,i1&(~i));
/freebsd-11-stable/sbin/sunlabel/
H A Druntest.sh11 dd if=/dev/$MD of=${TMP}i0 count=16 > /dev/null 2>&1
70 if dd if=${TMP}i0 of=/dev/${MD}$t 2>/dev/null ; then
80 if dd if=${TMP}i0 of=/dev/${MD}c 2>/dev/null ; then
115 if dd if=${TMP}i0 of=/dev/${MD}a 2>/dev/null ; then
122 if ./sunlabel -B -b ${TMP}i0 ${MD} ; then
135 if ktrace ./sunlabel -B -b ${TMP}i0 ${MD} ; then
148 if dd if=${TMP}i0 of=/dev/${MD}c 2>/dev/null ; then
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats_timing.h50 const tsc_tick_count::tsc_interval_t &i0);
52 const tsc_tick_count::tsc_interval_t &i0);
88 const tsc_tick_count::tsc_interval_t &i0) {
89 return tsc_tick_count::tsc_interval_t(i1.value - i0.value);
94 const tsc_tick_count::tsc_interval_t &i0) {
95 i1.value += i0.value;
87 operator -(const tsc_tick_count::tsc_interval_t &i1, const tsc_tick_count::tsc_interval_t &i0) argument
93 operator +=(tsc_tick_count::tsc_interval_t &i1, const tsc_tick_count::tsc_interval_t &i0) argument
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daes-mips.pl117 my ($i0,$i1,$i2,$i3)=($at,$t0,$t1,$t2);
143 ext $i0,$s1,16,8
148 lwxs $t0,$i0($Tbl) # Te1[s1>>16]
149 ext $i0,$s2,8,8
157 lwxs $t4,$i0($Tbl) # Te2[s2>>8]
158 ext $i0,$s3,0,8
166 lwxs $t8,$i0($Tbl) # Te3[s3]
167 ext $i0,$s0,24,8
186 lwxs $t4,$i0($Tbl) # Te0[s0>>24]
221 ext $i0,
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dx86_64-gf2m.pl38 ($i0,$i1)=("%rsi","%rdi");
52 lea ($a,$a),$i0
59 sar \$63,$i0 # broadcast 62nd bit
65 and $b,$i0
67 mov $i0,$t1
68 shl \$62,$i0
71 xor $i0,$lo
108 mov $mask,$i0
110 and $b,$i0
118 movq (%rsp,$i0,
[all...]
H A Darmv4-gf2m.pl51 ($hi,$lo,$t0,$t1, $i0,$i1 )=map("r$_",(4..9),12);
74 and $i0,$mask,$b,lsl#2
78 ldr $lo,[sp,$i0] @ tab[b & 0x7]
79 and $i0,$mask,$b,lsr#4
82 ldr $t0,[sp,$i0] @ tab[b >> 6 & 0x7]
87 and $i0,$mask,$b,lsr#10
90 ldr $t0,[sp,$i0] @ tab[b >> 12 & 0x7]
97 and $i0,$mask,$b,lsr#16
100 ldr $t0,[sp,$i0] @ tab[b >> 18 & 0x7]
107 and $i0,
[all...]
/freebsd-11-stable/contrib/diff/src/
H A Dside.c203 lin i0 = next0, i1 = next1; local
205 if (!suppress_common_lines && (i0 != limit0 || i1 != limit1))
209 long int len0 = limit0 - i0;
216 while (i0 != limit0 && i1 != limit1)
217 print_1sdiff_line (&files[0].linbuf[i0++], ' ',
222 while (i0 != limit0)
223 print_1sdiff_line (&files[0].linbuf[i0++], '(', 0);

Completed in 143 milliseconds

123