Searched refs:aa (Results 1 - 21 of 21) sorted by relevance

/barrelfish-2018-10-04/lib/libc/quad/
H A Dnotdi2.c50 union uu aa; local
52 aa.q = a;
53 aa.ul[0] = ~aa.ul[0];
54 aa.ul[1] = ~aa.ul[1];
55 return (aa.q);
H A Dashldi3.c51 union uu aa; local
53 aa.q = a;
55 aa.ul[H] = shift >= QUAD_BITS ? 0 :
56 aa.ul[L] << (shift - LONG_BITS);
57 aa.ul[L] = 0;
59 aa.ul[H] = (aa.ul[H] << shift) |
60 (aa.ul[L] >> (LONG_BITS - shift));
61 aa.ul[L] <<= shift;
63 return (aa
[all...]
H A Dlshldi3.c51 union uu aa; local
53 aa.q = a;
55 aa.ul[H] = shift >= QUAD_BITS ? 0 :
56 aa.ul[L] << (shift - LONG_BITS);
57 aa.ul[L] = 0;
59 aa.ul[H] = (aa.ul[H] << shift) |
60 (aa.ul[L] >> (LONG_BITS - shift));
61 aa.ul[L] <<= shift;
63 return (aa
[all...]
H A Dlshrdi3.c50 union uu aa; local
52 aa.q = a;
54 aa.ul[L] = shift >= QUAD_BITS ? 0 :
55 aa.ul[H] >> (shift - LONG_BITS);
56 aa.ul[H] = 0;
58 aa.ul[L] = (aa.ul[L] >> shift) |
59 (aa.ul[H] << (LONG_BITS - shift));
60 aa.ul[H] >>= shift;
62 return (aa
[all...]
H A Dashrdi3.c50 union uu aa; local
52 aa.q = a;
63 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1;
64 aa.ul[L] = shift >= QUAD_BITS ? s :
65 aa.sl[H] >> (shift - LONG_BITS);
66 aa.ul[H] = s;
68 aa.ul[L] = (aa.ul[L] >> shift) |
69 (aa.ul[H] << (LONG_BITS - shift));
70 aa
[all...]
H A Danddi3.c49 union uu aa, bb; local
51 aa.q = a;
53 aa.ul[0] &= bb.ul[0];
54 aa.ul[1] &= bb.ul[1];
55 return (aa.q);
H A Diordi3.c49 union uu aa, bb; local
51 aa.q = a;
53 aa.ul[0] |= bb.ul[0];
54 aa.ul[1] |= bb.ul[1];
55 return (aa.q);
H A Dxordi3.c49 union uu aa, bb; local
51 aa.q = a;
53 aa.ul[0] ^= bb.ul[0];
54 aa.ul[1] ^= bb.ul[1];
55 return (aa.q);
H A Dcmpdi2.c51 union uu aa, bb; local
53 aa.q = a;
55 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 :
56 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Ducmpdi2.c50 union uu aa, bb; local
52 aa.uq = a;
54 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 :
55 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Dnegdi2.c49 union uu aa, res; local
51 aa.q = a;
52 res.ul[L] = -aa.ul[L];
53 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
H A Dsubdi3.c50 union uu aa, bb, diff; local
52 aa.q = a;
54 diff.ul[L] = aa.ul[L] - bb.ul[L];
55 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
H A Dadddi3.c51 union uu aa, bb, sum; local
53 aa.q = a;
55 sum.ul[L] = aa.ul[L] + bb.ul[L];
56 sum.ul[H] = aa.ul[H] + bb.ul[H] + (sum.ul[L] < bb.ul[L]);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_exp.c244 BIGNUM *aa; local
265 aa = BN_CTX_get(ctx);
267 if(!aa || !val[0]) goto err;
273 if (!BN_copy(aa, m)) goto err;
274 aa->neg = 0;
275 if (BN_RECP_CTX_set(&recp,aa,ctx) <= 0) goto err;
293 if (!BN_mod_mul_reciprocal(aa,val[0],val[0],&recp,ctx))
300 aa,&recp,ctx))
378 const BIGNUM *aa; local
425 aa
578 const BIGNUM *aa; local
[all...]
H A Dbn_lib.c801 BN_ULONG aa,bb; local
803 aa=a[n-1];
805 if (aa != bb) return((aa > bb)?1:-1);
808 aa=a[i];
810 if (aa != bb) return((aa > bb)?1:-1);
/barrelfish-2018-10-04/include/arpa/
H A Dnameser_compat.h66 unsigned aa: 1; /*%< authoritative answer */ member in struct:__anon32
80 unsigned aa :1; /*%< authoritative answer */ member in struct:__anon32
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/idea/
H A Didea_spd.c183 double a,aa,b,c,d; local
251 aa=((double)COUNT(cca))/d;
291 printf("IDEA set_decrypt_key per sec = %12.2f (%9.3fuS)\n",aa,1.0e6/aa);
/barrelfish-2018-10-04/lib/libc/net/
H A Dsctp_sys_calls.c104 int i, ret, *aa; local
157 aa = (int *)buf;
158 *aa = addrcnt;
690 int i, cnt, *aa, saved_errno; local
746 aa = (int *)buf;
747 *aa = cnt;
748 aa++;
749 memcpy((caddr_t)aa, addrs, (size_t)(len - sizeof(int)));
H A Dgetnetbydns.c191 if (hp->aa)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dapps.c1557 const char *aa,*bb; local
1559 for (aa=a[DB_serial]; *aa == '0'; aa++);
1561 return(strcmp(aa,bb));
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dapps.c1557 const char *aa,*bb; local
1559 for (aa=a[DB_serial]; *aa == '0'; aa++);
1561 return(strcmp(aa,bb));

Completed in 203 milliseconds