Searched refs:numOfBytes (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DMetadataListReader.java219 * Skip the given amount of numOfBytes
223 void skip(int numOfBytes) throws IOException; argument
276 public void skip(int numOfBytes) throws IOException { argument
277 while (numOfBytes > 0) {
278 long skipped = mInputStream.skip(numOfBytes);
282 numOfBytes -= skipped;
292 private void read(@IntRange(from = 0, to = UINT32_BYTE_COUNT) final int numOfBytes) argument
294 if (mInputStream.read(mByteArray, 0, numOfBytes) != numOfBytes) {
297 mPosition += numOfBytes;
334 skip(final int numOfBytes) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFDynamic.h134 size_t numOfBytes() const;
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp606 const sp<DataSource> &DataSource, uint8_t *numOfBytes) {
610 *numOfBytes = 0;
619 (*numOfBytes) ++;
637 uint8_t numOfBytes; local
638 int32_t size = readSize(data_offset, mDataSource, &numOfBytes);
642 data_offset += numOfBytes;
698 size = readSize(data_offset, mDataSource, &numOfBytes);
702 data_offset += numOfBytes;
714 dataLen = readSize(data_offset, mDataSource, &numOfBytes);
720 data_offset += numOfBytes;
605 readSize(off64_t offset, const sp<DataSource> &DataSource, uint8_t *numOfBytes) argument
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DELFDynamic.cpp71 size_t ELFDynamic::numOfBytes() const { function in class:mcld::ELFDynamic
H A DGNULDBackend.cpp842 file_format->getDynamic().setSize(dynamic().numOfBytes());

Completed in 2145 milliseconds