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

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
ArrayDataPseudoInstruction.java 42 private byte[] encodedValues;
46 return ((encodedValues.length + 1)/2) + 4 + (codeAddress % 2);
49 public ArrayDataPseudoInstruction(int elementWidth, byte[] encodedValues) {
52 if (encodedValues.length % elementWidth != 0) {
57 this.encodedValues = encodedValues;
75 this.encodedValues = new byte[elementCount * elementWidth];
76 System.arraycopy(buffer, bufferIndex+8, encodedValues, 0, elementCount * elementWidth);
82 int elementCount = encodedValues.length / elementWidth;
88 out.write(encodedValues);
    [all...]
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g     [all...]

Completed in 1117 milliseconds