OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:instructionstart
(Results
26 - 40
of
40
) sorted by null
1
2
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction11x.java
43
int
instructionStart
) {
44
super(dexFile, opcode,
instructionStart
);
47
@Override public int getRegisterA() { return dexFile.readUbyte(
instructionStart
+ 1); }
DexBackedInstruction20t.java
43
int
instructionStart
) {
44
super(dexFile, opcode,
instructionStart
);
47
@Override public int getCodeOffset() { return dexFile.readShort(
instructionStart
+ 2); }
DexBackedInstruction30t.java
43
int
instructionStart
) {
44
super(dexFile, opcode,
instructionStart
);
47
@Override public int getCodeOffset() { return dexFile.readInt(
instructionStart
+ 2); }
DexBackedInstruction11n.java
44
int
instructionStart
) {
45
super(dexFile, opcode,
instructionStart
);
50
return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(
instructionStart
+ 1));
55
return NibbleUtils.extractHighSignedNibble(dexFile.readByte(
instructionStart
+ 1));
DexBackedInstruction12x.java
44
int
instructionStart
) {
45
super(dexFile, opcode,
instructionStart
);
50
return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(
instructionStart
+ 1));
55
return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(
instructionStart
+ 1));
DexBackedInstruction21c.java
45
int
instructionStart
) {
46
super(dexFile, opcode,
instructionStart
);
49
@Override public int getRegisterA() { return dexFile.readUbyte(
instructionStart
+ 1); }
54
return DexBackedReference.makeReference(dexFile, opcode.referenceType, dexFile.readUshort(
instructionStart
+ 2));
DexBackedInstruction21ih.java
43
int
instructionStart
) {
44
super(dexFile, opcode,
instructionStart
);
47
@Override public int getRegisterA() { return dexFile.readUbyte(
instructionStart
+ 1); }
50
@Override public short getHatLiteral() { return (short)dexFile.readShort(
instructionStart
+ 2); }
DexBackedInstruction31c.java
45
int
instructionStart
) {
46
super(dexFile, opcode,
instructionStart
);
49
@Override public int getRegisterA() { return dexFile.readUbyte(
instructionStart
+ 1); }
55
dexFile.readSmallUint(
instructionStart
+ 2));
DexBackedArrayPayload.java
54
int
instructionStart
) {
55
super(dexFile, OPCODE,
instructionStart
);
57
elementWidth = dexFile.readUshort(
instructionStart
+ ELEMENT_WIDTH_OFFSET);
58
elementCount = dexFile.readSmallUint(
instructionStart
+ ELEMENT_COUNT_OFFSET);
66
final int elementsStart =
instructionStart
+ ELEMENTS_OFFSET;
DexBackedInstruction10x.java
43
int
instructionStart
) {
44
super(dexFile, opcode,
instructionStart
);
DexBackedInstruction.java
46
public final int
instructionStart
;
50
int
instructionStart
) {
53
this.
instructionStart
=
instructionStart
;
/external/chromium_org/v8/src/compiler/
register-allocator.h
62
LifetimePosition
InstructionStart
() const {
71
return LifetimePosition(
InstructionStart
().Value() + kStep / 2);
77
return LifetimePosition(
InstructionStart
().Value() + kStep);
85
return LifetimePosition(
InstructionStart
().Value() - kStep);
register-allocator.cc
[
all
...]
/external/chromium_org/v8/src/
lithium-allocator.h
66
LifetimePosition
InstructionStart
() const {
75
return LifetimePosition(
InstructionStart
().Value() + kStep/2);
81
return LifetimePosition(
InstructionStart
().Value() + kStep);
89
return LifetimePosition(
InstructionStart
().Value() - kStep);
lithium-allocator.cc
[
all
...]
Completed in 395 milliseconds
1
2