Searched refs:b1 (Results 1 - 25 of 26) sorted by relevance

12

/barrelfish-master/lib/gdtoa/
H A DstrtoIg.c41 Bigint *b, *b1; local
54 b1 = Balloc(b->k);
55 Bcopy(b1, b);
63 b1 = increment(b1);
66 b1->x[0] = 0;
67 b1->x[nw1] = 1L << nb11;
76 if (b1->wds > nw
77 || (nb1 && b1->x[nw1] & 1L << nb1)) {
80 rshift(b1,
[all...]
H A Dmisc.c175 Bigint *b1; local
203 b1 = Balloc(b->k+1);
204 Bcopy(b1, b);
206 b = b1;
384 Bigint *b1, *p5, *p51; local
409 b1 = mult(b, p5);
411 b = b1;
442 Bigint *b1; local
450 b1 = Balloc(k1);
451 x1 = b1
[all...]
H A Ddtoa.c126 Bigint *b, *b1, *delta, *mlo, *mhi, *S; local
521 b1 = mult(mhi, b);
523 b = b1;
H A Dgdtoa.c160 Bigint *b, *b1, *delta, *mlo, *mhi, *mhi1, *S; local
542 b1 = mult(mhi, b);
544 b = b1;
H A Dstrtodg.c55 Bigint *b1; local
82 b1 = Balloc(b->k+1);
83 Bcopy(b1,b);
85 b = b1;
/barrelfish-master/lib/libc/string/
H A Dbcmp.c42 bcmp(const void *b1, const void *b2, size_t length) argument
48 p1 = (char *)b1;
H A Dtimingsafe_bcmp.c26 __timingsafe_bcmp(const void *b1, const void *b2, size_t n) argument
28 const unsigned char *p1 = b1, *p2 = b2;
H A Dtimingsafe_memcmp.c27 __timingsafe_memcmp(const void *b1, const void *b2, size_t len) argument
29 const unsigned char *p1 = b1, *p2 = b2;
/barrelfish-master/lib/openssl-1.0.0d/ms/
H A Dcmp.pl14 $n1=sysread(IN0,$b1,4096);
18 last if ($b1 ne $b2);
33 @a1=unpack("C*",$b1);
/barrelfish-master/lib/tommath/
H A Dbn_mp_toom_mul.c27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
32 &a0, &a1, &a2, &b0, &b1,
56 /* b = b2 * B**2 + b1 * B + b0 */
61 if ((res = mp_copy(b, &b1)) != MP_OKAY) {
64 mp_rshd(&b1, B);
65 mp_mod_2d(&b1, DIGIT_BIT * B, &b1);
82 /* w1 = (a2 + 2(a1 + 2a0))(b2 + 2(b1 + 2b0)) */
99 if ((res = mp_add(&tmp2, &b1, &tmp2)) != MP_OKAY) {
113 /* w3 = (a0 + 2(a1 + 2a2))(b0 + 2(b1
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/idea/
H A Di_skey.c129 long n1,n2,q,r,b1,b2,t; local
138 b1=0;
150 b2=b1-q*b2;
151 b1=t;
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Da_set.c76 const MYBLOB *b1 = (const MYBLOB *)elem1; local
80 r = memcmp(b1->pbData, b2->pbData,
81 b1->cbData < b2->cbData ? b1->cbData : b2->cbData);
84 return b1->cbData-b2->cbData;
/barrelfish-master/lib/openssl-1.0.0d/crypto/bio/
H A Dbss_bio.c707 struct bio_bio_st *b1, *b2; local
712 b1 = bio1->ptr;
715 if (b1->peer != NULL || b2->peer != NULL)
721 if (b1->buf == NULL)
723 b1->buf = OPENSSL_malloc(b1->size);
724 if (b1->buf == NULL)
729 b1->len = 0;
730 b1->offset = 0;
745 b1
[all...]
H A Dbio.h523 #define BIO_make_bio_pair(b1,b2) (int)BIO_ctrl(b1,BIO_C_MAKE_BIO_PAIR,0,b2)
/barrelfish-master/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/viewers/
H A DFadeColorSupport.java80 int b1 = pr + (db1 * i) / maxFade;
81 forwardColor[i][0] = new Color(r1, g1, b1);
/barrelfish-master/usr/eclipseclp/Alog/src/
H A Dadjlogs.c7 * -a1 n -a2 m -b1 k define pair-exchange events used to compute clock offsets
66 unsigned long a1, b1, a2; /* Times for the events */ member in struct:__anon1610
128 else if (strcmp(argv[i],"-b1") == 0)
245 It MAY participate as the respondent (b1 event) for multiple
247 Finally, the (b1) processor has processor number SMALLER than
268 offsetevents[entry.i_data].b1 = entry.time;
460 pj (recv) b1 (send back)
465 global(b1). Then, with the unknowns the offsets (the scales
474 The right hand sides are (1/2)(a1(i)+a2(i)) *s(i) - b1(j)*s(j).
477 o(i) = (a1(i)+a2(i))/2 - (s(j)/s(i)) * (b1(
705 unsigned long a1, a21, a22, a3, k1, k21, k22, k3, b1, b21, b22, b3; local
752 unsigned long a1, a21, a22, a3, k1, k21, k22, k3, b1, b21, b22, b3; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/Netware/
H A Ddo_tests.pl547 my( $n1, $n2, $b1, $b2 );
561 $n1 = read(IN0, $b1, 512);
565 if ($b1 != $b2) {last;}
/barrelfish-master/lib/lua/src/
H A Dlgc.h80 #define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2))
/barrelfish-master/lib/openssl-1.0.0d/crypto/ec/
H A Dec_lib.c476 BIGNUM *a1, *a2, *a3, *b1, *b2, *b3; local
497 b1 = BN_CTX_get(ctx);
512 !b->meth->group_get_curve(b, b1, b2, b3, ctx))
515 if (r || BN_cmp(a1, b1) || BN_cmp(a2, b2) || BN_cmp(a3, b3))
527 !EC_GROUP_get_order(b, b1, ctx) ||
536 if (BN_cmp(a1, b1) || BN_cmp(a2, b2))
/barrelfish-master/usr/eclipseclp/icparc_solvers/
H A Drepairtest.pl65 write_expect(b1,[X #> Y],[X]),
/barrelfish-master/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_gf2m.c208 static void bn_GF2m_mul_2x2(BN_ULONG *r, const BN_ULONG a1, const BN_ULONG a0, const BN_ULONG b1, const BN_ULONG b0) argument
212 bn_GF2m_mul_1x1(r+3, r+2, a1, b1);
214 bn_GF2m_mul_1x1(&m1, &m0, a0 ^ a1, b0 ^ b1);
/barrelfish-master/include/openssl/
H A Dbio.h523 #define BIO_make_bio_pair(b1,b2) (int)BIO_ctrl(b1,BIO_C_MAKE_BIO_PAIR,0,b2)
/barrelfish-master/lib/tommath/pre_gen/
H A Dmpi.c4125 * b = b1 * B**n + b0
4128 a1b1 * B**2n + ((a1 + a0)(b1 + b0) - (a0b0 + a1b1)) * B + a0b0
4133 * (a1+b1)(a0+b0)
4139 * in this function if the a0, a1, b0, or b1 are above the threshold.
7088 b-2 | b-1 | b0 | b1 | b2 | ... | bb | ---->
7857 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
7862 &a0, &a1, &a2, &b0, &b1,
7886 /* b = b2 * B**2 + b1 * B + b0 */
7891 if ((res = mp_copy(b, &b1)) != MP_OKAY) {
7894 mp_rshd(&b1,
[all...]
/barrelfish-master/include/vm/
H A Duma_core.c718 uma_bucket_t b1, b2; local
723 b1 = b2 = NULL;
732 b1 = cache->uc_allocbucket;
745 if (b1)
746 bucket_free(zone, b1, NULL);
/barrelfish-master/usr/eclipseclp/config/
H A Dconfig.sub417 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)

Completed in 299 milliseconds

12