Lines Matching full:left
186 size_t i, e, left, total_len;
196 left = total_len;
202 while (left >= BLOCK_SIZE) {
211 if (left > BLOCK_SIZE)
213 left -= BLOCK_SIZE;
220 if (left || total_len == 0) {
221 for (i = 0; i < left; i++) {
229 cbc[left] ^= 0x80;
294 size_t j, len, left = data_len;
304 while (left > 0) {
307 len = (left < BLOCK_SIZE) ? left : BLOCK_SIZE;
311 left -= len;