len_this_page      73 crypto/ablkcipher.c 		unsigned int len_this_page = scatterwalk_pagelen(&walk->out);
len_this_page      75 crypto/ablkcipher.c 		if (len_this_page > n)
len_this_page      76 crypto/ablkcipher.c 			len_this_page = n;
len_this_page      78 crypto/ablkcipher.c 		if (n == len_this_page)
len_this_page      80 crypto/ablkcipher.c 		n -= len_this_page;
len_this_page      30 crypto/scatterwalk.c 		unsigned int len_this_page = scatterwalk_pagelen(walk);
len_this_page      33 crypto/scatterwalk.c 		if (len_this_page > nbytes)
len_this_page      34 crypto/scatterwalk.c 			len_this_page = nbytes;
len_this_page      38 crypto/scatterwalk.c 			memcpy_dir(buf, vaddr, len_this_page, out);
len_this_page      42 crypto/scatterwalk.c 		scatterwalk_advance(walk, len_this_page);
len_this_page      44 crypto/scatterwalk.c 		if (nbytes == len_this_page)
len_this_page      47 crypto/scatterwalk.c 		buf += len_this_page;
len_this_page      48 crypto/scatterwalk.c 		nbytes -= len_this_page;
len_this_page      31 include/crypto/scatterwalk.h 	unsigned int len_this_page = offset_in_page(~walk->offset) + 1;
len_this_page      32 include/crypto/scatterwalk.h 	return len_this_page > len ? len : len_this_page;
len_this_page      38 include/crypto/scatterwalk.h 	unsigned int len_this_page = scatterwalk_pagelen(walk);
len_this_page      39 include/crypto/scatterwalk.h 	return nbytes > len_this_page ? len_this_page : nbytes;