/titanic_41/usr/src/cmd/eqn/ |
H A D | shift.c | 23 int shval, d1, h1, b1, h2, b2; in bshiftb() local 33 b2 = ebase[p2]; in bshiftb() 47 shval = - d1 + h2 - b2; in bshiftb() 49 shval = b1-b2; in bshiftb() 67 shval = -VERT((4 * (h1-b1)) / 10) - b2; in bshiftb() 70 shval = -VERT(1) - b2; in bshiftb() 73 shval = -(h1-b1) + h2-b2 - d1; in bshiftb() 114 int effps, h1, h2, h3, b1, b2, b3, subsh, d1, d2, supsh, treg; in shift2() local 129 h2 = eht[p2]; b2 = ebase[p2]; in shift2() 137 subsh = -d1+h2-b2; in shift2() [all …]
|
/titanic_41/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 | \ 466 uint16_t b2 = 0; in do_case_conv() local 483 b2 = u8s[0] = s[0]; in do_case_conv() 488 b2 = u8s[1] = s[1]; in do_case_conv() 510 b2 = u8_case_common_b2_tbl[uv][b1][b2]; in do_case_conv() 511 if (b2 == U8_TBL_ELEMENT_NOT_DEF) in do_case_conv() 515 b3_tbl = u8_toupper_b3_tbl[uv][b2][b3].tbl_id; in do_case_conv() 526 b3_base = u8_toupper_b3_tbl[uv][b2][b3].base; in do_case_conv() 531 b3_tbl = u8_tolower_b3_tbl[uv][b2][b3].tbl_id; in do_case_conv() [all …]
|
/titanic_41/usr/src/lib/libast/common/comp/ |
H A D | memcmp.c | 36 register const unsigned char* b2 = (const unsigned char*)ab2; 40 if (*b1++ != *b2++) 41 return(*--b1 - *--b2);
|
/titanic_41/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() 279 b2 = (byte) ((code >> 16) & 0xFF); in unescapeChar() 289 b[2] = b2; in unescapeChar() 297 if (b1 != 0 || b2 != 0) { in unescapeChar() 316 if (b2 != 0) { in unescapeChar() 318 b[2] = b2; in unescapeChar()
|
H A D | ServiceLocationAttribute.java | 768 byte b0 = 0, b1 = 0, b2 = 0, b3 = 0; in unescapeChar() 773 b2 = (byte) ((code >> 16) & 0xFF); in unescapeChar() 781 b[2] = b2; in unescapeChar() 784 } else if (b2 != 0) { in unescapeChar() 786 b[2] = b2; in unescapeChar()
|
/titanic_41/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 635 b2 = MP_DIGIT(b,2); in ec_GFp_sub_3() 645 MP_SUB_BORROW(r2, b2, r2, borrow, borrow); in ec_GFp_sub_3() 654 : "r" (b0), "r" (b1), "r" (b2), in ec_GFp_sub_3() 662 b2 = MP_DIGIT(&meth->irr,2); in ec_GFp_sub_3() 668 MP_ADD_CARRY(b2, r2, r2, 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 723 b2 = MP_DIGIT(b,2); in ec_GFp_sub_4() 733 MP_SUB_BORROW(r2, b2, r2, 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 222 b2 = MP_DIGIT(b, 2); 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 235 b2 = MP_DIGIT(b, 2); 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 258 b2 = MP_DIGIT(b, 2); 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()
|
H A D | ecp_192.c | 385 mp_digit b0 = 0, b1 = 0, b2 = 0; in ec_GFp_nistp192_sub() local 400 b2 = MP_DIGIT(b,2); in ec_GFp_nistp192_sub() 410 MP_SUB_BORROW(r2, b2, r2, borrow, borrow); in ec_GFp_nistp192_sub() 419 : "r" (b0), "r" (b1), "r" (b2), "0" (r0), in ec_GFp_nistp192_sub()
|
/titanic_41/usr/src/uts/sun4v/io/n2rng/ |
H A D | n2rng_entp_setup.c | 311 int b0, b1, b2; in n2rng_noise_gen_preferred() local 349 for (b2 = 0; b2 < N2RNG_NBIASES; b2++) { in n2rng_noise_gen_preferred() 352 if (b0 == b2 || b1 == b2) continue; in n2rng_noise_gen_preferred() 353 candidates[2] = &rng->n_perftable[2][b2]; in n2rng_noise_gen_preferred() 361 ENCODEBIAS(2, b2); in n2rng_noise_gen_preferred()
|
/titanic_41/usr/src/lib/libc/i386/gen/ |
H A D | strcmp.c | 72 int b1, b2; in strcmp() local 203 b2 = i2; in strcmp() 205 str2 = (void *) &b2; in strcmp()
|
/titanic_41/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_41/usr/src/lib/libresolv2/common/isc/ |
H A D | tree.c | 418 int b1, b2; in bal_L() local 455 b2 = p2->bal; in bal_L() 460 if (b2 == 1) in bal_L() 464 if (b2 == -1) in bal_L() 478 int b1, b2; in bal_R() local 514 b2 = p2->bal; in bal_R() 519 if (b2 == -1) in bal_R() 523 if (b2 == 1) in bal_R()
|
/titanic_41/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_41/usr/src/cmd/dtrace/test/cmd/jdtrace/ |
H A D | JDTrace.java | 304 int b2 = d.size() - 1; // last displayed bucket in printDistribution() local 306 for (; (b1 <= b2) && (d.get(b1).getFrequency() == 0); ++b1); in printDistribution() 309 if (b1 > b2) { in printDistribution() 315 b2 = 2; in printDistribution() 318 b2 = QUANTIZE_ZERO_BUCKET + 1; in printDistribution() 322 for (; (b2 > 0) && (d.get(b2).getFrequency() == 0); --b2); in printDistribution() 323 if (b2 < (d.size() - 1)) ++b2; in printDistribution() 325 for (int i = b1; i <= b2; ++i) { in printDistribution() 335 for (int i = b1; i <= b2; ++i) { in printDistribution()
|
/titanic_41/usr/src/common/mpi/ |
H A D | mp_gf2m-priv.h | 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,
|
H A D | mp_gf2m.c | 161 const mp_digit b2, const mp_digit b1, const mp_digit b0) in s_bmul_3x3() argument 165 s_bmul_1x1(r+5, r+4, a2, b2); /* fill top 2 words */ in s_bmul_3x3() 166 s_bmul_2x2(zm, a1, a2^a0, b1, b2^b0); /* fill middle 4 words */ in s_bmul_3x3() 185 const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1, in s_bmul_4x4() argument 190 s_bmul_2x2(r+4, a3, a2, b3, b2); /* fill top 4 words */ in s_bmul_4x4() 191 s_bmul_2x2(zm, a3^a1, a2^a0, b3^b1, b2^b0); /* fill middle 4 words */ in s_bmul_4x4()
|
/titanic_41/usr/src/cmd/bnu/ |
H A D | uudecode.c | 432 unsigned char b2 = DEC(*(in++)); in outdec() local 445 if (!isvalid(b2)) { in outdec() 449 *(out++) = (b1 << 4) | (b2 >> 2); in outdec() 455 *out = (b2 << 6) | b3; in outdec()
|
/titanic_41/usr/src/lib/libnisdb/ |
H A D | ldap_xdr.c | 688 void *b1, *b2; in sameNisPlusObj() local 717 b2 = am(myself, l2); in sameNisPlusObj() 718 if (b1 == 0 || b2 == 0) { in sameNisPlusObj() 720 sfree(b2); in sameNisPlusObj() 725 xdrmem_create(&x2, (char *)b2, l2, XDR_ENCODE); in sameNisPlusObj() 728 ret = (memcmp(b1, b2, l1) == 0); in sameNisPlusObj() 737 sfree(b2); in sameNisPlusObj()
|
/titanic_41/usr/src/lib/libshell/common/tests/ |
H A D | attributes.sh | 174 b2=aGVsbG8gd29ybGRoZWxsbyB3b3JsZA== 176 b2=iIWTk5ZAppaZk4SIhZOTlkCmlpmThA== 185 [[ $q == $b2 ]] || err_exit 'typeset -b not working with concatination' 188 [[ $x == $b2 ]] || err_exit 'typeset -b not working with append'
|
/titanic_41/usr/src/lib/libmvec/common/ |
H A D | __vlog.c | 664 double b0, b1, b2, b3; in __vlog() local 755 b2 = (s2 * s2) * (mhalf + s2 * (P3 + s2 * (P4 + in __vlog() 767 (n2 * ln2lo + TBL[i2+3]) + b2)); in __vlog()
|
/titanic_41/usr/src/common/crypto/aes/amd64/ |
H A D | aesopt.h | 553 #define bytes2word(b0, b1, b2, b3) \ argument 554 (((uint32_t)(b3) << 24) | ((uint32_t)(b2) << 16) | \ 563 #define bytes2word(b0, b1, b2, b3) \ argument 565 ((uint32_t)(b2) << 8) | (b3))
|
/titanic_41/usr/src/cmd/awk_xpg4/ |
H A D | awk.h | 83 #define memcmp(b1, b2, n) bcmp(b1, b2, n) argument 85 #define memcpy(b1, b2, n) bcopy(b2, b1, (int)n) argument
|
/titanic_41/usr/src/cmd/rexd/ |
H A D | on.c | 65 #define bcmp(b1, b2, len) memcmp(b1, b2, len) argument 67 #define bcopy(b1, b2, len) memcpy(b2, b1, len) argument
|