Searched defs:thislen (Results 1 - 2 of 2) sorted by relevance

/net/sunrpc/auth_gss/
H A Dgss_krb5_crypto.c406 int thislen = desc->fraglen + sg->length; local
430 fraglen = thislen & (crypto_blkcipher_blocksize(desc->desc.tfm) - 1);
431 thislen -= fraglen;
433 if (thislen == 0)
440 desc->infrags, thislen);
499 int thislen = desc->fraglen + sg->length; local
510 fraglen = thislen & (crypto_blkcipher_blocksize(desc->desc.tfm) - 1);
511 thislen -= fraglen;
513 if (thislen == 0)
519 desc->frags, thislen);
[all...]
/net/sunrpc/
H A Dxdr.c1453 unsigned int page_len, thislen, page_offset; local
1461 thislen = buf->head[0].iov_len - offset;
1462 if (thislen > len)
1463 thislen = len;
1464 sg_set_buf(sg, buf->head[0].iov_base + offset, thislen);
1469 len -= thislen;
1483 thislen = PAGE_CACHE_SIZE - page_offset;
1485 if (thislen > page_len)
1486 thislen = page_len;
1487 sg_set_page(sg, buf->pages[i], thislen, page_offse
[all...]

Completed in 80 milliseconds