Home
last modified time | relevance | path

Searched refs:rawlen (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzcp_change_key.c64 uint_t rawlen = 0; in zcp_synctask_change_key_create_params() local
87 rawlen = keylen; in zcp_synctask_change_key_create_params()
97 rawlen = sizeof (rawkey); in zcp_synctask_change_key_create_params()
106 fnvlist_add_uint8_array(hidden_args, "wkeydata", rawkey, rawlen); in zcp_synctask_change_key_create_params()
/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca_3des.c166 int rawlen; in dca_3desupdate() local
173 rawlen = dca_length(in) + des_ctx->dr_ctx.residlen; in dca_3desupdate()
175 len = ROUNDDOWN(rawlen, DESBLOCK); in dca_3desupdate()
216 (rawlen % DESBLOCK) - des_ctx->dr_ctx.residlen, in dca_3desupdate()
224 des_ctx->dr_ctx.residlen = rawlen % DESBLOCK; in dca_3desupdate()
247 rawlen % DESBLOCK, des_ctx->dr_ctx.resid)) != CRYPTO_SUCCESS) { in dca_3desupdate()
254 des_ctx->dr_ctx.residlen = rawlen % DESBLOCK; in dca_3desupdate()
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dtn_ipopt.c1270 uint_t rawlen; in tsol_prepend_option_v6() local
1279 rawlen = optbuf[1] + 2; /* Add 2 for the option type, option length */ in tsol_prepend_option_v6()
1291 delta = optlen = (rawlen + 7) & ~7; in tsol_prepend_option_v6()
1292 pad_len = optlen - rawlen; in tsol_prepend_option_v6()
1293 pad_position = ip6hbh + 2 + rawlen; in tsol_prepend_option_v6()
1311 delta = hbhlen = (2 + rawlen + 7) & ~7; /* +2 for nxthdr, len */ in tsol_prepend_option_v6()
1312 pad_len = hbhlen - (2 + rawlen); in tsol_prepend_option_v6()
1313 pad_position = ip6hbh + 2 + rawlen; in tsol_prepend_option_v6()
1327 bcopy(optbuf, ip6hbh + 2, rawlen); in tsol_prepend_option_v6()
/illumos-gate/usr/src/lib/libdevinfo/
H A Ddevinfo_prop_decode.c961 di_slot_names_decode(uchar_t *rawdata, int rawlen, in di_slot_names_decode() argument
972 if (rawlen < sizeof (slots)) in di_slot_names_decode()
994 maxsp = sp + (rawlen - sizeof (slots)); in di_slot_names_decode()
H A Ddevinfo.c3246 int rawlen, count; in di_prop_slot_names() local
3253 rawlen = di_prop_rawdata(prop, &rawdata); in di_prop_slot_names()
3254 if (rawlen <= 0 || rawdata == NULL) in di_prop_slot_names()
3257 count = di_slot_names_decode(rawdata, rawlen, prop_data); in di_prop_slot_names()
3296 int rawlen, count; in di_prom_prop_slot_names() local
3299 rawlen = di_prom_prop_data(prom_prop, &rawdata); in di_prom_prop_slot_names()
3300 if (rawlen <= 0 || rawdata == NULL) in di_prom_prop_slot_names()
3303 count = di_slot_names_decode(rawdata, rawlen, prop_data); in di_prom_prop_slot_names()
H A Dlibdevinfo.h377 extern int di_slot_names_decode(uchar_t *rawdata, int rawlen,