/titanic_41/usr/src/common/crypto/aes/amd64/ |
H A D | aesopt.h | 552 #define bval(x, n) to_byte((x) >> (8 * (n))) macro 562 #define bval(x, n) to_byte((x) >> (24 - 8 * (n))) macro 573 #define word_out(x, c, v) { ((uint8_t *)(x) + 4 * c)[0] = bval(v, 0); \ 574 ((uint8_t *)(x) + 4 * c)[1] = bval(v, 1); \ 575 ((uint8_t *)(x) + 4 * c)[2] = bval(v, 2); \ 576 ((uint8_t *)(x) + 4 * c)[3] = bval(v, 3); } 697 box[bval(vf(x, 0, c), rf(0, c))], \ 698 box[bval(vf(x, 1, c), rf(1, c))], \ 699 box[bval(vf(x, 2, c), rf(2, c))], \ 700 box[bval(vf(x, 3, c), rf(3, c))]) [all …]
|
/titanic_41/usr/src/lib/libtnf/ |
H A D | access.c | 126 caddr_t val, nval, bval, blim; in tnf_get_next_record() local 149 bval = (caddr_t)bhdr; in tnf_get_next_record() 150 blim = bval + bytes; in tnf_get_next_record() 173 while ((bval += tnf->block_size) < tnf->file_end) in tnf_get_next_record() 176 if (*(tnf_ref32_t *)bval != TNF_NULL) in tnf_get_next_record() 178 return (RECORD_DATUM(tnf, (tnf_ref32_t *)bval)); in tnf_get_next_record()
|
/titanic_41/usr/src/lib/libadutils/common/ |
H A D | adutils.c | 110 adutils_getsid(BerValue *bval, adutils_sid_t *sidp) in adutils_getsid() argument 130 if (bval->bv_len > 8 && bval->bv_val[0] == 0x01 && in adutils_getsid() 131 bval->bv_len == 1 + 1 + 6 + bval->bv_val[1] * 4) { in adutils_getsid() 132 v = (uchar_t *)bval->bv_val; in adutils_getsid() 357 convert_bval2sid(BerValue *bval, uint32_t *rid) in convert_bval2sid() argument 361 if (adutils_getsid(bval, &sid) < 0) in convert_bval2sid() 380 adutils_bv_objsid2sidstr(BerValue *bval, uint32_t *rid) in adutils_bv_objsid2sidstr() argument 384 if (bval == NULL) in adutils_bv_objsid2sidstr() 387 if ((sid = convert_bval2sid(bval, rid)) == NULL) in adutils_bv_objsid2sidstr() 394 adutils_sid_ber2str(BerValue *bval) in adutils_sid_ber2str() argument [all …]
|
H A D | libadutils.h | 168 extern char *adutils_bv_str(BerValue *bval); 169 extern boolean_t adutils_bv_uint(BerValue *bval, unsigned int *result); 170 extern char *adutils_bv_objsid2sidstr(BerValue *bval,
|
H A D | adutils_impl.h | 156 int adutils_getsid(BerValue *bval, adutils_sid_t *sidp);
|
/titanic_41/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/ |
H A D | rec_get.c | 188 int bval, ch; local 191 bval = t->bt_bval; 195 if ((ch = getc(t->bt_rfp)) == EOF || ch == bval) { 294 int bval; local 298 bval = t->bt_bval; 305 for (data.data = sp; sp < ep && *sp != bval; ++sp);
|
H A D | rec_open.c | 110 t->bt_bval = openinfo->bval;
|
/titanic_41/usr/src/lib/libkmf/ber_der/common/ |
H A D | decode.c | 511 struct berval ***bv, **bvp, *bval; in kmfber_scanf() local 534 bval = va_arg(ap, struct berval *); in kmfber_scanf() 535 rc = ber_get_oid(ber, bval); in kmfber_scanf() 559 bval = va_arg(ap, struct berval *); in kmfber_scanf() 560 (void) kmfber_peek_tag(ber, &bval->bv_len); in kmfber_scanf() 561 rc = kmfber_get_stringa(ber, &bval->bv_val); in kmfber_scanf() 711 bval = va_arg(ap, struct berval *); in kmfber_scanf() 712 if (bval->bv_val) free(bval->bv_val); in kmfber_scanf() 713 (void) memset(bval, 0, sizeof (struct berval)); in kmfber_scanf()
|
/titanic_41/usr/src/lib/libldap5/sources/ldap/ber/ |
H A D | decode.c | 437 struct berval ***bv, **bvp, *bval; in ber_scanf() local 489 bval = va_arg( ap, struct berval * ); in ber_scanf() 490 ber_peek_tag( ber, &bval->bv_len ); in ber_scanf() 491 rc = ber_get_stringa( ber, &bval->bv_val ); in ber_scanf() 634 bval = va_arg( ap, struct berval * ); in ber_scanf() 635 if (bval->bv_val) NSLBERI_FREE(bval->bv_val); in ber_scanf() 636 memset(bval, 0, sizeof(struct berval)); in ber_scanf()
|
H A D | encode.c | 566 struct berval *bval, **bv; in ber_printf() local 608 if( ( bval = va_arg( ap, struct berval * ) ) == NULL ) in ber_printf() 610 if( bval->bv_len == 0 ) { in ber_printf() 613 rc = ber_put_ostring( ber, bval->bv_val, bval->bv_len, in ber_printf()
|
/titanic_41/usr/src/cmd/pools/poolcfg/ |
H A D | poolcfg.l | 194 yylval.bval = 1; 196 yylval.bval = 0;
|
/titanic_41/usr/src/lib/libpool/common/ |
H A D | pool_value.c | 291 uchar_t bval; in pool_value_from_nvpair() local 303 if (nvpair_value_byte(pn, &bval) != 0) { in pool_value_from_nvpair() 307 pool_value_set_bool(pv, bval); in pool_value_from_nvpair()
|
H A D | pool_internal.c | 531 uchar_t bval; in pool_set_active() local 537 (void) pool_value_get_bool(pval, &bval); in pool_set_active() 538 if (bval != 1) { in pool_set_active() 1151 uchar_t bval; in elem_is_tmp() local 1156 (void) pool_value_get_bool(&val, &bval); in elem_is_tmp() 1158 return (bval != 0); in elem_is_tmp()
|
/titanic_41/usr/src/cmd/fs.d/nfs/lib/ |
H A D | smfcfg.c | 253 uint8_t bval; in fs_smf_get_prop() local 329 if (scf_value_get_boolean(val, &bval) != 0) { in fs_smf_get_prop() 333 if (bval == 1) { in fs_smf_get_prop()
|
/titanic_41/usr/src/cmd/cmd-inet/lib/ipmgmtd/ |
H A D | ipmgmt_persist.c | 1626 boolean_t bval = B_TRUE; in ipmgmt_ngz_firstboot_postinstall() local 1631 return (bval); in ipmgmt_ngz_firstboot_postinstall() 1635 bval = (strcmp(strval, IPMGMTD_TRUESTR) == 0 ? in ipmgmt_ngz_firstboot_postinstall() 1647 return (bval); in ipmgmt_ngz_firstboot_postinstall() 1660 boolean_t bval = B_TRUE; in ipmgmt_needs_upgrade() local 1666 bval = B_FALSE; in ipmgmt_needs_upgrade() 1673 return (bval); in ipmgmt_needs_upgrade()
|
/titanic_41/usr/src/lib/libproject/common/ |
H A D | setproject.c | 470 uchar_t bval; in bind_to_pool() local 510 pool_value_get_bool(pvals[0], &bval) != PO_SUCCESS || in bind_to_pool() 511 bval == PO_FALSE) { in bind_to_pool()
|
/titanic_41/usr/src/lib/pyzfs/common/ |
H A D | ioctl.c | 86 boolean_t bval; in nvl2py() local 111 (void) nvpair_value_boolean_value(nvp, &bval); in nvl2py() 112 pyval = Py_BuildValue("i", bval); in nvl2py()
|
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/include/ |
H A D | db.h | 156 u_char bval; /* delimiting byte (variable-length records */ member
|
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/ |
H A D | asn1_encode.c | 39 asn1_octet bval; in asn1_encode_boolean() local 41 bval = val ? 0xFF : 0x00; in asn1_encode_boolean() 43 retval = asn1buf_insert_octet(buf, bval); in asn1_encode_boolean()
|
/titanic_41/usr/src/uts/common/io/aggr/ |
H A D | aggr_grp.c | 2811 uint32_t bval; member 2872 ta[m].bval = ur[j].mpur_min; in aggr_mtu_range_intersection() 2874 ta[m].bval = ur[j].mpur_max; in aggr_mtu_range_intersection() 2885 if ((ta[i].bval > ta[j].bval) || in aggr_mtu_range_intersection() 2886 ((ta[i].bval == ta[j].bval) && in aggr_mtu_range_intersection() 2899 rval[rcount].mpur_min = ta[i].bval; in aggr_mtu_range_intersection() 2902 rval[rcount++].mpur_max = ta[i].bval; in aggr_mtu_range_intersection()
|
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_smb.c | 1967 uchar_t bval; in interpret_default() local 2075 bval = comdata[0]; in interpret_default() 2081 "%s = 0x%.2x", label, bval); in interpret_default() 2084 " %s=0x%x", label, bval); in interpret_default()
|
/titanic_41/usr/src/lib/libdladm/common/ |
H A D | libdlbridge.c | 233 uint8_t bval; in get_boolean() local 241 scf_value_get_boolean(val, &bval) == 0) { in get_boolean() 243 *answer = bval != 0; in get_boolean()
|
/titanic_41/usr/src/lib/libnsl/rpc/ |
H A D | svc.c | 2141 bool_t bval; in __svc_dupcache_debug() local 2145 bval = FALSE; in __svc_dupcache_debug() 2148 if (!bval) { /* ensures bucket printed only once */ in __svc_dupcache_debug() 2150 bval = TRUE; in __svc_dupcache_debug()
|
/titanic_41/usr/src/uts/common/fs/nfs/ |
H A D | nfs4_subr.c | 680 char *aval, *bval; in utf8_compare() local 692 bval = b->utf8string_val; in utf8_compare() 695 ((blen == 0) || (bval == NULL))) in utf8_compare() 699 else if ((blen == 0) || (bval == NULL)) in utf8_compare() 703 cmp = strncmp(aval, bval, mlen); in utf8_compare()
|
/titanic_41/usr/src/lib/pkcs11/pkcs11_softtoken/common/ |
H A D | softAttributeUtil.c | 6617 CK_BBOOL bval; local 6622 bval = FALSE; 6624 bval = TRUE; 6626 if (bval != *((CK_BBOOL *)tmpl_attr->pValue)) { 7025 CK_BBOOL bval; local 7028 bval = TRUE; 7030 bval = FALSE; 7032 if (bval != *((CK_BBOOL *)tmpl_attr->pValue)) {
|