Lines Matching defs:space
83 unsigned int space;
95 space = SHA1_BLOCK_SIZE - leftover;
96 if (space) {
97 if (count > space) {
98 err = crypto_shash_update(&dctx->fallback, in, space) ?:
102 count -= space;
103 in += space;
144 unsigned int space;
156 space = SHA256_BLOCK_SIZE - leftover;
157 if (space) {
158 if (count > space) {
159 err = crypto_shash_update(&dctx->fallback, in, space) ?:
163 count -= space;
164 in += space;