OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:remainingBytes
(Results
1 - 9
of
9
) sorted by null
/frameworks/av/media/libstagefright/mpeg2ts/
HlsSampleDecryptor.cpp
110
size_t
remainingBytes
= nalSize - VIDEO_CLEAR_LEAD;
116
while (
remainingBytes
> 0) {
118
if (
remainingBytes
> AES_BLOCK_SIZE) {
127
remainingBytes
-= AES_BLOCK_SIZE;
131
size_t clearBytes = std::min(
remainingBytes
, (size_t)(9 * AES_BLOCK_SIZE));
134
remainingBytes
-= clearBytes;
158
size_t
remainingBytes
= size - adtsHdrSize;
160
bool isEncrypted = (
remainingBytes
>= AUDIO_CLEAR_LEAD + AES_BLOCK_SIZE);
174
if (
remainingBytes
>= AUDIO_CLEAR_LEAD) {
176
remainingBytes
-= AUDIO_CLEAR_LEAD
[
all
...]
/external/libese/libapdu/include/apdu/
apdu.h
89
int8_t
remainingBytes
() const { return sw1() == BYTES_AVAILABLE ? sw2() : 0; }
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/cpio/
CpioArchiveInputStream.java
512
long
remainingBytes
= readFromLastBlock == 0 ? 0
514
while (
remainingBytes
> 0) {
519
remainingBytes
-= skipped;
/external/skia/src/codec/
SkBmpRLECodec.cpp
141
const size_t
remainingBytes
= fBytesBuffered - fCurrRLEByte;
148
memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte),
remainingBytes
);
151
buffer +=
remainingBytes
;
155
// have already copied
remainingBytes
to the start of the buffer.
161
fBytesBuffered =
remainingBytes
+ additionalBytes;
/external/skqp/src/codec/
SkBmpRLECodec.cpp
141
const size_t
remainingBytes
= fBytesBuffered - fCurrRLEByte;
148
memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte),
remainingBytes
);
151
buffer +=
remainingBytes
;
155
// have already copied
remainingBytes
to the start of the buffer.
161
fBytesBuffered =
remainingBytes
+ additionalBytes;
/frameworks/av/media/libstagefright/codecs/mp3dec/test/
mp3reader.cpp
249
ssize_t
remainingBytes
= 0;
259
if (
remainingBytes
< 4) {
263
memcpy(buf, tmp,
remainingBytes
);
264
bytesToRead = kMaxReadBytes -
remainingBytes
;
271
totalBytesRead = sourceReadAt(fp, pos +
remainingBytes
,
272
buf +
remainingBytes
, bytesToRead);
278
remainingBytes
+= totalBytesRead;
289
--
remainingBytes
;
300
--
remainingBytes
;
345
--
remainingBytes
;
[
all
...]
/frameworks/av/media/extractors/mp3/
MP3Extractor.cpp
99
ssize_t
remainingBytes
= 0;
110
if (
remainingBytes
< 4) {
114
memcpy(buf, tmp,
remainingBytes
);
115
bytesToRead = kMaxReadBytes -
remainingBytes
;
122
totalBytesRead = source->readAt(pos +
remainingBytes
,
123
buf +
remainingBytes
,
129
totalBytesRead +=
remainingBytes
;
130
remainingBytes
= totalBytesRead;
141
--
remainingBytes
;
152
--
remainingBytes
;
[
all
...]
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
CameraTestUtils.java
[
all
...]
/developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar
Completed in 1692 milliseconds