OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RawInsnHelper
(Results
1 - 2
of
2
) sorted by null
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
RawInsnHelper.java
23
public class
RawInsnHelper
{
/art/tools/dexfuzz/src/dexfuzz/program/
CodeTranslator.java
27
import dexfuzz.rawdex.formats.
RawInsnHelper
;
397
int targetsSize = (int)
RawInsnHelper
.getUnsignedShortFromTwoBytes(dataInsn.rawBytes, rawPtr);
407
keys[0] = (int)
RawInsnHelper
.getUnsignedIntFromFourBytes(dataInsn.rawBytes, rawPtr);
417
keys[i] = (int)
RawInsnHelper
.getUnsignedIntFromFourBytes(dataInsn.rawBytes,
425
targets[i] = (int)
RawInsnHelper
.getUnsignedIntFromFourBytes(dataInsn.rawBytes,
473
RawInsnHelper
.writeUnsignedShortToTwoBytes(dataInsn.rawBytes, rawPtr, targetsSize);
479
RawInsnHelper
.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[0]);
484
RawInsnHelper
.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[i]);
491
RawInsnHelper
.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, targets[i]);
Completed in 137 milliseconds