Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 25 of 142) sorted by relevance

123456

/illumos-gate/usr/src/lib/libsqlite/test/
H A Dbtree.test29 set rc [catch {btree_open test1.bt} ::b1]
39 lindex [btree_pager_stats $::b1] 1
52 set rc [catch {btree_begin_transaction $::b1} msg]
56 lindex [btree_pager_stats $::b1] 1
59 set rc [catch {btree_cursor $::b1 2 1} ::c1]
78 set rc [catch {btree_commit $::b1} msg]
85 lindex [btree_pager_stats $::b1] 1
91 set rc [catch {btree_cursor $::b1 2 1} ::c1]
111 lindex [btree_pager_stats $::b1] 1
117 btree_begin_transaction $::b1
[all …]
H A Dbtree3rb.test34 set b1 [btree_open :memory:]
35 btree_begin_transaction $::b1
47 btree_clear_table $::b1 2
48 set ::c1 [btree_cursor $::b1 2 1]
54 # btree_tree_dump $::b1 2
79 btree_rollback $::b1
80 #btree_pager_ref_dump $::b1
81 btree_close $::b1
H A Dbtree3.test36 set b1 [btree_open test1.bt]
37 btree_begin_transaction $::b1
49 btree_clear_table $::b1 2
50 set ::c1 [btree_cursor $::b1 2 1]
56 # btree_tree_dump $::b1 2
81 btree_rollback $::b1
82 btree_pager_ref_dump $::b1
83 btree_close $::b1
H A Dbtree4.test31 set b1 [btree_open test1.bt]
32 btree_begin_transaction $::b1
41 btree_clear_table $::b1 2
42 set ::c1 [btree_cursor $::b1 2 1]
93 btree_rollback $::b1
94 btree_pager_ref_dump $::b1
95 btree_close $::b1
H A Dbtree4rb.test29 set b1 [btree_open :memory:]
30 btree_begin_transaction $::b1
39 btree_clear_table $::b1 2
40 set ::c1 [btree_cursor $::b1 2 1]
91 btree_rollback $::b1
92 btree_close $::b1
/illumos-gate/usr/src/cmd/eqn/
H A Dshift.c21 int shval, d1, h1, b1, h2, b2; in bshiftb() local
29 b1 = ebase[p1]; in bshiftb()
46 if (d1+b1 > h2) /* move little sub down */ in bshiftb()
47 shval = b1-b2; in bshiftb()
48 ebase[yyval] = b1 + max(0, h2-b1-d1); in bshiftb()
49 eht[yyval] = h1 + max(0, h2-b1-d1); in bshiftb()
63 ebase[yyval] = b1; in bshiftb()
65 shval = -VERT((4 * (h1-b1)) / 10) - b2; in bshiftb()
66 if (VERT(4*(h1-b1)/10) + h2 < h1-b1) /* raise little super */ in bshiftb()
69 if (VERT(1) + h2 < h1-b1) /* raise little super */ in bshiftb()
[all …]
H A Dfromto.c20 int b, h1, b1, pss; in fromto() local
24 b1 = ebase[p1]; in fromto()
46 eht[p2]-ebase[p2]+b1, yyval, p2, pss, p2, EFFPS(ps)); in fromto()
48 yyval, p2, -(eht[p2]-ebase[p2]+b1)); in fromto()
60 -(h1-b1+ebase[p3]), yyval, p3, pss, p3, EFFPS(ps), in fromto()
61 yyval, p3, (h1-b1+ebase[p3])); in fromto()
64 ebase[yyval] = b + b1; in fromto()
H A Dparen.c24 int n, m, h1, j, b1, v; in paren() local
25 h1 = eht[p1]; b1 = ebase[p1]; in paren()
31 n = max(b1+VERT(1), h1-b1-VERT(1)) / VERT(1); in paren()
44 ebase[yyval] = b1 + (eht[yyval]-h1)/2; in paren()
45 v = b1 - h1/2 + VERT(EM(0.4, ps)); in paren()
51 v = b1 - h1/2 + VERT(1); in paren()
/illumos-gate/usr/src/tools/smatch/src/
H A Dsort.c117 merge_block_seqs (struct ptr_list *b1, int n, in merge_block_seqs() argument
124 struct ptr_list *newhead = b1; in merge_block_seqs()
140 while (b1->nr == 0 || in merge_block_seqs()
141 cmp (PTR_ENTRY_NOTAG(b1, b1->nr - 1), PTR_ENTRY_NOTAG(b2,0)) < 0) { in merge_block_seqs()
144 b1 = b1->next; in merge_block_seqs()
152 const void *d1 = PTR_ENTRY_NOTAG(b1,i1); in merge_block_seqs()
155 assert (i1 >= 0 && i1 < b1->nr); in merge_block_seqs()
157 assert (b1 != b2); in merge_block_seqs()
165 if (++i1 >= b1->nr) { in merge_block_seqs()
167 FLUSH_TO(b1); in merge_block_seqs()
[all …]
H A Dcse.c302 struct basic_block *b1, *b2, *common; in try_to_cse() local
308 b1 = i1->bb; in try_to_cse()
315 if (b1 == b2) { in try_to_cse()
317 FOR_EACH_PTR(b1->insns, insn) { in try_to_cse()
323 warning(b1->pos, "Whaa? unable to find CSE instructions"); in try_to_cse()
326 if (domtree_dominates(b1, b2)) in try_to_cse()
329 if (domtree_dominates(b2, b1)) in try_to_cse()
333 common = trivial_common_parent(b1, b2); in try_to_cse()
336 remove_instruction(&b1->insns, i1, 1); in try_to_cse()
H A Dflowgraph.c89 struct basic_block *b1, struct basic_block *b2) in intersect_dom() argument
91 int f1 = b1->postorder_nr, f2 = b2->postorder_nr; in intersect_dom()
94 b1 = doms[f1]; in intersect_dom()
95 f1 = b1->postorder_nr; in intersect_dom()
102 return b1; in intersect_dom()
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_fletcher.c32 uint64_t a0, b0, a1, b1; in fletcher_2_native() local
34 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native()
38 b1 += a1; in fletcher_2_native()
41 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_native()
49 uint64_t a0, b0, a1, b1; in fletcher_2_byteswap() local
51 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap()
55 b1 += a1; in fletcher_2_byteswap()
58 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_byteswap()
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dfletcher.c32 uint64_t a0, b0, a1, b1; in fletcher_2_native() local
34 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native()
38 b1 += a1; in fletcher_2_native()
41 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_native()
50 uint64_t a0, b0, a1, b1; in fletcher_2_byteswap() local
52 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap()
56 b1 += a1; in fletcher_2_byteswap()
59 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_byteswap()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/
H A Dmemcmp.c35 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/contrib/bhyve/dev/usb/
H A Dusb_endian.h98 #define USETW2(w,b1,b0) do { \ argument
100 (w)[1] = (uint8_t)(b1); \
103 #define USETW4(w,b3,b2,b1,b0) do { \ argument
105 (w)[1] = (uint8_t)(b1); \
110 #define USETW8(w,b7,b6,b5,b4,b3,b2,b1,b0) do { \ argument
112 (w)[1] = (uint8_t)(b1); \
/illumos-gate/usr/src/test/zfs-tests/tests/functional/projectquota/
H A Dprojecttree_002_pos.ksh65 log_must mkdir $PRJDIR/b1
72 log_must mkdir $PRJDIR/b1/a2
73 log_must mkdir $PRJDIR/b1/b2
74 log_must touch $PRJDIR/b1/c2
80 log_must mkdir $PRJDIR/b1/a2/a3
91 log_must zfs project -s $PRJDIR/b1/a2
/illumos-gate/usr/src/common/unicode/
H A Du8_textprep.c149 #define U8_PUT_3BYTES_INTO_UTF32(u, b1, b2, b3) \ argument
150 (u) = ((uint32_t)(b1) & 0x0F) << 12 | ((uint32_t)(b2) & 0x3F) << 6 | \
467 uint16_t b1 = 0; in do_case_conv() local
489 b1 = u8s[0] = s[0]; in do_case_conv()
508 b1 = u8_common_b1_tbl[uv][b1]; in do_case_conv()
509 if (b1 == U8_TBL_ELEMENT_NOT_DEF) in do_case_conv()
512 b2 = u8_case_common_b2_tbl[uv][b1][b2]; in do_case_conv()
697 uint16_t b1 = 0; in combining_class() local
713 b1 = s[0]; in combining_class()
719 b1 = u8_common_b1_tbl[uv][b1]; in combining_class()
[all …]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DIANACharCode.java274 byte b0 = 0, b1 = 0, b2 = 0, b3 = 0; in unescapeChar()
278 b1 = (byte) ((code >> 8) & 0xFF); in unescapeChar()
288 b[1] = b1; in unescapeChar()
297 if (b1 != 0 || b2 != 0) { in unescapeChar()
319 b[1] = b1; in unescapeChar()
321 } else if (b1 != 0) { in unescapeChar()
323 b[1] = b1; in unescapeChar()
/illumos-gate/usr/src/common/crypto/ecc/
H A Decl_gf.c647 mp_digit b0 = 0, b1 = 0, b2 = 0; in ec_GFp_sub_3() local
666 b1 = MP_DIGIT(b,1); in ec_GFp_sub_3()
674 MP_SUB_BORROW(r1, b1, r1, borrow, borrow); in ec_GFp_sub_3()
684 : "r" (b0), "r" (b1), "r" (b2), in ec_GFp_sub_3()
693 b1 = MP_DIGIT(&meth->irr,1); in ec_GFp_sub_3()
697 MP_ADD_CARRY(b1, r1, r1, borrow, borrow); in ec_GFp_sub_3()
705 : "r" (b0), "r" (b1), "r" (b2), in ec_GFp_sub_3()
735 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0; in ec_GFp_sub_4() local
760 b1 = MP_DIGIT(b,1); in ec_GFp_sub_4()
768 MP_SUB_BORROW(r1, b1, r1, borrow, borrow); in ec_GFp_sub_4()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/dis/i386/
H A D32.avx512.out100 libdis_test+0x1be: 62 f1 d5 89 55 b1 vandnpd 0x42(%ecx),%xmm5,%xmm6{%k1}{z}
112 libdis_test+0x200: 62 f1 54 89 55 b1 vandnps 0x42(%ecx),%xmm5,%xmm6{%k1}{z}
124 libdis_test+0x242: 62 f1 d5 89 54 b1 vandpd 0x42(%ecx),%xmm5,%xmm6{%k1}{z}
136 libdis_test+0x284: 62 f1 54 89 54 b1 vandps 0x42(%ecx),%xmm5,%xmm6{%k1}{z}
148 libdis_test+0x2c6: 62 f1 55 08 db b1 vpandd 0x42(%ecx),%xmm5,%xmm6
160 libdis_test+0x308: 62 f1 d5 08 db b1 vpandq 0x42(%ecx),%xmm5,%xmm6
172 libdis_test+0x34a: 62 f1 55 08 df b1 vpandnd 0x42(%ecx),%xmm5,%xmm6
184 libdis_test+0x38c: 62 f1 d5 08 df b1 vpandnq 0x42(%ecx),%xmm5,%xmm6
196 libdis_test+0x3ce: 62 f1 d5 89 56 b1 vorpd 0x42(%ecx),%xmm5,%xmm6{%k1}{z}
204 libdis_test+0x3fa: 62 f1 d5 48 56 b1 vorpd 0x42(%ecx),%zmm5,%zmm6
[all …]
H A D64.avx512.out165 libdis_test+0x326: 62 f1 d5 89 55 b1 vandnpd 0x42(%rcx),%xmm5,%xmm6{%k1}{z}
177 libdis_test+0x368: 62 f1 54 89 55 b1 vandnps 0x42(%rcx),%xmm5,%xmm6{%k1}{z}
189 libdis_test+0x3aa: 62 f1 d5 89 54 b1 vandpd 0x42(%rcx),%xmm5,%xmm6{%k1}{z}
201 libdis_test+0x3ec: 62 f1 54 89 54 b1 vandps 0x42(%rcx),%xmm5,%xmm6{%k1}{z}
213 libdis_test+0x42e: 62 f1 55 08 db b1 vpandd 0x42(%rcx),%xmm5,%xmm6
225 libdis_test+0x470: 62 f1 d5 08 db b1 vpandq 0x42(%rcx),%xmm5,%xmm6
237 libdis_test+0x4b2: 62 f1 55 08 df b1 vpandnd 0x42(%rcx),%xmm5,%xmm6
249 libdis_test+0x4f4: 62 f1 d5 08 df b1 vpandnq 0x42(%rcx),%xmm5,%xmm6
261 libdis_test+0x536: 62 f1 d5 89 56 b1 vorpd 0x42(%rcx),%xmm5,%xmm6{%k1}{z}
269 libdis_test+0x562: 62 f1 d5 48 56 b1 vorpd 0x42(%rcx),%zmm5,%zmm6
[all …]
/illumos-gate/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng_entp_setup.c311 int b0, b1, b2; in n2rng_noise_gen_preferred() local
346 for (b1 = 0; b1 < N2RNG_NBIASES; b1++) { in n2rng_noise_gen_preferred()
347 if (b0 == b1) continue; in n2rng_noise_gen_preferred()
348 candidates[1] = &rng->n_perftable[1][b1]; in n2rng_noise_gen_preferred()
352 if (b0 == b2 || b1 == b2) continue; in n2rng_noise_gen_preferred()
360 ENCODEBIAS(1, b1) | in n2rng_noise_gen_preferred()
/illumos-gate/usr/src/boot/common/
H A Dutil.h38 int memcmp(const void *b1, const void *b2, size_t len);
42 #define bcmp(b1, b2, len) (memcmp((b1), (b2), (len)) != 0) argument
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Disns_pdu.h39 uint8_t *b1 = (uint8_t *)(OP); \
41 b1 += (8 + (OP)->attr_len); \
42 (OP) = (isns_tlv_t *)b1; \
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dattributes.sh173 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"

123456