| /src/common/lib/libc/string/ |
| bcmp.c | 92 const uintptr_t *b1, *b2; local 94 b1 = s1; 98 if ((((uintptr_t)b1 | (uintptr_t)b2) & (sizeof(uintptr_t) - 1)) == 0) 102 if (*b1++ != *b2++) 108 c1 = (const unsigned char *)b1;
|
| memcmp.c | 92 const uintptr_t *b1, *b2; local 94 b1 = s1; 98 if ((((uintptr_t)b1 | (uintptr_t)b2) & (sizeof(uintptr_t) - 1)) == 0) 102 if (*b1 != *b2) 104 b1++; 110 c1 = (const unsigned char *)b1;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| using-crash.cc | 35 class b1 { public: int x; }; class 37 class c1 : public b1 40 using b1::x;
|
| /src/external/lgpl3/gmp/dist/mpn/generic/ |
| udiv_w_sdiv.c | 47 mp_limb_t c0, c1, b1; local 71 b1 = d >> 1; /* d/2, between 2^30 and 2^31 - 1 */ 75 if (a1 < b1) /* A < 2^32*b1, so A/2 < 2^31*b1 */ 77 sdiv_qrnnd (q, r, c1, c0, b1); /* (A/2) / (d/2) */ 79 r = 2*r + (a0 & 1); /* Remainder from A/(2*b1) */ 96 else if (c1 < b1) /* So 2^31 <= (A/2)/b1 < 2^32 */ 98 c1 = (b1 - 1) - c1 [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| using-crash.cc | 35 class b1 { public: int x; }; class 37 class c1 : public b1 40 using b1::x;
|
| /src/external/lgpl3/gmp/dist/tests/mpf/ |
| t-pow_ui.c | 30 mpf_t b1, r, r2, limit; local 32 mpf_inits (b1, r, r2, NULL); 41 mpf_set_ui (b1, b); 45 mpf_pow_ui (r, b1, e); 57 mpf_clears (b1, r, r2, limit, NULL);
|
| /src/lib/libc/gdtoa/ |
| strtoIg.c | 43 Bigint *b, *b1; local 58 b1 = Balloc(b->k); 59 if (b1 == NULL) 61 Bcopy(b1, b); 69 b1 = increment(b1); 72 b1->x[0] = 0; 73 b1->x[nw1] = 1L << nb11; 82 if (b1->wds > nw 83 || (nb1 && b1->x[nw1] & 1L << nb1)) [all...] |
| /src/sys/sys/ |
| joystick.h | 12 int b1; member in struct:joystick
|
| /src/tests/usr.bin/xlint/lint1/ |
| msg_102.c | 29 static struct bit_fields_and_bits *b1, *b2; variable in typeref:struct:bit_fields_and_bits 46 return b1->bits == b2->bits;
|
| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| bignum.c | 35 BIGNUM *b1; local 41 b1 = BN_new(); 49 * bytes to choose lengths, which generate b1, b2 and b3. Use three bits 65 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); 66 BN_set_negative(b1, s1); 77 OPENSSL_assert(BN_mod_exp(b4, b1, b2, b3, ctx)); 78 OPENSSL_assert(BN_mod_exp_simple(b5, b1, b2, b3, ctx)); 82 BN_print_fp(stdout, b1); 96 BN_free(b1); [all...] |
| bndiv.c | 25 static BIGNUM *b1; variable 33 b1 = BN_new(); 50 /* s1 and s2 will be the signs for b1 and b2. */ 57 /* We are going to split the buffer in two, sizes l1 and l2, giving b1 and 72 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); 73 BN_set_negative(b1, s1); 83 OPENSSL_assert(BN_div(b3, b4, b1, b2, ctx)); 84 if (BN_is_zero(b1)) 86 else if (BN_is_negative(b1)) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| bn_mp_toom_mul.c | 29 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local 34 &a0, &a1, &a2, &b0, &b1, 58 /* b = b2 * B**2 + b1 * B + b0 */ 63 if ((res = mp_copy(b, &b1)) != MP_OKAY) { 66 mp_rshd(&b1, B); 67 mp_mod_2d(&b1, DIGIT_BIT * B, &b1); 84 /* w1 = (a2 + 2(a1 + 2a0))(b2 + 2(b1 + 2b0)) */ 101 if ((res = mp_add(&tmp2, &b1, &tmp2)) != MP_OKAY) { 115 /* w3 = (a0 + 2(a1 + 2a2))(b0 + 2(b1 + 2b2)) * [all...] |
| /src/crypto/external/bsd/openssl/dist/fuzz/ |
| bignum.c | 36 BIGNUM *b1; local 42 b1 = BN_new(); 50 * bytes to choose lengths, which generate b1, b2 and b3. Use three bits 66 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); 67 BN_set_negative(b1, s1); 78 OPENSSL_assert(BN_mod_exp(b4, b1, b2, b3, ctx)); 79 OPENSSL_assert(BN_mod_exp_simple(b5, b1, b2, b3, ctx)); 83 BN_print_fp(stdout, b1); 97 BN_free(b1); [all...] |
| bndiv.c | 25 static BIGNUM *b1; variable 33 b1 = BN_new(); 50 /* s1 and s2 will be the signs for b1 and b2. */ 57 /* We are going to split the buffer in two, sizes l1 and l2, giving b1 and 72 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); 73 BN_set_negative(b1, s1); 83 OPENSSL_assert(BN_div(b3, b4, b1, b2, ctx)); 84 if (BN_is_zero(b1)) 86 else if (BN_is_negative(b1)) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/fuzz/ |
| bignum.c | 36 BIGNUM *b1; local 42 b1 = BN_new(); 50 * bytes to choose lengths, which generate b1, b2 and b3. Use three bits 65 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); 66 BN_set_negative(b1, s1); 77 OPENSSL_assert(BN_mod_exp(b4, b1, b2, b3, ctx)); 78 OPENSSL_assert(BN_mod_exp_simple(b5, b1, b2, b3, ctx)); 82 BN_print_fp(stdout, b1); 96 BN_free(b1); [all...] |
| bndiv.c | 25 static BIGNUM *b1; variable 33 b1 = BN_new(); 50 /* s1 and s2 will be the signs for b1 and b2. */ 57 /* We are going to split the buffer in two, sizes l1 and l2, giving b1 and 72 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); 73 BN_set_negative(b1, s1); 83 OPENSSL_assert(BN_div(b3, b4, b1, b2, ctx)); 84 if (BN_is_zero(b1)) 86 else if (BN_is_negative(b1)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| EdgeBundles.cpp | 62 unsigned b1 = getBundle(i, true); local 64 if (b1 != b0) 65 Blocks[b1].push_back(i);
|
| /src/external/cddl/osnet/dist/common/zfs/ |
| zfs_fletcher.c | 144 uint64_t a0, b0, a1, b1; local 146 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { 150 b1 += a1; 153 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); 163 uint64_t a0, b0, a1, b1; local 165 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { 169 b1 += a1; 172 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
|
| /src/external/lgpl3/gmp/dist/mpz/ |
| jacobi.c | 110 mp_limb_t b1 = bsrcp[1]; local 111 blow |= b1 << (GMP_NUMB_BITS - btwos); 112 if (bsize == 2 && (b1 >> btwos) == 0) 150 mp_limb_t b1 = bsrcp[1]; local 151 blow |= b1 << (GMP_NUMB_BITS - btwos); 152 if (bsize == 2 && (b1 >> btwos) == 0)
|
| /src/sys/arch/ofppc/stand/ofwboot/ |
| rdb.c | 59 u_long t3, b1; local 62 b1 = dostype & 0x000000ff; 64 adt.fstype = b1; 78 if (b1 == 2) 84 if (b1 == 'S') { 88 if (b1 == 'R')
|
| /src/sys/arch/sun3/dev/ |
| if_ie_sebuf.c | 256 const uint8_t *b1e, *b1 = src; local 265 if ((uint32_t)b1 & 1) { 266 *b2++ = *b1++; 271 sp = (const uint16_t *)b1; 272 b1e = b1 + l;
|
| if_ie_vme.c | 260 const uint8_t *b1e, *b1 = src; local 269 if ((uint32_t)b1 & 1) { 270 *b2++ = *b1++; 275 sp = (const uint16_t *)b1; 276 b1e = b1 + l;
|
| /src/usr.bin/locate/bigram/ |
| locate.bigram.c | 68 u_char b1, b2; /* needed for final sorting */ member in struct:bigram 87 else if (it1->b1 != it2->b1) 88 return it2->b1 - it1->b1; 104 bigrams[i].b1 = i / 256; 134 if (bg->b1 != '\0') 135 fputc(bg->b1, stdout);
|
| /src/usr.sbin/installboot/arch/ |
| next68k.c | 89 uint32_t fp, b0, b1; local 169 b1 = be32toh(next68klabel->cd_boot_blkno[1]); 173 if (b1 > fp) 174 b1 = fp; 175 if (((bootsize / cd_secsize) > b1 - b0) || 176 ((bootsize / cd_secsize) > fp - b1)) { 179 b0 = b1 = NEXT68K_LABEL_SIZE / cd_secsize; 191 b1 = NEXT68K_LABEL_DEFAULTBOOT0_2 / sec_netonb_mult; 192 if (fp < b1) 193 b1 = fp [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/idea/ |
| i_skey.c | 93 long n1, n2, q, r, b1, b2, t; local 101 b1 = 0; 113 b2 = b1 - q * b2; 114 b1 = t;
|