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

123

/freebsd-current/lib/msun/src/
H A Ds_floorf.c33 int32_t i0,j0; local
35 GET_FLOAT_WORD(i0,x);
36 j0 = ((i0>>23)&0xff)-0x7f;
40 if(i0>=0) {i0=0;}
41 else if((i0&0x7fffffff)!=0)
42 { i0=0xbf800000;}
46 if((i0&i)==0) return x; /* x is integral */
48 if(i0<0) i0
[all...]
H A Ds_ceilf.c24 int32_t i0,j0; local
27 GET_FLOAT_WORD(i0,x);
28 j0 = ((i0>>23)&0xff)-0x7f;
32 if(i0<0) {i0=0x80000000;}
33 else if(i0!=0) { i0=0x3f800000;}
37 if((i0&i)==0) return x; /* x is integral */
39 if(i0>0) i0
[all...]
H A Ds_rint.c36 int32_t i0,j0,sx; local
39 EXTRACT_WORDS(i0,i1,x);
40 sx = (i0>>31)&1;
41 j0 = ((i0>>20)&0x7ff)-0x3ff;
44 if(((i0&0x7fffffff)|i1)==0) return x;
45 i1 |= (i0&0x0fffff);
46 i0 &= 0xfffe0000;
47 i0 |= ((i1|-i1)>>12)&0x80000;
48 SET_HIGH_WORD(x,i0);
51 GET_HIGH_WORD(i0,
[all...]
H A Ds_truncf.c29 int32_t i0,j0; local
31 GET_FLOAT_WORD(i0,x);
32 j0 = ((i0>>23)&0xff)-0x7f;
36 i0 &= 0x80000000;
39 if((i0&i)==0) return x; /* x is integral */
41 i0 &= (~i);
47 SET_FLOAT_WORD(x,i0);
H A Ds_floor.c31 int32_t i0,i1,j0; local
33 EXTRACT_WORDS(i0,i1,x);
34 j0 = ((i0>>20)&0x7ff)-0x3ff;
38 if(i0>=0) {i0=i1=0;}
39 else if(((i0&0x7fffffff)|i1)!=0)
40 { i0=0xbff00000;i1=0;}
44 if(((i0&i)|i1)==0) return x; /* x is integral */
46 if(i0<0) i0
[all...]
H A Ds_ceil.c31 int32_t i0,i1,j0; local
33 EXTRACT_WORDS(i0,i1,x);
34 j0 = ((i0>>20)&0x7ff)-0x3ff;
38 if(i0<0) {i0=0x80000000;i1=0;}
39 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
43 if(((i0&i)|i1)==0) return x; /* x is integral */
45 if(i0>0) i0
[all...]
H A Ds_rintf.c31 int32_t i0,j0,sx; local
33 GET_FLOAT_WORD(i0,x);
34 sx = (i0>>31)&1;
35 j0 = ((i0>>23)&0xff)-0x7f;
38 if((i0&0x7fffffff)==0) return x;
41 GET_FLOAT_WORD(i0,t);
42 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31));
H A Ds_trunc.c31 int32_t i0,i1,j0; local
33 EXTRACT_WORDS(i0,i1,x);
34 j0 = ((i0>>20)&0x7ff)-0x3ff;
38 i0 &= 0x80000000U;
43 if(((i0&i)|i1)==0) return x; /* x is integral */
45 i0 &= (~i); i1=0;
57 INSERT_WORDS(x,i0,i1);
H A Ds_modff.c24 int32_t i0,j0; local
26 GET_FLOAT_WORD(i0,x);
27 j0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */
30 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */
34 if((i0&i)==0) { /* x is integral */
41 SET_FLOAT_WORD(*iptr,i0&(~i));
H A Ds_modf.c30 int32_t i0,i1,j0; local
32 EXTRACT_WORDS(i0,i1,x);
33 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
36 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
40 if(((i0&i)|i1)==0) { /* x is integral */
47 INSERT_WORDS(*iptr,i0&(~i),0);
70 INSERT_WORDS(*iptr,i0,i1&(~i));
H A Ds_exp2f.c98 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];
/freebsd-current/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-current/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-current/lib/libc/gen/
H A Dmodf.c90 int32_t i0,i1,j0; local
92 EXTRACT_WORDS(i0,i1,x);
93 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
96 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
100 if(((i0&i)|i1)==0) { /* x is integral */
107 INSERT_WORDS(*iptr,i0&(~i),0);
130 INSERT_WORDS(*iptr,i0,i1&(~i));
/freebsd-current/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-current/crypto/openssl/crypto/aes/asm/
H A Daes-mips.pl125 my ($i0,$i1,$i2,$i3)=($at,$t0,$t1,$t2);
151 ext $i0,$s1,16,8
156 lwxs $t0,$i0($Tbl) # Te1[s1>>16]
157 ext $i0,$s2,8,8
165 lwxs $t4,$i0($Tbl) # Te2[s2>>8]
166 ext $i0,$s3,0,8
174 lwxs $t8,$i0($Tbl) # Te3[s3]
175 ext $i0,$s0,24,8
194 lwxs $t4,$i0($Tbl) # Te0[s0>>24]
229 ext $i0,
[all...]
H A Daes-sparcv9.pl71 $s0="%i0";
532 ld [%i0+0],%o0
533 ld [%i0+4],%o1
534 ld [%i0+8],%o2
535 ld [%i0+12],%o3
552 ldub [%i0+0],%l0
553 ldub [%i0+1],%l1
554 ldub [%i0+2],%l2
557 ldub [%i0+3],%l3
559 ldub [%i0
[all...]
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dx86_64-gf2m.pl47 ($i0,$i1)=("%rsi","%rdi");
63 lea ($a,$a),$i0
70 sar \$63,$i0 # broadcast 62nd bit
76 and $b,$i0
78 mov $i0,$t1
79 shl \$62,$i0
82 xor $i0,$lo
119 mov $mask,$i0
121 and $b,$i0
129 movq (%rsp,$i0,
[all...]
H A Darmv4-gf2m.pl78 ($hi,$lo,$t0,$t1, $i0,$i1 )=map("r$_",(4..9),12);
101 and $i0,$mask,$b,lsl#2
105 ldr $lo,[sp,$i0] @ tab[b & 0x7]
106 and $i0,$mask,$b,lsr#4
109 ldr $t0,[sp,$i0] @ tab[b >> 6 & 0x7]
114 and $i0,$mask,$b,lsr#10
117 ldr $t0,[sp,$i0] @ tab[b >> 12 & 0x7]
124 and $i0,$mask,$b,lsr#16
127 ldr $t0,[sp,$i0] @ tab[b >> 18 & 0x7]
134 and $i0,
[all...]
/freebsd-current/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-ia64.S108 i0=r20; i1=r21;
159 (p8) ld8 i0=[r10],16 // aligned input
170 (p15) shrp i0=r15,r14,56 }
172 (p14) shrp i0=r15,r14,48 }
174 (p13) shrp i0=r15,r14,40 }
176 (p12) shrp i0=r15,r14,32 }
178 (p11) shrp i0=r15,r14,24 }
180 (p10) shrp i0=r15,r14,16 }
182 (p9) shrp i0=r15,r14,8 }
188 { .mmi; add h0=h0,i0
[all...]
/freebsd-current/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);
H A Danalyze.c720 lin i0 = 0, i1 = 0;
722 while (i0 < len0 || i1 < len1)
724 if (changed0[i0] | changed1[i1])
726 lin line0 = i0, line1 = i1;
729 while (changed0[i0]) ++i0;
733 script = add_change (line0, line1, i0 - line0, i1 - line1, script);
737 i0++, i1++;
752 lin i0 = filevec[0].buffered_lines, i1 = filevec[1].buffered_lines;
756 while (i0 >
716 lin i0 = 0, i1 = 0; local
748 lin i0 = filevec[0].buffered_lines, i1 = filevec[1].buffered_lines; local
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/usdt/
H A Dtst.tailcall.ksh51 mov 9, %i0
/freebsd-current/contrib/tcpdump/
H A Dprint-udp.c114 uint32_t i0, i1; local
120 i0 = GET_BE_U_4(&((const u_int *)hdr)[0]);
124 i0 & 0xffff,
125 i1, i0 & 0x800000? "*" : "");
127 if (i0 & 0x1f0000)
128 ND_PRINT(" f%u", (i0 >> 16) & 0x1f);
129 if (i0 & 0x3f000000)
130 ND_PRINT(" s%u", (i0 >> 24) & 0x3f);
140 uint32_t i0, i1; local
148 i0
[all...]
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dv_log_inline.h60 uint64_t i0 = (i[0] >> (52 - V_LOG_TABLE_BITS)) & IndexMask; local
62 float64x2_t e0 = vld1q_f64 (&__v_log_data.table[i0].invc);

Completed in 197 milliseconds

123