OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clearBytes
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libstagefright/mpeg2ts/
HlsSampleDecryptor.cpp
131
size_t
clearBytes
= std::min(remainingBytes, (size_t)(9 * AES_BLOCK_SIZE));
133
offset +=
clearBytes
;
134
remainingBytes -=
clearBytes
;
198
size_t
clearBytes
= remainingBytes;
199
if (
clearBytes
> 0) {
200
CHECK(
clearBytes
< AES_BLOCK_SIZE);
254
size_t
clearBytes
= remainingBytes;
255
if (
clearBytes
> 0) {
256
CHECK(
clearBytes
< AES_BLOCK_SIZE);
/external/libldac/src/
ldacBT_api.c
536
int
clearBytes
;
537
clearBytes
= nBytesToZero;
538
if ( pos +
clearBytes
>= LDACBT_ENC_PCM_BUF_SZ ){
539
clearBytes
= (LDACBT_ENC_PCM_BUF_SZ - pos);
541
clear_data_ldac( ppcmring->buf + pos,
clearBytes
);
542
nBytesToZero -=
clearBytes
;
543
if( (pos +=
clearBytes
) >= LDACBT_ENC_PCM_BUF_SZ ){
Completed in 765 milliseconds