Lines Matching refs:fraglen
327 int fraglen; member
338 int thislen = desc->fraglen + sg->length; in encryptor()
339 int fraglen, ret; in encryptor() local
359 desc->fraglen += sg->length; in encryptor()
362 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in encryptor()
363 thislen -= fraglen; in encryptor()
381 if (fraglen) { in encryptor()
382 sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen, in encryptor()
383 sg->offset + sg->length - fraglen); in encryptor()
387 desc->fraglen = fraglen; in encryptor()
390 desc->fraglen = 0; in encryptor()
414 desc.fraglen = 0; in gss_encrypt_xdr_buf()
429 int fraglen; member
436 int thislen = desc->fraglen + sg->length; in decryptor()
439 int fraglen, ret; in decryptor() local
447 desc->fraglen += sg->length; in decryptor()
449 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in decryptor()
450 thislen -= fraglen; in decryptor()
466 if (fraglen) { in decryptor()
467 sg_set_page(&desc->frags[0], sg_page(sg), fraglen, in decryptor()
468 sg->offset + sg->length - fraglen); in decryptor()
470 desc->fraglen = fraglen; in decryptor()
473 desc->fraglen = 0; in decryptor()
495 desc.fraglen = 0; in gss_decrypt_xdr_buf()
682 desc.fraglen = 0; in gss_krb5_aes_encrypt()
765 desc.fraglen = 0; in gss_krb5_aes_decrypt()