/illumos-gate/usr/src/lib/libast/common/comp/ |
H A D | memcmp.c | 35 register const unsigned char* b1 = (const unsigned char*)ab1; 37 register const unsigned char* e = b1 + n; 39 while (b1 < e) 40 if (*b1++ != *b2++) 41 return(*--b1 - *--b2);
|
/illumos-gate/usr/src/boot/lib/libc/string/ |
H A D | bcmp.c | 42 bcmp(const void *b1, const void *b2, size_t length) argument 48 p1 = (char *)b1;
|
/illumos-gate/usr/src/cmd/eqn/ |
H A D | shift.c | 23 int shval, d1, h1, b1, h2, b2; local 31 b1 = ebase[p1]; 48 if (d1+b1 > h2) /* move little sub down */ 49 shval = b1-b2; 50 ebase[yyval] = b1 + max(0, h2-b1-d1); 51 eht[yyval] = h1 + max(0, h2-b1-d1); 65 ebase[yyval] = b1; 67 shval = -VERT((4 * (h1-b1)) / 10) - b2; 68 if (VERT(4*(h1-b1)/1 114 int effps, h1, h2, h3, b1, b2, b3, subsh, d1, d2, supsh, treg; local [all...] |
H A D | fromto.c | 22 int b, h1, b1, pss; local 26 b1 = ebase[p1]; 48 eht[p2]-ebase[p2]+b1, yyval, p2, pss, p2, EFFPS(ps)); 50 yyval, p2, -(eht[p2]-ebase[p2]+b1)); 62 -(h1-b1+ebase[p3]), yyval, p3, pss, p3, EFFPS(ps), 63 yyval, p3, (h1-b1+ebase[p3])); 66 ebase[yyval] = b + b1;
|
H A D | paren.c | 26 int n, m, h1, j, b1, v; local 27 h1 = eht[p1]; b1 = ebase[p1]; 33 n = max(b1+VERT(1), h1-b1-VERT(1)) / VERT(1); 46 ebase[yyval] = b1 + (eht[yyval]-h1)/2; 47 v = b1 - h1/2 + VERT(EM(0.4, ps)); 53 v = b1 - h1/2 + VERT(1);
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | zfs_fletcher.c | 34 uint64_t a0, b0, a1, b1; local 36 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { 40 b1 += a1; 43 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); 51 uint64_t a0, b0, a1, b1; local 53 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { 57 b1 += a1; 60 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
|
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/ |
H A D | fletcher.c | 32 uint64_t a0, b0, a1, b1; local 34 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { 38 b1 += a1; 41 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); 50 uint64_t a0, b0, a1, b1; local 52 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { 56 b1 += a1; 59 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
|
/illumos-gate/usr/src/cmd/isns/isnsd/ |
H A D | isns_pdu.h | 39 uint8_t *b1 = (uint8_t *)(OP); \ 41 b1 += (8 + (OP)->attr_len); \ 42 (OP) = (isns_tlv_t *)b1; \
|
/illumos-gate/usr/src/boot/sys/boot/common/ |
H A D | util.h | 38 int memcmp(const void *b1, const void *b2, size_t len); 42 #define bcmp(b1, b2, len) (memcmp((b1), (b2), (len)) != 0)
|
H A D | util.c | 47 memcmp(const void *b1, const void *b2, size_t len) argument 51 for (p1 = b1, p2 = b2; len > 0; len--, p1++, p2++) {
|
/illumos-gate/usr/src/common/zfs/ |
H A D | 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);
|
/illumos-gate/usr/src/lib/libc/i386/gen/ |
H A D | strcmp.c | 72 int b1, b2; local 202 b1 = i1; /* save the ints in memory */ 204 str1 = (void *) &b1; /* point at them */
|
/illumos-gate/usr/src/common/mpi/ |
H A D | mp_gf2m-priv.h | 88 /* Compute xor-multiply of two binary polynomials (a1, a0) x (b1, b0) 92 void s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1, 95 /* Compute xor-multiply of two binary polynomials (a2, a1, a0) x (b2, b1, b0) 100 const mp_digit b2, const mp_digit b1, const mp_digit b0); 102 /* Compute xor-multiply of two binary polynomials (a3, a2, a1, a0) x (b3, b2, b1, b0) 107 const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1,
|
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | IANACharCode.java | 274 byte b0 = 0, b1 = 0, b2 = 0, b3 = 0; 278 b1 = (byte) ((code >> 8) & 0xFF); 288 b[1] = b1; 297 if (b1 != 0 || b2 != 0) { 319 b[1] = b1; 321 } else if (b1 != 0) { 323 b[1] = b1;
|
/illumos-gate/usr/src/common/unicode/ |
H A D | u8_textprep.c | 147 #define U8_PUT_3BYTES_INTO_UTF32(u, b1, b2, b3) \ 148 (u) = ((uint32_t)(b1) & 0x0F) << 12 | ((uint32_t)(b2) & 0x3F) << 6 | \ 465 uint16_t b1 = 0; local 487 b1 = u8s[0] = s[0]; 506 b1 = u8_common_b1_tbl[uv][b1]; 507 if (b1 == U8_TBL_ELEMENT_NOT_DEF) 510 b2 = u8_case_common_b2_tbl[uv][b1][b2]; 695 uint16_t b1 = 0; local 711 b1 749 uint16_t b1 = 0; local 971 uint16_t b1 = 0; local [all...] |
/illumos-gate/usr/src/lib/librstp/common/ |
H A D | vector.c | 31 STP_VECT_compare_bridge_id (BRIDGE_ID* b1, BRIDGE_ID* b2) argument 33 if (b1->prio < b2->prio) 36 if (b1->prio > b2->prio) 38 return memcmp (b1->addr, b2->addr, 6);
|
H A D | vector.h | 57 STP_VECT_compare_bridge_id (IN BRIDGE_ID* b1, IN BRIDGE_ID* b2);
|
/illumos-gate/usr/src/uts/common/rpc/ |
H A D | rpcsec_defs.h | 112 #define GSS_BUFFERS_EQUAL(b1, b2) (((b1).length == (b2).length) && \ 113 (bcmp((b1).value, (b2).value, (b1.length)) == 0))
|
/illumos-gate/usr/src/uts/sun4v/io/n2rng/ |
H A D | n2rng_entp_setup.c | 311 int b0, b1, b2; local 328 * word, 2 bits for each: b2:b1:b0. First we set up an 346 for (b1 = 0; b1 < N2RNG_NBIASES; b1++) { 347 if (b0 == b1) continue; 348 candidates[1] = &rng->n_perftable[1][b1]; 352 if (b0 == b2 || b1 == b2) continue; 360 ENCODEBIAS(1, b1) |
|
/illumos-gate/usr/src/common/crypto/ecc/ |
H A D | ecl_gf.c | 621 mp_digit b0 = 0, b1 = 0, b2 = 0; local 637 b1 = MP_DIGIT(b,1); 644 MP_SUB_BORROW(r1, b1, r1, borrow, borrow); 654 : "r" (b0), "r" (b1), "r" (b2), 663 b1 = MP_DIGIT(&meth->irr,1); 667 MP_ADD_CARRY(b1, r1, r1, borrow, borrow); 675 : "r" (b0), "r" (b1), "r" (b2), 705 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0; local 725 b1 = MP_DIGIT(b,1); 732 MP_SUB_BORROW(r1, b1, r 798 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0, b4 = 0; local 866 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0, b4 = 0, b5 = 0; local [all...] |
H A D | ec2_163.c | 186 mp_digit a2 = 0, a1 = 0, a0, b2 = 0, b1 = 0, b0; local 224 b1 = MP_DIGIT(b, 1); 230 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); local 236 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); local 237 s_bmul_3x3(rm, a5 ^ a2, a4 ^ a1, a3 ^ a0, b5 ^ b2, b4 ^ b1,
|
H A D | ec2_193.c | 195 mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0; local 237 b1 = MP_DIGIT(b, 1); 243 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local 249 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local 250 s_bmul_4x4(rm, a3, a6 ^ a2, a5 ^ a1, a4 ^ a0, b3, b6 ^ b2, b5 ^ b1,
|
H A D | ec2_233.c | 213 mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0; local 260 b1 = MP_DIGIT(b, 1); 266 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local 272 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local 274 b6 ^ b2, b5 ^ b1, b4 ^ b0);
|
/illumos-gate/usr/src/lib/libshell/common/tests/ |
H A D | attributes.sh | 173 then b1=aGVsbG8gd29ybGQ= 175 else b1=iIWTk5ZAppaZk4Q= 178 z=$b1 179 typeset -b x=$b1 182 typeset -b -Z5 a=$b1 187 x+=$b1 190 typeset -b -Z20 z=$b1 199 [[ $v1 == "$b1" ]] || err_exit "v1=$v1 should be $b1"
|
/illumos-gate/usr/src/lib/libresolv2/common/isc/ |
H A D | tree.c | 418 int b1, b2; local 436 b1 = p1->bal; 437 if (b1 >= 0) { 441 if (b1 == 0) { 442 MSG("b1 == 0") 447 MSG("b1 != 0") 478 int b1, b2; local 495 b1 = p1->bal; 496 if (b1 <= 0) { 500 if (b1 [all...] |