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

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DArrayData.java45 private final int elemWidth; field in class:ArrayData
82 elemWidth = 1;
85 elemWidth = 2;
88 elemWidth = 4;
91 elemWidth = 8;
105 return 4 + ((sz * elemWidth) + 1) / 2;
114 out.writeShort(elemWidth);
119 switch (elemWidth) {
153 if (elemWidth == 1 && (sz % 2 != 0)) {
/dalvik/dx/src/com/android/dx/dex/code/
H A DArrayData.java47 private final int elemWidth; field in class:ArrayData
84 elemWidth = 1;
87 elemWidth = 2;
90 elemWidth = 4;
93 elemWidth = 8;
107 return 4 + ((sz * elemWidth) + 1) / 2;
116 out.writeShort(elemWidth);
121 switch (elemWidth) {
155 if (elemWidth == 1 && (sz % 2 != 0)) {
/dalvik/libdex/
H A DInstrUtils.cpp669 u2 elemWidth = insns[1]; local
672 width = 4 + (elemWidth * len + 1) / 2;

Completed in 359 milliseconds