OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:regA
(Results
1 - 25
of
29
) sorted by null
1
2
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction11n.java
41
private byte
regA
;
44
public Instruction11n(Opcode opcode, byte
regA
, byte litB) {
47
if (
regA
>= 1 << 4) {
56
this.
regA
=
regA
;
63
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
69
out.writeByte((litB << 4) |
regA
);
77
return
regA
;
Instruction11x.java
40
private byte
regA
;
42
public Instruction11x(Opcode opcode, short
regA
) {
45
if (
regA
>= 1 << 8) {
49
this.
regA
= (byte)
regA
;
55
this.
regA
= (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
60
out.writeByte(
regA
);
68
return
regA
& 0xFF;
Instruction12x.java
40
private int
regA
;
43
public Instruction12x(Opcode opcode, byte
regA
, byte regB) {
46
if (
regA
>= 1 << 4 ||
51
this.
regA
=
regA
;
57
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
63
out.writeByte((regB << 4) |
regA
);
71
return
regA
;
Instruction21c.java
43
private byte
regA
;
45
public Instruction21c(Opcode opcode, short
regA
, Item referencedItem) {
48
if (
regA
>= 1 << 8) {
59
this.
regA
= (byte)
regA
;
71
this.
regA
= buffer[bufferIndex + 1];
85
out.writeByte(
regA
);
94
return
regA
& 0xFF;
Instruction21s.java
41
private byte
regA
;
44
public Instruction21s(Opcode opcode, short
regA
, short litB) {
47
if (
regA
>= 1 << 8) {
51
this.
regA
= (byte)
regA
;
58
this.
regA
= buffer[bufferIndex + 1];
64
out.writeByte(
regA
);
73
return
regA
& 0xFF;
Instruction22b.java
40
private byte
regA
;
44
public Instruction22b(Opcode opcode, short
regA
, short regB, byte litC) {
47
if (
regA
>= 1 << 8 ||
52
this.
regA
= (byte)
regA
;
60
this.
regA
= buffer[bufferIndex + 1];
67
out.writeByte(
regA
);
77
return
regA
& 0xFF;
Instruction22x.java
40
private byte
regA
;
43
public Instruction22x(Opcode opcode, short
regA
, int regB) {
46
if (
regA
>= 1 << 8) {
54
this.
regA
= (byte)
regA
;
61
this.
regA
= buffer[bufferIndex + 1];
67
out.writeByte(
regA
);
76
return
regA
& 0xFF;
Instruction23x.java
39
private byte
regA
;
43
public Instruction23x(Opcode opcode, short
regA
, short regB, short regC) {
46
if (
regA
>= 1 << 8 ||
52
this.
regA
= (byte)
regA
;
60
this.
regA
= buffer[bufferIndex + 1];
67
out.writeByte(
regA
);
77
return
regA
& 0xFF;
Instruction31c.java
42
private byte
regA
;
44
public Instruction31c(Opcode opcode, short
regA
, Item referencedItem) {
47
if (
regA
>= 1 << 8) {
51
this.
regA
= (byte)
regA
;
57
this.
regA
= buffer[bufferIndex + 1];
62
out.writeByte(
regA
);
71
return
regA
& 0xFF;
Instruction31i.java
41
private byte
regA
;
44
public Instruction31i(Opcode opcode, short
regA
, int litB) {
47
if (
regA
>= 1 << 8) {
51
this.
regA
= (byte)
regA
;
58
this.
regA
= (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
64
out.writeByte(
regA
);
73
return
regA
& 0xFF;
Instruction31t.java
41
private byte
regA
;
44
public Instruction31t(Opcode opcode, short
regA
, int offB) {
47
if (
regA
>= 1 << 8) {
51
this.
regA
= (byte)
regA
;
58
this.
regA
= buffer[bufferIndex + 1];
64
out.writeByte(
regA
);
78
return
regA
& 0xFF;
Instruction32x.java
40
private short
regA
;
43
public Instruction32x(Opcode opcode, int
regA
, int regB) {
46
if (
regA
>= 1<<16 ||
51
this.
regA
= (short)
regA
;
58
this.
regA
= (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
65
out.writeShort(
regA
);
74
return
regA
& 0xFFFF;
Instruction41c.java
46
private short
regA
;
48
public Instruction41c(Opcode opcode, int
regA
, Item referencedItem) {
51
if (
regA
>= 1 << 16) {
62
this.
regA
= (short)
regA
;
74
this.
regA
= (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 6);
89
return
regA
& 0xFFFF;
Instruction51l.java
41
private byte
regA
;
44
public Instruction51l(Opcode opcode, short
regA
, long litB) {
47
if (
regA
>= 1 << 8) {
51
this.
regA
= (byte)
regA
;
58
regA
= (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
64
out.writeByte(
regA
);
73
return
regA
& 0xFF;
Instruction52c.java
44
private short
regA
;
47
public Instruction52c(Opcode opcode, int
regA
, int regB, Item referencedItem) {
50
if (
regA
>= 1 << 16) {
58
this.
regA
= (short)
regA
;
65
this.
regA
= (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 6);
82
return
regA
& 0xFFFF;
Instruction21h.java
41
private byte
regA
;
44
public Instruction21h(Opcode opcode, short
regA
, short litB) {
47
if (
regA
>= 1 << 8) {
51
this.
regA
= (byte)
regA
;
58
this.
regA
= buffer[bufferIndex + 1];
64
out.writeByte(
regA
);
73
return
regA
& 0xFF;
Instruction21t.java
41
private byte
regA
;
44
public Instruction21t(Opcode opcode, short
regA
, short offB) {
47
if (
regA
>= 1 << 8) {
55
this.
regA
= (byte)
regA
;
64
regA
= buffer[bufferIndex + 1];
71
out.writeByte(
regA
);
91
return
regA
& 0xFF;
Instruction22c.java
43
private byte
regA
;
46
public Instruction22c(Opcode opcode, byte
regA
, byte regB, Item referencedItem) {
49
if (
regA
>= 1 << 4 ||
54
this.
regA
=
regA
;
61
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
76
out.writeByte((regB << 4) |
regA
);
85
return
regA
;
Instruction22cs.java
41
private byte
regA
;
45
public Instruction22cs(Opcode opcode, byte
regA
, byte regB, int fieldOffset) {
48
if (
regA
>= 1 << 4 ||
57
this.
regA
=
regA
;
65
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
72
out.writeByte((regB << 4) |
regA
);
81
return
regA
;
Instruction22s.java
41
private byte
regA
;
45
public Instruction22s(Opcode opcode, byte
regA
, byte regB, short litC) {
48
if (
regA
>= 1 << 4 ||
53
this.
regA
=
regA
;
61
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
68
out.writeByte((regB << 4) |
regA
);
77
return
regA
;
Instruction22t.java
41
private byte
regA
;
45
public Instruction22t(Opcode opcode, byte
regA
, byte regB, short offC) {
48
if (
regA
>= 16 ||
57
this.
regA
=
regA
;
67
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
76
out.writeByte((regB << 4) |
regA
);
96
return
regA
;
Instruction35mi.java
43
private byte
regA
;
51
byte
regA
, int inlineIndex) {
61
regA
>= 1 << 4) {
70
this.
regA
=
regA
;
82
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
92
out.writeByte((regCount << 4) |
regA
);
107
return
regA
;
Instruction35ms.java
43
private byte
regA
;
51
byte
regA
, int vtableIndex) {
61
regA
>= 1 << 4) {
70
this.
regA
=
regA
;
82
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
92
out.writeByte((regCount << 4) |
regA
);
107
return
regA
;
Instruction35c.java
47
private byte
regA
;
54
byte
regA
, Item referencedItem) {
65
regA
>= 1 << 4) {
72
this.
regA
=
regA
;
83
this.
regA
= NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
107
out.writeByte((regCount << 4) |
regA
);
122
return
regA
;
/dalvik/dx/src/com/android/dx/ssa/
SCCP.java
253
int
regA
= specA.getReg();
255
latticeValues[
regA
] == CONSTANT) {
256
cA = latticeConstants[
regA
];
369
int
regA
= sources.get(0).getReg();
373
if (latticeValues[
regA
] != CONSTANT) {
376
cA = latticeConstants[
regA
];
Completed in 632 milliseconds
1
2