Searched refs:tmpBuf (Results 1 – 1 of 1) sorted by relevance
37 private byte tmpBuf[] = new byte[4]; field in DexData427 mDexFile.readFully(tmpBuf, 0, 1); in readByte()428 return tmpBuf[0]; in readByte()433 mDexFile.readFully(tmpBuf, 0, 4); in readInt()436 return (tmpBuf[3] & 0xff) in readInt()437 | ((tmpBuf[2] & 0xff) << 8) in readInt()438 | ((tmpBuf[1] & 0xff) << 16) in readInt()439 | ((tmpBuf[0] & 0xff) << 24); in readInt()441 return (tmpBuf[0] & 0xff) in readInt()442 | ((tmpBuf[1] & 0xff) << 8) in readInt()[all …]