Searched refs:rawBytes (Results 1 – 2 of 2) sorted by relevance
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | Instruction.java | 69 public byte[] rawBytes; field in Instruction 91 if (newInsn.rawBytes != null) { in clone() 92 newInsn.rawBytes = new byte[rawBytes.length]; in clone() 93 for (int i = 0; i < rawBytes.length; i++) { in clone() 94 newInsn.rawBytes[i] = rawBytes[i]; in clone() 127 rawBytes = new byte[2 * getSize()]; in read() 129 file.read(rawBytes); in read() 131 vregA = info.format.getA(rawBytes); in read() 132 vregB = info.format.getB(rawBytes); in read() 133 vregC = info.format.getC(rawBytes); in read() [all …]
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
D | CodeTranslator.java | 405 int targetsSize = (int) RawInsnHelper.getUnsignedShortFromTwoBytes(dataInsn.rawBytes, rawPtr); in readSwitchInstruction() 415 keys[0] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes, rawPtr); in readSwitchInstruction() 425 keys[i] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes, in readSwitchInstruction() 433 targets[i] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes, in readSwitchInstruction() 481 RawInsnHelper.writeUnsignedShortToTwoBytes(dataInsn.rawBytes, rawPtr, targetsSize); in updateSwitchInstruction() 487 RawInsnHelper.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[0]); in updateSwitchInstruction() 492 RawInsnHelper.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[i]); in updateSwitchInstruction() 499 RawInsnHelper.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, targets[i]); in updateSwitchInstruction()
|