Lines Matching refs:b
28 private ByteBuffer b; field in DexBuffer
62 b = buffer.asReadOnlyBuffer(); in initialize()
63 b.clear(); in initialize()
64 b.order(ByteOrder.LITTLE_ENDIAN); in initialize()
68 b.position(offset); in setPosition()
72 b.get(dst, 0, dst.length); in readBytes()
83 value = (b.get() & 0xFF); in readUleb128()
97 tmp = b.get() & 0xFF; in readInt()
110 tmp = b.get() & 0xFF; in readShort()
123 tmp = b.get() & 0xFF; in readChar()
136 tmp = b.get() & 0xFF; in readLong()
154 int value = b.getInt(); in readUInt()
160 return b.getShort() & 0xFFFF; in readUShort()
165 return b.get(); in readUByte()
169 return new DexBuffer(b.duplicate()); in createCopy()
180 b.position(b.position() + nBytes); in skip()