HomeSort by relevance Sort by last modified time
    Searched full:litb (Results 1 - 13 of 13) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction11n.java 42 private byte litB;
44 public Instruction11n(Opcode opcode, byte regA, byte litB) {
51 if (litB < -(1 << 3) ||
52 litB >= 1 << 3) {
57 this.litB = litB;
64 this.litB = NumberUtils.decodeHighSignedNibble(buffer[bufferIndex + 1]);
69 out.writeByte((litB << 4) | regA);
81 return litB;
Instruction21h.java 42 private short litB;
44 public Instruction21h(Opcode opcode, short regA, short litB) {
52 this.litB = litB;
59 this.litB = NumberUtils.decodeShort(buffer, bufferIndex + 2);
65 out.writeShort(litB);
77 return litB;
82 return litB << 16;
85 return ((long)litB) << 48;
Instruction21s.java 42 private short litB;
44 public Instruction21s(Opcode opcode, short regA, short litB) {
52 this.litB = litB;
59 this.litB = NumberUtils.decodeShort(buffer, bufferIndex + 2);
65 out.writeShort(litB);
77 return litB;
Instruction31i.java 42 private int litB;
44 public Instruction31i(Opcode opcode, short regA, int litB) {
52 this.litB = litB;
59 this.litB = NumberUtils.decodeInt(buffer, bufferIndex + 2);
65 out.writeInt(litB);
77 return litB;
Instruction51l.java 42 private long litB;
44 public Instruction51l(Opcode opcode, short regA, long litB) {
52 this.litB = litB;
59 litB = NumberUtils.decodeLong(buffer, bufferIndex + 2);
65 out.writeLong(litB);
77 return litB;
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g     [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 862 SourceLocation LitB = LitInfo.WithoutSuffRange.getBegin();
867 commit.insert(LitB, "@");
    [all...]
  /packages/apps/Camera/perftests/panorama/input/
test_005.ppm     [all...]
test_016.ppm     [all...]
test_038.ppm     [all...]
  /packages/apps/Gallery2/perftests/panorama/input/
test_005.ppm     [all...]
test_016.ppm     [all...]
test_038.ppm     [all...]

Completed in 628 milliseconds