Searched defs:elementWidth (Results 1 - 3 of 3) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DFillArrayDataPayloadDecodedInstruction.java32 private final int elementWidth; field in class:FillArrayDataPayloadDecodedInstruction
39 int opcode, Object data, int size, int elementWidth) {
44 this.elementWidth = elementWidth;
85 return (short) elementWidth;
38 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, Object data, int size, int elementWidth) argument
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DArrayDataPseudoInstruction.java41 private int elementWidth; field in class:ArrayDataPseudoInstruction
49 public ArrayDataPseudoInstruction(int elementWidth, byte[] encodedValues) { argument
52 if (encodedValues.length % elementWidth != 0) {
53 throw new RuntimeException("There are not a whole number of " + elementWidth + " byte elements");
56 this.elementWidth = elementWidth;
73 this.elementWidth = NumberUtils.decodeUnsignedShort(buffer, bufferIndex+2);
75 this.encodedValues = new byte[elementCount * elementWidth];
76 System.arraycopy(buffer, bufferIndex+8, encodedValues, 0, elementCount * elementWidth);
82 int elementCount = encodedValues.length / elementWidth;
114 public final int elementWidth; field in class:ArrayDataPseudoInstruction.ArrayElement
115 ArrayElement(byte[] buffer, int elementWidth) argument
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 311 milliseconds