/titanic_44/usr/src/lib/libsqlite/test/ |
H A D | btree.test | 31 set rc [catch {btree_open test1.bt} ::b1] 41 lindex [btree_pager_stats $::b1] 1 54 set rc [catch {btree_begin_transaction $::b1} msg] 58 lindex [btree_pager_stats $::b1] 1 61 set rc [catch {btree_cursor $::b1 2 1} ::c1] 80 set rc [catch {btree_commit $::b1} msg] 87 lindex [btree_pager_stats $::b1] 1 93 set rc [catch {btree_cursor $::b1 2 1} ::c1] 113 lindex [btree_pager_stats $::b1] 1 119 btree_begin_transaction $::b1 [all …]
|
H A D | btree3.test | 38 set b1 [btree_open test1.bt] 39 btree_begin_transaction $::b1 51 btree_clear_table $::b1 2 52 set ::c1 [btree_cursor $::b1 2 1] 58 # btree_tree_dump $::b1 2 83 btree_rollback $::b1 84 btree_pager_ref_dump $::b1 85 btree_close $::b1
|
H A D | btree3rb.test | 36 set b1 [btree_open :memory:] 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 D | btree4.test | 33 set b1 [btree_open test1.bt] 34 btree_begin_transaction $::b1 43 btree_clear_table $::b1 2 44 set ::c1 [btree_cursor $::b1 2 1] 95 btree_rollback $::b1 96 btree_pager_ref_dump $::b1 97 btree_close $::b1
|
H A D | btree4rb.test | 31 set b1 [btree_open :memory:] 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_close $::b1
|
/titanic_44/usr/src/cmd/eqn/ |
H A D | shift.c | 23 int shval, d1, h1, b1, h2, b2; in bshiftb() local 31 b1 = ebase[p1]; in bshiftb() 48 if (d1+b1 > h2) /* move little sub down */ in bshiftb() 49 shval = b1-b2; in bshiftb() 50 ebase[yyval] = b1 + max(0, h2-b1-d1); in bshiftb() 51 eht[yyval] = h1 + max(0, h2-b1-d1); in bshiftb() 65 ebase[yyval] = b1; in bshiftb() 67 shval = -VERT((4 * (h1-b1)) / 10) - b2; in bshiftb() 68 if (VERT(4*(h1-b1)/10) + h2 < h1-b1) /* raise little super */ in bshiftb() 71 if (VERT(1) + h2 < h1-b1) /* raise little super */ in bshiftb() [all …]
|
H A D | fromto.c | 22 int b, h1, b1, pss; in fromto() local 26 b1 = ebase[p1]; in fromto() 48 eht[p2]-ebase[p2]+b1, yyval, p2, pss, p2, EFFPS(ps)); in fromto() 50 yyval, p2, -(eht[p2]-ebase[p2]+b1)); in fromto() 62 -(h1-b1+ebase[p3]), yyval, p3, pss, p3, EFFPS(ps), in fromto() 63 yyval, p3, (h1-b1+ebase[p3])); in fromto() 66 ebase[yyval] = b + b1; in fromto()
|
H A D | paren.c | 26 int n, m, h1, j, b1, v; in paren() local 27 h1 = eht[p1]; b1 = ebase[p1]; in paren() 33 n = max(b1+VERT(1), h1-b1-VERT(1)) / VERT(1); in paren() 46 ebase[yyval] = b1 + (eht[yyval]-h1)/2; in paren() 47 v = b1 - h1/2 + VERT(EM(0.4, ps)); in paren() 53 v = b1 - h1/2 + VERT(1); in paren()
|
/titanic_44/usr/src/grub/grub-0.97/stage2/ |
H A D | zfs_fletcher.c | 34 uint64_t a0, b0, a1, b1; in fletcher_2_native() local 36 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native() 40 b1 += a1; in fletcher_2_native() 43 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_native() 51 uint64_t a0, b0, a1, b1; in fletcher_2_byteswap() local 53 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap() 57 b1 += a1; in fletcher_2_byteswap() 60 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_byteswap()
|
/titanic_44/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);
|
/titanic_44/usr/src/common/zfs/ |
H A D | zfs_fletcher.c | 139 uint64_t a0, b0, a1, b1; in fletcher_2_native() local 141 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native() 145 b1 += a1; in fletcher_2_native() 148 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_native() 156 uint64_t a0, b0, a1, b1; in fletcher_2_byteswap() local 158 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap() 162 b1 += a1; in fletcher_2_byteswap() 165 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_byteswap()
|
/titanic_44/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | IANACharCode.java | 274 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()
|
/titanic_44/usr/src/common/unicode/ |
H A D | u8_textprep.c | 147 #define U8_PUT_3BYTES_INTO_UTF32(u, b1, b2, b3) \ argument 148 (u) = ((uint32_t)(b1) & 0x0F) << 12 | ((uint32_t)(b2) & 0x3F) << 6 | \ 465 uint16_t b1 = 0; in do_case_conv() local 487 b1 = u8s[0] = s[0]; in do_case_conv() 506 b1 = u8_common_b1_tbl[uv][b1]; in do_case_conv() 507 if (b1 == U8_TBL_ELEMENT_NOT_DEF) in do_case_conv() 510 b2 = u8_case_common_b2_tbl[uv][b1][b2]; in do_case_conv() 695 uint16_t b1 = 0; in combining_class() local 711 b1 = s[0]; in combining_class() 717 b1 = u8_common_b1_tbl[uv][b1]; in combining_class() [all …]
|
/titanic_44/usr/src/common/crypto/ecc/ |
H A D | ecl_gf.c | 621 mp_digit b0 = 0, b1 = 0, b2 = 0; in ec_GFp_sub_3() local 637 b1 = MP_DIGIT(b,1); in ec_GFp_sub_3() 644 MP_SUB_BORROW(r1, b1, r1, borrow, borrow); in ec_GFp_sub_3() 654 : "r" (b0), "r" (b1), "r" (b2), in ec_GFp_sub_3() 663 b1 = MP_DIGIT(&meth->irr,1); in ec_GFp_sub_3() 667 MP_ADD_CARRY(b1, r1, r1, borrow, borrow); in ec_GFp_sub_3() 675 : "r" (b0), "r" (b1), "r" (b2), in ec_GFp_sub_3() 705 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0; in ec_GFp_sub_4() local 725 b1 = MP_DIGIT(b,1); in ec_GFp_sub_4() 732 MP_SUB_BORROW(r1, b1, r1, borrow, borrow); in ec_GFp_sub_4() [all …]
|
H A D | ec2_163.c | 186 mp_digit a2 = 0, a1 = 0, a0, b2 = 0, b1 = 0, b0; in ec_GF2m_163_mul() local 224 b1 = MP_DIGIT(b, 1); in ec_GF2m_163_mul() 230 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); in ec_GF2m_163_mul() 236 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); in ec_GF2m_163_mul() 237 s_bmul_3x3(rm, a5 ^ a2, a4 ^ a1, a3 ^ a0, b5 ^ b2, b4 ^ b1, in ec_GF2m_163_mul()
|
H A D | ec2_193.c | 195 mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0; in ec_GF2m_193_mul() local 237 b1 = MP_DIGIT(b, 1); in ec_GF2m_193_mul() 243 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); in ec_GF2m_193_mul() 249 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); in ec_GF2m_193_mul() 250 s_bmul_4x4(rm, a3, a6 ^ a2, a5 ^ a1, a4 ^ a0, b3, b6 ^ b2, b5 ^ b1, in ec_GF2m_193_mul()
|
H A D | ec2_233.c | 213 mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0; in ec_GF2m_233_mul() local 260 b1 = MP_DIGIT(b, 1); in ec_GF2m_233_mul() 266 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); in ec_GF2m_233_mul() 272 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); in ec_GF2m_233_mul() 274 b6 ^ b2, b5 ^ b1, b4 ^ b0); in ec_GF2m_233_mul()
|
/titanic_44/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"
|
/titanic_44/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; \
|
/titanic_44/usr/src/uts/sun4v/io/n2rng/ |
H A D | n2rng_entp_setup.c | 311 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()
|
/titanic_44/usr/src/uts/common/rpc/ |
H A D | rpcsec_defs.h | 112 #define GSS_BUFFERS_EQUAL(b1, b2) (((b1).length == (b2).length) && \ argument 113 (bcmp((b1).value, (b2).value, (b1.length)) == 0))
|
/titanic_44/usr/src/common/mpi/ |
H A D | mp_gf2m-priv.h | 92 void s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1, 100 const mp_digit b2, const mp_digit b1, const mp_digit b0); 107 const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1,
|
/titanic_44/usr/src/lib/libc/i386/gen/ |
H A D | strcmp.c | 72 int b1, b2; in strcmp() local 202 b1 = i1; /* save the ints in memory */ in strcmp() 204 str1 = (void *) &b1; /* point at them */ in strcmp()
|
/titanic_44/usr/src/lib/librstp/common/ |
H A D | vector.c | 31 STP_VECT_compare_bridge_id (BRIDGE_ID* b1, BRIDGE_ID* b2) in STP_VECT_compare_bridge_id() argument 33 if (b1->prio < b2->prio) in STP_VECT_compare_bridge_id() 36 if (b1->prio > b2->prio) in STP_VECT_compare_bridge_id() 38 return memcmp (b1->addr, b2->addr, 6); in STP_VECT_compare_bridge_id()
|
/titanic_44/usr/src/lib/libresolv2/common/isc/ |
H A D | tree.c | 418 int b1, b2; in bal_L() local 436 b1 = p1->bal; in bal_L() 437 if (b1 >= 0) { in bal_L() 441 if (b1 == 0) { in bal_L() 478 int b1, b2; in bal_R() local 495 b1 = p1->bal; in bal_R() 496 if (b1 <= 0) { in bal_R() 500 if (b1 == 0) { in bal_R()
|