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

12

/barrelfish-master/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];
H A Ds_exp2.c333 * by i0 = i + TBLSIZE/2. For cache efficiency, exp2t[] and eps[] are
345 uint32_t hx, ix, lx, i0; local
367 /* Reduce x, computing z, i0, and k. */
369 GET_LOW_WORD(i0, t);
370 i0 += TBLSIZE / 2;
371 k = (i0 >> TBLBITS) << 20;
372 i0 = (i0 & (TBLSIZE - 1)) << 1;
376 /* Compute r = exp2(y) = exp2t[i0] * p(z - eps[i]). */
377 t = tbl[i0]; /* exp2
[all...]
/barrelfish-master/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));
/barrelfish-master/lib/openssl-1.0.0d/crypto/rc4/asm/
H A Drc4-ia64.pl218 local $i0 = $iteration;
244 &I(\$c, "ld1 Data[%u] = [InPtr], 1", $i0 % $NData) if ($p & $pComI);
245 &I(\$c, "padd1 I[%u] = One, I[%u]", $i0 % $NI, $i1 % $NI)if ($p & $pComI);
251 $i0 % $NT, $i2 % $NSI, $i1 % $NSJ) if ($p & $pComT);
252 &I(\$c, "KEYADDR(IPr[%u], I[%u])", $i0 % $NIP, $i1 % $NI) if ($p & $pComI);
260 &I(\$c, "zxt1 T[%u] = T[%u]", $i0 % $NT, $i0 % $NT) if ($p & $pComT);
263 &I(\$c, "LKEY SI[%u] = [IPr[%u]]", $i0 % $NSI, $i0%$NIP)if ($p & $pComI);
264 &I(\$c, "KEYADDR(JP[%u], J)", $i0
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/aes/asm/
H A Daes-sparcv9.pl64 $s0="%i0";
520 ld [%i0+0],%o0
521 ld [%i0+4],%o1
522 ld [%i0+8],%o2
523 ld [%i0+12],%o3
540 ldub [%i0+0],%l0
541 ldub [%i0+1],%l1
542 ldub [%i0+2],%l2
545 ldub [%i0+3],%l3
547 ldub [%i0
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/camellia/asm/
H A Dcmll-x86_64.pl52 $i0="%esi";
79 movz `&hi("$t0")`,$i0 # (t0>>8)&0xff
81 mov $SBOX3_3033($Tbl,$i0,8),$t3 # t3=SBOX3_3033[0]
83 movz `&lo("$t0")`,$i0 # (t0>>0)&0xff
86 xor $SBOX4_4404($Tbl,$i0,8),$t3 # t3^=SBOX4_4404[0]
89 movz `&hi("$t0")`,$i0 # (t0>>24)&0xff
91 xor $SBOX1_1110($Tbl,$i0,8),$t3 # t3^=SBOX1_1110[0]
93 movz `&lo("$t0")`,$i0 # (t0>>16)&0xff
95 xor $SBOX2_0222($Tbl,$i0,8),$t3 # t3^=SBOX2_0222[0]
366 my ($i0,
[all...]
H A Dcmll-x86.pl471 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
475 &mov ($idx,$i0);
476 &shld ($i0,$i1,$rot);
481 &mov (&DWP(-128+4*$rnd++,$key),shift(@T)) if ($i0 eq @T[0]);
491 my ($i0,$i1,$i2,$i3,$rot,$rnd,@T)=@_;
495 &mov ($Tbl,$i0);
496 &shl ($i0,$rot);
500 &or ($i0,$idx);
503 &mov (&DWP(-128+4*$rnd++,$key),shift(@T)) if ($i0 eq @T[0]);
516 &mov (&DWP(-128+4*$rnd++,$key),shift(@T)) if ($i0 e
[all...]
/barrelfish-master/lib/msun/ld128/
H A Ds_exp2l.c346 * by i0 = i + TBLSIZE/2.
358 uint32_t hx, ix, i0; local
384 * Reduce x, computing z, i0, and k. The low bits of x + redux
386 * TBLBITS fractional bits (i0). We use bit tricks to extract these
391 * We split this into k = 0xabc and i0 = 0x12 (adjusted to
398 i0 = (u.bits.manl & 0xffffffff) + TBLSIZE / 2;
399 k = (int)i0 >> TBLBITS;
400 i0 = i0 & (TBLSIZE - 1);
413 /* Compute r = exp2(y) = exp2t[i0] *
[all...]
/barrelfish-master/lib/msun/ld80/
H A Ds_exp2l.c222 uint32_t hx, ix, i0; local
246 * Reduce x, computing z, i0, and k. The low bits of x + redux
248 * TBLBITS fractional bits (i0). We use bit tricks to extract these
253 * We split this into k = 0xabc and i0 = 0x12 (adjusted to
260 i0 = u.bits.manl + TBLSIZE / 2;
261 k = (int)i0 >> TBLBITS;
262 i0 = (i0 & (TBLSIZE - 1)) << 1;
274 /* Compute r = exp2l(y) = exp2lt[i0] * p(z). */
275 long double t_hi = tbl[i0];
[all...]
/barrelfish-master/include/lwip2/lwip/
H A Dip_addr.h123 #define IP_ADDR6(ipaddr,i0,i1,i2,i3) do { IP6_ADDR(ip_2_ip6(ipaddr),i0,i1,i2,i3); \
126 #define IP_ADDR6_HOST(ipaddr,i0,i1,i2,i3) IP_ADDR6(ipaddr,PP_HTONL(i0),PP_HTONL(i1),PP_HTONL(i2),PP_HTONL(i3))
302 #define IP_ADDR6(ipaddr,i0,i1,i2,i3) IP6_ADDR(ipaddr,i0,i1,i2,i3)
303 #define IP_ADDR6_HOST(ipaddr,i0,i1,i2,i3) IP_ADDR6(ipaddr,PP_HTONL(i0),PP_HTONL(i1),PP_HTONL(i2),PP_HTONL(i3))
H A Dnetif.h455 void netif_ip6_addr_set_parts(struct netif *netif, s8_t addr_idx, u32_t i0, u32_t i1, u32_t i2, u32_t i3);
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Dsparccpuid.S100 clr %i0
126 add %fp,BIAS,%i0 ! return pointer to caller�s top of stack
163 add %o0,1,%i0 ! used for debugging
192 .enter: ld [%i0],%i2
196 swap [%i0],%i2
201 st %i2,[%i0]
202 sra %i2,%g0,%i0
/barrelfish-master/lib/cxx/cxx/
H A Ddebug.cpp370 __i_node* i0 = __find_iterator(__i0); local
371 __c_node* c0 = i0 != nullptr ? i0->__c_ : nullptr;
372 if (i == nullptr && i0 != nullptr)
/barrelfish-master/lib/lwip2/src/core/
H A Dnetif.c1028 * @param i0 word0 of the new IPv6 address
1034 netif_ip6_addr_set_parts(struct netif *netif, s8_t addr_idx, u32_t i0, u32_t i1, u32_t i2, u32_t i3) argument
1042 if ((old_addr->addr[0] != i0) || (old_addr->addr[1] != i1) ||
1049 IP_ADDR6(&new_ipaddr, i0, i1, i2, i3);
1063 IP6_ADDR(ip_2_ip6(&(netif->ip6_addr[addr_idx])), i0, i1, i2, i3);
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dconsole.tcl1614 set i0 $ix
1616 while {[string compare [set i0 [$w search $c2 $i0 $i1]] {}]} {
1617 append i0 +1c
1618 if {[string match {\\} [$w get $i0-2c]]} continue
1654 if {!$j} {set i0 $i}
1659 blink $w $data(-blinktime) $i0 [$w index insert]
1661 blink $w $data(-blinktime) $i0 $i0+1c \

Completed in 189 milliseconds

12