Searched defs:bytesToRead (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libaaudio/src/utility/
H A DFixedBlockReader.cpp37 int32_t bytesToRead = numBytes; local
39 if (bytesToRead > dataAvailable) {
40 bytesToRead = dataAvailable;
42 memcpy(buffer, mStorage + mPosition, bytesToRead);
43 mPosition += bytesToRead;
44 return bytesToRead;
/frameworks/av/media/libheif/
H A DHeifDecoderImpl.cpp235 size_t bytesToRead = offset + size - mCachedOffset - mCachedSize; local
236 size_t bytesRead = mStream->read(mCache.get() + mCachedSize, bytesToRead);
237 if (bytesRead > bytesToRead || bytesRead == 0) {
241 } else if (bytesRead < bytesToRead) {
/frameworks/av/media/libstagefright/codecs/mp3dec/test/
H A Dmp3reader.cpp247 ssize_t bytesToRead = kMaxReadBytes; local
264 bytesToRead = kMaxReadBytes - remainingBytes;
272 buf + remainingBytes, bytesToRead);
277 reachEOS = (totalBytesRead != bytesToRead);
/frameworks/av/media/libaaudio/src/legacy/
H A DAudioStreamRecord.cpp415 size_t bytesToRead = framesToRead * bytesPerDeviceFrame; local
416 bytesActuallyRead = mAudioRecord->read(mFormatConversionBufferI16.get(), bytesToRead, blocking);
/frameworks/av/media/extractors/mp3/
H A DMP3Extractor.cpp99 ssize_t bytesToRead = kMaxReadBytes; local
117 bytesToRead = kMaxReadBytes - remainingBytes;
126 bytesToRead);
130 reachEOS = (totalBytesRead != bytesToRead);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1942 milliseconds