Searched refs:rawlen (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca_3des.c166 int rawlen; local
173 rawlen = dca_length(in) + des_ctx->dr_ctx.residlen;
175 len = ROUNDDOWN(rawlen, DESBLOCK);
216 (rawlen % DESBLOCK) - des_ctx->dr_ctx.residlen,
224 des_ctx->dr_ctx.residlen = rawlen % DESBLOCK;
247 rawlen % DESBLOCK, des_ctx->dr_ctx.resid)) != CRYPTO_SUCCESS) {
254 des_ctx->dr_ctx.residlen = rawlen % DESBLOCK;
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dtn_ipopt.c1267 * rawlen is the length of the label option in bytes, not including
1270 uint_t rawlen; local
1272 uint_t optlen; /* rawlen rounded to an 8 byte multiple */
1279 rawlen = optbuf[1] + 2; /* Add 2 for the option type, option length */
1291 delta = optlen = (rawlen + 7) & ~7;
1292 pad_len = optlen - rawlen;
1293 pad_position = ip6hbh + 2 + rawlen;
1311 delta = hbhlen = (2 + rawlen + 7) & ~7; /* +2 for nxthdr, len */
1312 pad_len = hbhlen - (2 + rawlen);
1313 pad_position = ip6hbh + 2 + rawlen;
[all...]
/illumos-gate/usr/src/lib/libdevinfo/
H A Ddevinfo_prop_decode.c963 di_slot_names_decode(uchar_t *rawdata, int rawlen, argument
974 if (rawlen < sizeof (slots))
996 maxsp = sp + (rawlen - sizeof (slots));
H A Ddevinfo.c3246 int rawlen, count; local
3253 rawlen = di_prop_rawdata(prop, &rawdata);
3254 if (rawlen <= 0 || rawdata == NULL)
3257 count = di_slot_names_decode(rawdata, rawlen, prop_data);
3296 int rawlen, count; local
3299 rawlen = di_prom_prop_data(prom_prop, &rawdata);
3300 if (rawlen <= 0 || rawdata == NULL)
3303 count = di_slot_names_decode(rawdata, rawlen, prop_data);
H A Dlibdevinfo.h377 extern int di_slot_names_decode(uchar_t *rawdata, int rawlen,

Completed in 73 milliseconds