Home | History | Annotate | Download | only in cipher

Lines Matching defs:bytes_to_encr

321  * bytes_to_encr < bytes_in_buffer
324 * bytes_to_encr > bytes_in_buffer
335 unsigned int bytes_to_encr = *enc_len;
340 if (!forIsmacryp && (bytes_to_encr + htons(c->counter.v16[7])) > 0xffff)
345 if (bytes_to_encr <= (unsigned int)c->bytes_in_buffer) {
347 /* deal with odd case of small bytes_to_encr */
349 i < (sizeof(v128_t) - c->bytes_in_buffer + bytes_to_encr); i++)
354 c->bytes_in_buffer -= bytes_to_encr;
365 bytes_to_encr -= c->bytes_in_buffer;
371 for (i=0; i < (bytes_to_encr/sizeof(v128_t)); i++) {
419 if ((bytes_to_encr & 0xf) != 0) {
424 for (i=0; i < (bytes_to_encr & 0xf); i++)