Symbol: b1
usr/src/boot/common/util.c
47
memcmp(const void *b1, const void *b2, size_t len)
usr/src/boot/common/util.c
51
for (p1 = b1, p2 = b2; len > 0; len--, p1++, p2++) {
usr/src/boot/common/util.h
38
int memcmp(const void *b1, const void *b2, size_t len);
usr/src/boot/common/util.h
42
#define bcmp(b1, b2, len) (memcmp((b1), (b2), (len)) != 0)
usr/src/boot/libsa/string/bcmp.c
42
bcmp(const void *b1, const void *b2, size_t length)
usr/src/boot/libsa/string/bcmp.c
48
p1 = (char *)b1;
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
32
uint64_t a0, b0, a1, b1;
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
34
for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
38
b1 += a1;
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
41
ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
50
uint64_t a0, b0, a1, b1;
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
52
for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
56
b1 += a1;
usr/src/boot/sys/cddl/boot/zfs/fletcher.c
59
ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
usr/src/cmd/awk_xpg4/awk.h
84
#define memcmp(b1, b2, n) bcmp(b1, b2, n)
usr/src/cmd/awk_xpg4/awk.h
86
#define memcpy(b1, b2, n) bcopy(b2, b1, (int)n)
usr/src/cmd/bnu/uudecode.c
429
unsigned char b1 = DEC(*(in++));
usr/src/cmd/bnu/uudecode.c
436
if (!isvalid(b1)) {
usr/src/cmd/bnu/uudecode.c
440
*(out++) = (b0 << 2) | (b1 >> 4);
usr/src/cmd/bnu/uudecode.c
447
*(out++) = (b1 << 4) | (b2 >> 2);
usr/src/cmd/cfgadm/cfgadm.c
2053
cfga_list_data_t *b1, *b2;
usr/src/cmd/cfgadm/cfgadm.c
2056
b1 = *(cfga_list_data_t **)vb1;
usr/src/cmd/cfgadm/cfgadm.c
2060
res = (*(sort_list[i].fld->compare))(b1, b2, CFGA_MATCH_ORDER);
usr/src/cmd/checknr/checknr.c
188
char b1[4];
usr/src/cmd/checknr/checknr.c
231
(void) strncpy(b1, cp, 2);
usr/src/cmd/checknr/checknr.c
232
addmac(b1);
usr/src/cmd/diff/diff.c
1870
char *a1, *b1, *a2;
usr/src/cmd/diff/diff.c
1888
b1 = *pa1 = (char *)malloc(PATH_MAX);
usr/src/cmd/diff/diff.c
1889
while (*b1++ = *a1++)
usr/src/cmd/diff/diff.c
1891
b1[-1] = '/';
usr/src/cmd/diff/diff.c
1892
a1 = b1;
usr/src/cmd/diff/diff.c
1895
a1 = b1;
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
303
int b1 = 0; // first displayed bucket
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
306
for (; (b1 <= b2) && (d.get(b1).getFrequency() == 0); ++b1);
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
309
if (b1 > b2) {
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
314
b1 = 0;
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
317
b1 = QUANTIZE_ZERO_BUCKET - 1;
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
321
if (b1 > 0) --b1;
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
325
for (int i = b1; i <= b2; ++i) {
usr/src/cmd/dtrace/test/cmd/jdtrace/JDTrace.java
335
for (int i = b1; i <= b2; ++i) {
usr/src/cmd/eqn/fromto.c
20
int b, h1, b1, pss;
usr/src/cmd/eqn/fromto.c
24
b1 = ebase[p1];
usr/src/cmd/eqn/fromto.c
46
eht[p2]-ebase[p2]+b1, yyval, p2, pss, p2, EFFPS(ps));
usr/src/cmd/eqn/fromto.c
48
yyval, p2, -(eht[p2]-ebase[p2]+b1));
usr/src/cmd/eqn/fromto.c
60
-(h1-b1+ebase[p3]), yyval, p3, pss, p3, EFFPS(ps),
usr/src/cmd/eqn/fromto.c
61
yyval, p3, (h1-b1+ebase[p3]));
usr/src/cmd/eqn/fromto.c
64
ebase[yyval] = b + b1;
usr/src/cmd/eqn/paren.c
24
int n, m, h1, j, b1, v;
usr/src/cmd/eqn/paren.c
25
h1 = eht[p1]; b1 = ebase[p1];
usr/src/cmd/eqn/paren.c
31
n = max(b1+VERT(1), h1-b1-VERT(1)) / VERT(1);
usr/src/cmd/eqn/paren.c
44
ebase[yyval] = b1 + (eht[yyval]-h1)/2;
usr/src/cmd/eqn/paren.c
45
v = b1 - h1/2 + VERT(EM(0.4, ps));
usr/src/cmd/eqn/paren.c
51
v = b1 - h1/2 + VERT(1);
usr/src/cmd/eqn/shift.c
112
int effps, h1, h2, h3, b1, b2, b3, subsh, d1, d2, supsh, treg;
usr/src/cmd/eqn/shift.c
126
h1 = eht[p1]; b1 = ebase[p1];
usr/src/cmd/eqn/shift.c
136
if (d1+b1 > h2) /* move little sub down */
usr/src/cmd/eqn/shift.c
137
subsh = b1-b2;
usr/src/cmd/eqn/shift.c
139
supsh = -VERT((4*(h1-b1))/10) - b3;
usr/src/cmd/eqn/shift.c
141
if (VERT(4*(h1-b1)/10)+h3 < h1-b1)
usr/src/cmd/eqn/shift.c
145
if (VERT(1)+h3 < h1-b1)
usr/src/cmd/eqn/shift.c
147
supsh = -(h1-b1) + (h3-b3) - d2;
usr/src/cmd/eqn/shift.c
149
eht[yyval] = h1 + max(0, h3-VERT((6*(h1-b1))/10)) + max(0, h2-b1-d1);
usr/src/cmd/eqn/shift.c
151
eht[yyval] = h1 + max(0, h3-VERT(1)) + max(0, h2-b1-d1);
usr/src/cmd/eqn/shift.c
153
ebase[yyval] = b1+max(0, h2-b1-d1);
usr/src/cmd/eqn/shift.c
21
int shval, d1, h1, b1, h2, b2;
usr/src/cmd/eqn/shift.c
29
b1 = ebase[p1];
usr/src/cmd/eqn/shift.c
46
if (d1+b1 > h2) /* move little sub down */
usr/src/cmd/eqn/shift.c
47
shval = b1-b2;
usr/src/cmd/eqn/shift.c
48
ebase[yyval] = b1 + max(0, h2-b1-d1);
usr/src/cmd/eqn/shift.c
49
eht[yyval] = h1 + max(0, h2-b1-d1);
usr/src/cmd/eqn/shift.c
63
ebase[yyval] = b1;
usr/src/cmd/eqn/shift.c
65
shval = -VERT((4 * (h1-b1)) / 10) - b2;
usr/src/cmd/eqn/shift.c
66
if (VERT(4*(h1-b1)/10) + h2 < h1-b1) /* raise little super */
usr/src/cmd/eqn/shift.c
69
if (VERT(1) + h2 < h1-b1) /* raise little super */
usr/src/cmd/eqn/shift.c
71
shval = -(h1-b1) + h2-b2 - d1;
usr/src/cmd/eqn/shift.c
73
eht[yyval] = h1 + max(0, h2-VERT((6*(h1-b1))/10));
usr/src/cmd/fs.d/mount.c
1543
vfsent_t *a1, *b1;
usr/src/cmd/fs.d/mount.c
1547
b1 = *(vfsent_t **)b;
usr/src/cmd/fs.d/mount.c
1549
lcmp = a1->mlevel - b1->mlevel;
usr/src/cmd/fs.d/mount.c
1551
lcmp = a1->order - b1->order;
usr/src/cmd/fs.d/mount.c
1559
vfsent_t *a1, *b1;
usr/src/cmd/fs.d/mount.c
1562
b1 = *(vfsent_t **)b;
usr/src/cmd/fs.d/mount.c
1563
return (a1->order - b1->order);
usr/src/cmd/fs.d/umount.c
968
mountent_t *a1, *b1;
usr/src/cmd/fs.d/umount.c
971
b1 = *(mountent_t **)b;
usr/src/cmd/fs.d/umount.c
972
return (b1->mlevel - a1->mlevel);
usr/src/cmd/isns/isnsd/isns_pdu.h
39
uint8_t *b1 = (uint8_t *)(OP); \
usr/src/cmd/isns/isnsd/isns_pdu.h
41
b1 += (8 + (OP)->attr_len); \
usr/src/cmd/isns/isnsd/isns_pdu.h
42
(OP) = (isns_tlv_t *)b1; \
usr/src/cmd/mdb/common/mdb/mdb_modapi.c
440
uint8_t b1, b2;
usr/src/cmd/mdb/common/mdb/mdb_modapi.c
447
b1 = src[i];
usr/src/cmd/mdb/common/mdb/mdb_modapi.c
450
dst[len - i - 1] = b1;
usr/src/cmd/sdiff/sdiff.c
783
char *a1, *b1, *a2;
usr/src/cmd/sdiff/sdiff.c
788
b1 = pa1 = (char *)malloc(strlen(a1) + strlen(a2) + 2);
usr/src/cmd/sdiff/sdiff.c
789
while (*b1++ = *a1++);
usr/src/cmd/sdiff/sdiff.c
790
b1[-1] = '/';
usr/src/cmd/sdiff/sdiff.c
791
a1 = b1;
usr/src/cmd/sdiff/sdiff.c
794
a1 = b1;
usr/src/common/crypto/aes/amd64/aesopt.h
553
#define bytes2word(b0, b1, b2, b3) \
usr/src/common/crypto/aes/amd64/aesopt.h
555
((uint32_t)(b1) << 8) | (b0))
usr/src/common/crypto/aes/amd64/aesopt.h
563
#define bytes2word(b0, b1, b2, b3) \
usr/src/common/crypto/aes/amd64/aesopt.h
564
(((uint32_t)(b0) << 24) | ((uint32_t)(b1) << 16) | \
usr/src/common/crypto/ecc/ec2_163.c
184
mp_digit a2 = 0, a1 = 0, a0, b2 = 0, b1 = 0, b0;
usr/src/common/crypto/ecc/ec2_163.c
231
b1 = MP_DIGIT(b, 1);
usr/src/common/crypto/ecc/ec2_163.c
238
s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0);
usr/src/common/crypto/ecc/ec2_163.c
244
s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0);
usr/src/common/crypto/ecc/ec2_163.c
245
s_bmul_3x3(rm, a5 ^ a2, a4 ^ a1, a3 ^ a0, b5 ^ b2, b4 ^ b1,
usr/src/common/crypto/ecc/ec2_193.c
193
mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0;
usr/src/common/crypto/ecc/ec2_193.c
246
b1 = MP_DIGIT(b, 1);
usr/src/common/crypto/ecc/ec2_193.c
253
s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0);
usr/src/common/crypto/ecc/ec2_193.c
259
s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0);
usr/src/common/crypto/ecc/ec2_193.c
260
s_bmul_4x4(rm, a3, a6 ^ a2, a5 ^ a1, a4 ^ a0, b3, b6 ^ b2, b5 ^ b1,
usr/src/common/crypto/ecc/ec2_233.c
211
mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0;
usr/src/common/crypto/ecc/ec2_233.c
271
b1 = MP_DIGIT(b, 1);
usr/src/common/crypto/ecc/ec2_233.c
278
s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0);
usr/src/common/crypto/ecc/ec2_233.c
284
s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0);
usr/src/common/crypto/ecc/ec2_233.c
286
b6 ^ b2, b5 ^ b1, b4 ^ b0);
usr/src/common/crypto/ecc/ec2_aff.c
195
int b1, b3, i, l;
usr/src/common/crypto/ecc/ec2_aff.c
254
b1 = MP_GET_BIT(&k, i);
usr/src/common/crypto/ecc/ec2_aff.c
256
if ((b3 == 1) && (b1 == 0)) {
usr/src/common/crypto/ecc/ec2_aff.c
260
} else if ((b3 == 0) && (b1 == 1)) {
usr/src/common/crypto/ecc/ecl_gf.c
647
mp_digit b0 = 0, b1 = 0, b2 = 0;
usr/src/common/crypto/ecc/ecl_gf.c
666
b1 = MP_DIGIT(b,1);
usr/src/common/crypto/ecc/ecl_gf.c
674
MP_SUB_BORROW(r1, b1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecl_gf.c
684
: "r" (b0), "r" (b1), "r" (b2),
usr/src/common/crypto/ecc/ecl_gf.c
693
b1 = MP_DIGIT(&meth->irr,1);
usr/src/common/crypto/ecc/ecl_gf.c
697
MP_ADD_CARRY(b1, r1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecl_gf.c
705
: "r" (b0), "r" (b1), "r" (b2),
usr/src/common/crypto/ecc/ecl_gf.c
735
mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0;
usr/src/common/crypto/ecc/ecl_gf.c
760
b1 = MP_DIGIT(b,1);
usr/src/common/crypto/ecc/ecl_gf.c
768
MP_SUB_BORROW(r1, b1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecl_gf.c
780
: "r" (b0), "r" (b1), "r" (b2), "r" (b3),
usr/src/common/crypto/ecc/ecl_gf.c
790
b1 = MP_DIGIT(&meth->irr,1);
usr/src/common/crypto/ecc/ecl_gf.c
794
MP_ADD_CARRY(b1, r1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecl_gf.c
804
: "r" (b0), "r" (b1), "r" (b2), "r" (b3),
usr/src/common/crypto/ecc/ecl_gf.c
834
mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0, b4 = 0;
usr/src/common/crypto/ecc/ecl_gf.c
865
b1 = MP_DIGIT(b,1);
usr/src/common/crypto/ecc/ecl_gf.c
872
MP_SUB_BORROW(r1, b1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecl_gf.c
883
b1 = MP_DIGIT(&meth->irr,1);
usr/src/common/crypto/ecc/ecl_gf.c
886
MP_ADD_CARRY(b1, r1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecl_gf.c
910
mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0, b4 = 0, b5 = 0;
usr/src/common/crypto/ecc/ecl_gf.c
947
b1 = MP_DIGIT(b,1);
usr/src/common/crypto/ecc/ecl_gf.c
954
MP_SUB_BORROW(r1, b1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecl_gf.c
967
b1 = MP_DIGIT(&meth->irr,1);
usr/src/common/crypto/ecc/ecl_gf.c
970
MP_ADD_CARRY(b1, r1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecp_192.c
397
mp_digit b0 = 0, b1 = 0, b2 = 0;
usr/src/common/crypto/ecc/ecp_192.c
417
b1 = MP_DIGIT(b,1);
usr/src/common/crypto/ecc/ecp_192.c
425
MP_SUB_BORROW(r1, b1, r1, borrow, borrow);
usr/src/common/crypto/ecc/ecp_192.c
435
: "r" (b0), "r" (b1), "r" (b2), "0" (r0),
usr/src/common/crypto/ecc/ecp_aff.c
208
int b1, b3, i, l;
usr/src/common/crypto/ecc/ecp_aff.c
267
b1 = MP_GET_BIT(&k, i);
usr/src/common/crypto/ecc/ecp_aff.c
269
if ((b3 == 1) && (b1 == 0)) {
usr/src/common/crypto/ecc/ecp_aff.c
273
} else if ((b3 == 0) && (b1 == 1)) {
usr/src/common/lzma/LzmaEnc.c
781
UInt32 b1 = a1 + GET_PRICE_1a(p->choice2);
usr/src/common/lzma/LzmaEnc.c
796
prices[i] = b1 + RcTree_GetPrice(p->high, kLenNumHighBits, i - kLenNumLowSymbols - kLenNumMidSymbols, ProbPrices);
usr/src/common/mpi/mp_gf2m-priv.h
105
const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1,
usr/src/common/mpi/mp_gf2m-priv.h
90
void s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1,
usr/src/common/mpi/mp_gf2m-priv.h
98
const mp_digit b2, const mp_digit b1, const mp_digit b0);
usr/src/common/mpi/mp_gf2m.c
140
s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1,
usr/src/common/mpi/mp_gf2m.c
145
s_bmul_1x1(r+3, r+2, a1, b1);
usr/src/common/mpi/mp_gf2m.c
147
s_bmul_1x1(&m1, &m0, a0 ^ a1, b0 ^ b1);
usr/src/common/mpi/mp_gf2m.c
159
const mp_digit b2, const mp_digit b1, const mp_digit b0)
usr/src/common/mpi/mp_gf2m.c
164
s_bmul_2x2(zm, a1, a2^a0, b1, b2^b0); /* fill middle 4 words */
usr/src/common/mpi/mp_gf2m.c
165
s_bmul_2x2(r, a1, a0, b1, b0); /* fill bottom 4 words */
usr/src/common/mpi/mp_gf2m.c
183
const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1,
usr/src/common/mpi/mp_gf2m.c
189
s_bmul_2x2(zm, a3^a1, a2^a0, b3^b1, b2^b0); /* fill middle 4 words */
usr/src/common/mpi/mp_gf2m.c
190
s_bmul_2x2(r, a1, a0, b1, b0); /* fill bottom 4 words */
usr/src/common/pnglite/pnglite.c
24
#define PNG_U32(b1, b2, b3, b4) \
usr/src/common/pnglite/pnglite.c
25
(PNG_32b(b1, 24) | PNG_32b(b2, 16) | PNG_32b(b3, 8) | PNG_32b(b4, 0))
usr/src/common/unicode/u8_textprep.c
1007
b1 = u8_composition_b1_tbl[uv][b1];
usr/src/common/unicode/u8_textprep.c
1008
if (b1 == U8_TBL_ELEMENT_NOT_DEF)
usr/src/common/unicode/u8_textprep.c
1011
b2 = u8_composition_b2_tbl[uv][b1][b2];
usr/src/common/unicode/u8_textprep.c
150
#define U8_PUT_3BYTES_INTO_UTF32(u, b1, b2, b3) \
usr/src/common/unicode/u8_textprep.c
151
(u) = ((uint32_t)(b1) & 0x0F) << 12 | ((uint32_t)(b2) & 0x3F) << 6 | \
usr/src/common/unicode/u8_textprep.c
468
uint16_t b1 = 0;
usr/src/common/unicode/u8_textprep.c
490
b1 = u8s[0] = s[0];
usr/src/common/unicode/u8_textprep.c
509
b1 = u8_common_b1_tbl[uv][b1];
usr/src/common/unicode/u8_textprep.c
510
if (b1 == U8_TBL_ELEMENT_NOT_DEF)
usr/src/common/unicode/u8_textprep.c
513
b2 = u8_case_common_b2_tbl[uv][b1][b2];
usr/src/common/unicode/u8_textprep.c
698
uint16_t b1 = 0;
usr/src/common/unicode/u8_textprep.c
714
b1 = s[0];
usr/src/common/unicode/u8_textprep.c
720
b1 = u8_common_b1_tbl[uv][b1];
usr/src/common/unicode/u8_textprep.c
721
if (b1 == U8_TBL_ELEMENT_NOT_DEF)
usr/src/common/unicode/u8_textprep.c
724
b2 = u8_combining_class_b2_tbl[uv][b1][b2];
usr/src/common/unicode/u8_textprep.c
752
uint16_t b1 = 0;
usr/src/common/unicode/u8_textprep.c
779
b1 = U8_HANGUL_JAMO_L_FIRST + u1 / U8_HANGUL_VT_COUNT;
usr/src/common/unicode/u8_textprep.c
784
U8_SAVE_HANGUL_AS_UTF8(u8s, 0, 1, 2, b1);
usr/src/common/unicode/u8_textprep.c
830
b1 = u8s[0] = s[0];
usr/src/common/unicode/u8_textprep.c
853
b1 = u8_common_b1_tbl[uv][b1];
usr/src/common/unicode/u8_textprep.c
854
if (b1 == U8_TBL_ELEMENT_NOT_DEF)
usr/src/common/unicode/u8_textprep.c
857
b2 = u8_decomp_b2_tbl[uv][b1][b2];
usr/src/common/unicode/u8_textprep.c
929
b1 = u8_decomp_final_tbl[uv][b3_base + start_id];
usr/src/common/unicode/u8_textprep.c
938
if (b1 < U8_DECOMP_BOTH)
usr/src/common/unicode/u8_textprep.c
943
if (b1 == U8_DECOMP_BOTH) {
usr/src/common/unicode/u8_textprep.c
953
if (b1 == U8_DECOMP_BOTH) {
usr/src/common/unicode/u8_textprep.c
956
} else if (b1 == U8_DECOMP_CANONICAL) {
usr/src/common/unicode/u8_textprep.c
976
uint16_t b1 = 0;
usr/src/common/unicode/u8_textprep.c
995
b1 = s[0];
usr/src/common/zfs/zfs_fletcher.c
255
uint64_t a0, b0, a1, b1;
usr/src/common/zfs/zfs_fletcher.c
260
b1 = zcp->zc_word[3];
usr/src/common/zfs/zfs_fletcher.c
266
b1 += a1;
usr/src/common/zfs/zfs_fletcher.c
269
ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
usr/src/common/zfs/zfs_fletcher.c
288
uint64_t a0, b0, a1, b1;
usr/src/common/zfs/zfs_fletcher.c
293
b1 = zcp->zc_word[3];
usr/src/common/zfs/zfs_fletcher.c
299
b1 += a1;
usr/src/common/zfs/zfs_fletcher.c
302
ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
32
uint64_t a0, b0, a1, b1;
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
34
for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
38
b1 += a1;
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
41
ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
49
uint64_t a0, b0, a1, b1;
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
51
for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
55
b1 += a1;
usr/src/grub/grub-0.97/stage2/zfs_fletcher.c
58
ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1);
usr/src/lib/gss_mechs/mech_dh/backend/mech/context_establish.c
100
if (b1->length != b2->length)
usr/src/lib/gss_mechs/mech_dh/backend/mech/context_establish.c
102
if (b1->length == 0)
usr/src/lib/gss_mechs/mech_dh/backend/mech/context_establish.c
104
if (b1->value == b2->value)
usr/src/lib/gss_mechs/mech_dh/backend/mech/context_establish.c
106
if (b1->value == 0 || b2->value == 0)
usr/src/lib/gss_mechs/mech_dh/backend/mech/context_establish.c
109
return (memcmp(b1->value, b2->value, b1->length) == 0);
usr/src/lib/gss_mechs/mech_dh/backend/mech/context_establish.c
98
gss_buffer_cmp(gss_buffer_t b1, gss_buffer_t b2)
usr/src/lib/libc/i386/gen/strcmp.c
200
b1 = i1; /* save the ints in memory */
usr/src/lib/libc/i386/gen/strcmp.c
202
str1 = (void *) &b1; /* point at them */
usr/src/lib/libc/i386/gen/strcmp.c
70
int b1, b2;
usr/src/lib/libdisasm/common/dis_s390x.c
2212
B[inst->rsl_a.b1]);
usr/src/lib/libdisasm/common/dis_s390x.c
2275
(void) snprintf(buf, buflen, "%u(%s),%u", d1, B[inst->si.b1],
usr/src/lib/libdisasm/common/dis_s390x.c
2284
val_4_8(inst->sil.d1h, inst->sil.d1l), B[inst->sil.b1],
usr/src/lib/libdisasm/common/dis_s390x.c
2294
B[inst->siy.b1], inst->siy.i2);
usr/src/lib/libdisasm/common/dis_s390x.c
2326
d1, inst->ss_a.l + 1, B[inst->ss_a.b1],
usr/src/lib/libdisasm/common/dis_s390x.c
2340
d1, inst->ss_b.l1 + 1, B[inst->ss_b.b1],
usr/src/lib/libdisasm/common/dis_s390x.c
2354
d1, inst->ss_c.l1, B[inst->ss_c.b1],
usr/src/lib/libdisasm/common/dis_s390x.c
2368
d1, R[inst->ss_d.r1], B[inst->ss_d.b1],
usr/src/lib/libdisasm/common/dis_s390x.c
2396
d1, B[inst->ss_f.b1], d2, inst->ss_f.l2,
usr/src/lib/libdisasm/common/dis_s390x.c
2408
d1, B[inst->sse.b1], d2, B[inst->sse.b2]);
usr/src/lib/libdisasm/common/dis_s390x.c
2419
d1, B[inst->ssf.b1],
usr/src/lib/libdisasm/common/dis_s390x.c
321
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
442
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
447
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
454
BITFLD(b1, dl1h);
usr/src/lib/libdisasm/common/dis_s390x.c
475
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
483
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
491
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
499
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
515
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
522
BITFLD(b1, d1h);
usr/src/lib/libdisasm/common/dis_s390x.c
530
BITFLD(b1, d1h);
usr/src/lib/libdiskmgt/common/drive.c
1271
b0(sizeof (buff)), b1(sizeof (buff)));
usr/src/lib/libm/common/R/besself.c
492
s = b1[0] + z * (b1[1] + z * (b1[2] + z * (b1[3] + z * b1[4])));
usr/src/lib/libmvec/common/__vlog.c
664
double b0, b1, b2, b3;
usr/src/lib/libmvec/common/__vlog.c
753
b1 = (s1 * s1) * (mhalf + s1 * (P3 + s1 * (P4 +
usr/src/lib/libmvec/common/__vlog.c
764
(n1 * ln2lo + TBL[i1+3]) + b1));
usr/src/lib/libnisdb/ldap_xdr.c
687
void *b1, *b2;
usr/src/lib/libnisdb/ldap_xdr.c
715
b1 = am(myself, l1);
usr/src/lib/libnisdb/ldap_xdr.c
717
if (b1 == 0 || b2 == 0) {
usr/src/lib/libnisdb/ldap_xdr.c
718
sfree(b1);
usr/src/lib/libnisdb/ldap_xdr.c
723
xdrmem_create(&x1, (char *)b1, l1, XDR_ENCODE);
usr/src/lib/libnisdb/ldap_xdr.c
727
ret = (memcmp(b1, b2, l1) == 0);
usr/src/lib/libnisdb/ldap_xdr.c
735
sfree(b1);
usr/src/lib/libresolv2/common/irs/dns_nw.c
409
u_int b1, b2, b3, b4;
usr/src/lib/libresolv2/common/irs/dns_nw.c
413
&b1, &b2, &b3, &b4) != 4)
usr/src/lib/libresolv2/common/irs/dns_nw.c
423
*bp++ = b1;
usr/src/lib/libresolv2/common/isc/tree.c
414
int b1, b2;
usr/src/lib/libresolv2/common/isc/tree.c
432
b1 = p1->bal;
usr/src/lib/libresolv2/common/isc/tree.c
433
if (b1 >= 0) {
usr/src/lib/libresolv2/common/isc/tree.c
437
if (b1 == 0) {
usr/src/lib/libresolv2/common/isc/tree.c
474
int b1, b2;
usr/src/lib/libresolv2/common/isc/tree.c
491
b1 = p1->bal;
usr/src/lib/libresolv2/common/isc/tree.c
492
if (b1 <= 0) {
usr/src/lib/libresolv2/common/isc/tree.c
496
if (b1 == 0) {
usr/src/lib/librstp/common/vector.c
31
STP_VECT_compare_bridge_id (BRIDGE_ID* b1, BRIDGE_ID* b2)
usr/src/lib/librstp/common/vector.c
33
if (b1->prio < b2->prio)
usr/src/lib/librstp/common/vector.c
36
if (b1->prio > b2->prio)
usr/src/lib/librstp/common/vector.c
38
return memcmp (b1->addr, b2->addr, 6);
usr/src/lib/librstp/common/vector.h
57
STP_VECT_compare_bridge_id (IN BRIDGE_ID* b1, IN BRIDGE_ID* b2);
usr/src/lib/libslp/javalib/com/sun/slp/IANACharCode.java
274
byte b0 = 0, b1 = 0, b2 = 0, b3 = 0;
usr/src/lib/libslp/javalib/com/sun/slp/IANACharCode.java
278
b1 = (byte) ((code >> 8) & 0xFF);
usr/src/lib/libslp/javalib/com/sun/slp/IANACharCode.java
288
b[1] = b1;
usr/src/lib/libslp/javalib/com/sun/slp/IANACharCode.java
297
if (b1 != 0 || b2 != 0) {
usr/src/lib/libslp/javalib/com/sun/slp/IANACharCode.java
319
b[1] = b1;
usr/src/lib/libslp/javalib/com/sun/slp/IANACharCode.java
321
} else if (b1 != 0) {
usr/src/lib/libslp/javalib/com/sun/slp/IANACharCode.java
323
b[1] = b1;
usr/src/lib/libslp/javalib/com/sun/slp/ServiceLocationAttribute.java
768
byte b0 = 0, b1 = 0, b2 = 0, b3 = 0;
usr/src/lib/libslp/javalib/com/sun/slp/ServiceLocationAttribute.java
772
b1 = (byte) ((code >> 8) & 0xFF);
usr/src/lib/libslp/javalib/com/sun/slp/ServiceLocationAttribute.java
782
b[1] = b1;
usr/src/lib/libslp/javalib/com/sun/slp/ServiceLocationAttribute.java
787
b[1] = b1;
usr/src/lib/libslp/javalib/com/sun/slp/ServiceLocationAttribute.java
789
} else if (b1 != 0) {
usr/src/lib/libslp/javalib/com/sun/slp/ServiceLocationAttribute.java
791
b[1] = b1;
usr/src/tools/smatch/src/cse.c
302
struct basic_block *b1, *b2, *common;
usr/src/tools/smatch/src/cse.c
308
b1 = i1->bb;
usr/src/tools/smatch/src/cse.c
315
if (b1 == b2) {
usr/src/tools/smatch/src/cse.c
317
FOR_EACH_PTR(b1->insns, insn) {
usr/src/tools/smatch/src/cse.c
323
warning(b1->pos, "Whaa? unable to find CSE instructions");
usr/src/tools/smatch/src/cse.c
326
if (domtree_dominates(b1, b2))
usr/src/tools/smatch/src/cse.c
329
if (domtree_dominates(b2, b1))
usr/src/tools/smatch/src/cse.c
333
common = trivial_common_parent(b1, b2);
usr/src/tools/smatch/src/cse.c
336
remove_instruction(&b1->insns, i1, 1);
usr/src/tools/smatch/src/evaluate.c
1430
struct symbol *b1, *b2;
usr/src/tools/smatch/src/evaluate.c
1442
b1 = examine_pointer_target(t);
usr/src/tools/smatch/src/evaluate.c
1446
if (whitelist_pointers(b1, b2)) {
usr/src/tools/smatch/src/evaluate.c
1463
if (b1->type == SYM_FN)
usr/src/tools/smatch/src/flowgraph.c
102
return b1;
usr/src/tools/smatch/src/flowgraph.c
89
struct basic_block *b1, struct basic_block *b2)
usr/src/tools/smatch/src/flowgraph.c
91
int f1 = b1->postorder_nr, f2 = b2->postorder_nr;
usr/src/tools/smatch/src/flowgraph.c
94
b1 = doms[f1];
usr/src/tools/smatch/src/flowgraph.c
95
f1 = b1->postorder_nr;
usr/src/tools/smatch/src/sort.c
117
merge_block_seqs (struct ptr_list *b1, int n,
usr/src/tools/smatch/src/sort.c
124
struct ptr_list *newhead = b1;
usr/src/tools/smatch/src/sort.c
140
while (b1->nr == 0 ||
usr/src/tools/smatch/src/sort.c
141
cmp (PTR_ENTRY_NOTAG(b1, b1->nr - 1), PTR_ENTRY_NOTAG(b2,0)) < 0) {
usr/src/tools/smatch/src/sort.c
144
b1 = b1->next;
usr/src/tools/smatch/src/sort.c
152
const void *d1 = PTR_ENTRY_NOTAG(b1,i1);
usr/src/tools/smatch/src/sort.c
155
assert (i1 >= 0 && i1 < b1->nr);
usr/src/tools/smatch/src/sort.c
157
assert (b1 != b2);
usr/src/tools/smatch/src/sort.c
165
if (++i1 >= b1->nr) {
usr/src/tools/smatch/src/sort.c
167
FLUSH_TO(b1);
usr/src/tools/smatch/src/sort.c
169
b1 = b1->next;
usr/src/tools/smatch/src/sort.c
172
while (b1 != b2) {
usr/src/tools/smatch/src/sort.c
174
FLUSH_TO(b1);
usr/src/tools/smatch/src/sort.c
175
b1 = b1->next;
usr/src/tools/smatch/src/sort.c
181
} while (b1->nr == 0);
usr/src/tools/smatch/src/sort.c
197
l->next = b1;
usr/src/tools/smatch/src/sort.c
198
l->prev = b1->prev;
usr/src/tools/smatch/src/sort.c
202
if (b1 == newhead) {
usr/src/tools/smatch/src/sort.c
214
DUMP_TO(b1);
usr/src/tools/smatch/src/validation/sm_overflow.c
12
struct buffer b1;
usr/src/tools/smatch/src/validation/sm_overflow.c
15
b1.a.b[10] = 1;
usr/src/uts/common/fs/zfs/lua/lgc.h
80
#define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2))
usr/src/uts/common/io/comstar/port/qlt/qlt.c
6103
uint16_t b1;
usr/src/uts/common/io/comstar/port/qlt/qlt.c
6119
b1 = (uint16_t)b;
usr/src/uts/common/io/comstar/port/qlt/qlt.c
6120
if (((((b1 & 0xfc) + 63) >> 6) + 1) > ((uint16_t)atio[1])) {
usr/src/uts/common/io/comstar/port/qlt/qlt.c
6126
cdb_size, atio[1], ((((b1 & 0xfc) + 63) >> 6) + 1));
usr/src/uts/common/io/comstar/port/qlt/qlt.h
753
#define CHAR_TO_LONG(lsb, b1, b2, msb) \
usr/src/uts/common/io/comstar/port/qlt/qlt.h
754
(uint32_t)(SHORT_TO_LONG(CHAR_TO_SHORT(lsb, b1), \
usr/src/uts/common/io/cxgbe/t4nex/cudbg_lib.c
100
u8 *b = (u8 *)b1;
usr/src/uts/common/io/cxgbe/t4nex/cudbg_lib.c
96
generic_swap(void *a1, void *b1, int size)
usr/src/uts/common/io/emul64_bsd.c
256
emul64_bsd_blkcompare(const void *a1, const void *b1)
usr/src/uts/common/io/emul64_bsd.c
259
blklist_t *b = (blklist_t *)b1;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
1387
uint32_t b1, b2, b3, b4;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
1390
b1 = (version & 0x0000f000) >> 12;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
1395
if (b1 == 0 && b2 == 0) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
1421
(void) snprintf(buffer, len, "%d.%d%d", b1, b2, b3);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
1423
(void) snprintf(buffer, len, "%d.%d%d%c%d", b1, b2, b3, c, b4);
usr/src/uts/common/io/net80211/net80211_crypto_tkip.c
179
ieee80211_read_6(uint8_t b0, uint8_t b1, uint8_t b2,
usr/src/uts/common/io/net80211/net80211_crypto_tkip.c
182
uint32_t iv32 = (b0 << 0) | (b1 << 8) | (b2 << 16) | (b3 << 24);
usr/src/uts/common/io/net80211/net80211_crypto_tkip.c
592
get_le32_split(uint8_t b0, uint8_t b1, uint8_t b2, uint8_t b3)
usr/src/uts/common/io/net80211/net80211_crypto_tkip.c
594
return (b0 | (b1 << 8) | (b2 << 16) | (b3 << 24));
usr/src/uts/common/io/scsi/targets/ses_safte.c
1037
wrbuf16(ses_softc_t *ssc, uchar_t op, uchar_t b1, uchar_t b2,
usr/src/uts/common/io/scsi/targets/ses_safte.c
1064
sdata[1] = b1;
usr/src/uts/common/io/scsi/targets/ses_safte.c
1067
SES_LOG(ssc, SES_CE_DEBUG2, "saf_wrbuf16 %x %x %x %x", op, b1, b2, b3);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
203
uwacom_pad_events_graphire4(usbwcm_state_t *usbwcmp, int b0, int b1, int b4,
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
207
uwacom_event(usbwcmp, EVT_BTN, BTN_MISC_1, b1);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
212
uwacom_tool_events_graphire(usbwcmp, 1, b0 | b1 | b4 | b5 | rel | abs);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
391
int b0, b1, b2, b3, b4, b5, b6, b7;
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
405
b1 = PACKET_BIT(3, 0);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
413
uwacom_event(usbwcmp, EVT_BTN, BTN_MISC_1, b1);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
426
prox = b0 | b1 | b2 | b3 | b4 | b5 | b6 | b7 | b8 | whl;
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
433
b1 = PACKET_BIT(5, 1);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
444
uwacom_event(usbwcmp, EVT_BTN, BTN_MISC_1, b1);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
454
prox = b0 | b1 | b2 | b3 | b4 | b5 | b6 | b7 | rx | ry;
usr/src/uts/common/kiconv/kiconv_sc/kiconv_sc.c
695
gb2312_to_utf8(uchar_t b1, uchar_t b2, uchar_t *ob, uchar_t *obtail,
usr/src/uts/common/kiconv/kiconv_sc/kiconv_sc.c
703
index = b1 * 94 + b2 - 0x3BBF;
usr/src/uts/common/kiconv/kiconv_tc/kiconv_tc.c
701
get_unicode_from_UDA(size_t plane_no, uchar_t b1, uchar_t b2)
usr/src/uts/common/kiconv/kiconv_tc/kiconv_tc.c
711
return (8836 * plane_no + 94 * b1 + b2 + 0xD2611);
usr/src/uts/common/os/mem_config.c
863
overlapping(pfn_t b1, pgcnt_t l1, pfn_t b2, pgcnt_t l2)
usr/src/uts/common/os/mem_config.c
867
e1 = b1 + l1;
usr/src/uts/common/os/mem_config.c
870
return (!(b2 >= e1 || b1 >= e2));
usr/src/uts/common/rpc/rpcsec_defs.h
110
#define GSS_BUFFERS_EQUAL(b1, b2) (((b1).length == (b2).length) && \
usr/src/uts/common/rpc/rpcsec_defs.h
111
(bcmp((b1).value, (b2).value, (b1.length)) == 0))
usr/src/uts/common/sys/fibre-channel/fca/qlc/ql_api.h
2123
#define CHAR_TO_LONG(lsb, b1, b2, msb) \
usr/src/uts/common/sys/fibre-channel/fca/qlc/ql_api.h
2124
(uint32_t)(SHORT_TO_LONG(CHAR_TO_SHORT(lsb, b1), \
usr/src/uts/i86pc/os/timestamp.c
930
const tsc_calibrate_t * const *b1 = b;
usr/src/uts/i86pc/os/timestamp.c
932
const tsc_calibrate_t *r = *b1;
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
311
int b0, b1, b2;
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
346
for (b1 = 0; b1 < N2RNG_NBIASES; b1++) {
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
347
if (b0 == b1) continue;
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
348
candidates[1] = &rng->n_perftable[1][b1];
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
352
if (b0 == b2 || b1 == b2) continue;
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
360
ENCODEBIAS(1, b1) |