Searched refs:bufOffset (Results 1 – 3 of 3) sorted by relevance
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/ |
D | Asset.java | 96 public abstract int read(byte[] buf, int bufOffset, int count); in read() argument 740 public int read(byte[] buf, int bufOffset, int count) { in read() argument 770 System.arraycopy(mMap.getDataPtr(), toIntExact(mOffset), buf, bufOffset, count); in read() local 776 System.arraycopy(mBuf, toIntExact(mOffset), buf, bufOffset, count); in read() 1231 public int read(byte[] buf, int bufOffset, int count) { 1258 System.arraycopy(mBuf, toIntExact(mOffset), buf, bufOffset, count);
|
D | ResStringPool.java | 333 int bufOffset = mHeader.myOffset(); in stringAt() local 341 return decodeString(buf, bufOffset + str, Type.UTF16); in stringAt() 367 return decodeString(buf, bufOffset + u8str, Type.UTF8); in stringAt()
|
/external/flatbuffers/dart/lib/ |
D | flat_buffers.dart | 1228 void output(ByteData buf, int bufOffset) { 1230 buf.setUint16(bufOffset, numOfUint16 * 2, Endian.little); 1231 bufOffset += 2; 1233 buf.setUint16(bufOffset, tableSize, Endian.little); 1234 bufOffset += 2; 1237 buf.setUint16(bufOffset, fieldOffset, Endian.little); 1238 bufOffset += 2;
|