OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bytes_to_encr
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
aes_icm.c
333
*
bytes_to_encr
< bytes_in_buffer
336
*
bytes_to_encr
> bytes_in_buffer
347
unsigned int
bytes_to_encr
= *enc_len;
local
352
if (!forIsmacryp && (
bytes_to_encr
+ htons(c->counter.v16[7])) > 0xffff)
357
if (
bytes_to_encr
<= (unsigned int)c->bytes_in_buffer) {
359
/* deal with odd case of small
bytes_to_encr
*/
361
i < (sizeof(v128_t) - c->bytes_in_buffer +
bytes_to_encr
); i++)
366
c->bytes_in_buffer -=
bytes_to_encr
;
377
bytes_to_encr
-= c->bytes_in_buffer;
383
for (i=0; i < (
bytes_to_encr
/sizeof(v128_t)); i++)
[
all
...]
aes_cbc.c
157
int
bytes_to_encr
= *bytes_in_data;
local
176
while (
bytes_to_encr
> 0) {
194
bytes_to_encr
-= 16;
208
int
bytes_to_encr
= *bytes_in_data;
local
229
while (
bytes_to_encr
> 0) {
256
bytes_to_encr
-= 16;
/external/srtp/crypto/cipher/
aes_cbc.c
156
int
bytes_to_encr
= *bytes_in_data;
local
175
while (
bytes_to_encr
> 0) {
193
bytes_to_encr
-= 16;
207
int
bytes_to_encr
= *bytes_in_data;
local
228
while (
bytes_to_encr
> 0) {
255
bytes_to_encr
-= 16;
aes_icm.c
321
*
bytes_to_encr
< bytes_in_buffer
324
*
bytes_to_encr
> bytes_in_buffer
335
unsigned int
bytes_to_encr
= *enc_len;
local
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++)
[
all
...]
Completed in 176 milliseconds