Lines Matching refs:space
82 unsigned int space;
94 space = SHA1_BLOCK_SIZE - leftover;
95 if (space) {
96 if (count > space) {
97 err = crypto_shash_update(&dctx->fallback, in, space) ?:
101 count -= space;
102 in += space;
143 unsigned int space;
155 space = SHA256_BLOCK_SIZE - leftover;
156 if (space) {
157 if (count > space) {
158 err = crypto_shash_update(&dctx->fallback, in, space) ?:
162 count -= space;
163 in += space;