Searched refs:size (Results 176 - 200 of 392) sorted by relevance

1234567891011>>

/dalvik/dx/src/com/android/dx/rop/type/
H A DPrototype.java277 int thisSize = parameterTypes.size();
278 int otherSize = other.parameterTypes.size();
279 int size = Math.min(thisSize, otherSize);
281 for (int i = 0; i < size; i++) {
344 int sz = parameterTypes.size();
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm35c.java107 int sz = regs.size();
132 int sz = regs.size();
169 int sz = orig.size();
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DClassDefsSection.java92 int sz = classDefs.size();
132 int sz = classDefs.size();
178 int sz = interfaces.size();
H A DDebugInfoDecoder.java53 /** size of code block in code units */
69 * register size, in register units, of the register space
87 * @param codesize size of code block in code units
88 * @param regSize register size, in register units, of the register space
247 if (szParams != params.size()) {
461 if (decodedEntries.size() != pl.size()) {
463 "Decoded positions table not same size was "
464 + decodedEntries.size() + " expected " + pl.size());
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DClassDefsSection.java91 int sz = classDefs.size();
131 int sz = classDefs.size();
177 int sz = interfaces.size();
H A DDebugInfoDecoder.java64 /** size of code block in code units */
80 * register size, in register units, of the register space
98 * @param codesize size of code block in code units
99 * @param regSize register size, in register units, of the register space
257 if (szParams != params.size()) {
465 if (decodedEntries.size() != pl.size()) {
467 "Decoded positions table not same size was "
468 + decodedEntries.size() + " expected " + pl.size());
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DNormalSsaInsn.java65 int sz = origSources.size();
88 * same size and consist of sources of identical types.
95 if (origSources.size() != newSources.size()) {
/dalvik/dx/src/com/android/dx/ssa/back/
H A DLivenessAnalyzer.java112 int blocksSz = ssaMeth.getBlocks().size();
206 statementIndex = insns.size() - 1;
262 int szPhis = phis.size();
/dalvik/hit/src/com/android/hit/
H A DQueries.java143 Instance[] instances = new Instance[theClass.mInstances.size()];
171 Instance[] result = new Instance[instanceList.size()];
235 Instance[] resultArray = new Instance[resultList.size()];
/dalvik/vm/reflect/
H A DAnnotation.cpp20 * space choices are weighted heavily toward small size.
476 * encoded_array format, which is a size followed by a stream
485 u4 size, count; local
487 size = readUleb128(&ptr);
488 LOGVV("--- annotation array, size is %u at %p", size, ptr);
490 size, ALLOC_DEFAULT);
492 ALOGE("annotation element array alloc failed (%d)", size);
497 for (count = 0; count < size; count++) {
744 u4 typeIdx, size, coun local
1002 u4 size = readUleb128(&ptr); local
1039 u4 size; local
1122 u4 typeIdx, size; local
2223 u4 size; local
[all...]
/dalvik/dx/src/com/android/dx/dex/cf/
H A DAttributeTranslator.java157 if (exceptions.size() != 0) {
284 int size = list.size();
288 for (int i = 0; i < size; i++) {
298 int membersSize = membersList.size();
398 int sz = methods.size();
H A DCfTranslator.java131 if (classAnnotations.size() != 0) {
143 int constantPoolSize = constantPool.size();
175 int sz = fields.size();
197 if (annotations.size() != 0) {
258 int sz = methods.size();
328 paramSize, concrete.getCode().size());
362 if (annotations.size() != 0) {
368 if (list.size() != 0) {
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java106 * Gets the code size of instructions that use this format. The
107 * size is a number of 16-bit code units, not bytes. This should
108 * throw an exception if this format is of variable size.
182 int sz = list.size();
207 int size = list.size();
212 switch (size) {
222 RegisterSpec lastReg = list.get(size - 1);
438 int sz = list.size();
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp747 int rIndex, int rDest, int scale, OpSize size)
757 assert((size == kWord) || (size == kSingle));
759 size = kSingle;
761 if (size == kSingle)
762 size = kWord;
765 switch (size) {
811 int rIndex, int rSrc, int scale, OpSize size)
821 assert((size == kWord) || (size
746 loadBaseIndexed(CompilationUnit *cUnit, int rBase, int rIndex, int rDest, int scale, OpSize size) argument
810 storeBaseIndexed(CompilationUnit *cUnit, int rBase, int rIndex, int rSrc, int scale, OpSize size) argument
875 loadBaseDispBody(CompilationUnit *cUnit, MIR *mir, int rBase, int displacement, int rDest, int rDestHi, OpSize size, int sReg) argument
992 loadBaseDisp(CompilationUnit *cUnit, MIR *mir, int rBase, int displacement, int rDest, OpSize size, int sReg) argument
1009 storeBaseDispBody(CompilationUnit *cUnit, int rBase, int displacement, int rSrc, int rSrcHi, OpSize size) argument
1105 storeBaseDisp(CompilationUnit *cUnit, int rBase, int displacement, int rSrc, OpSize size) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotations.java155 * @return {@code >= 0;} the size
157 public int size() { method in class:Annotations
158 return annotations.size();
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DLocalVariableExtractor.java95 int insnSz = insns.size();
178 int succSz = successors.size();
H A DRopMethod.java155 int sz = blocks.size();
165 int ssz = successors.size();
/dalvik/dexgen/src/com/android/dexgen/util/
H A DBitIntSet.java78 int sz = o.ints.size();
83 for (int i = 0; i < o.ints.size(); i++) {
H A DBits.java37 int size = (max + 0x1f) >> 5;
38 return new int[size];
/dalvik/dx/src/com/android/dx/command/grep/
H A DGrep.java56 for (int i = 0, size = reader.readArray(); i < size; i++) {
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm21c.java80 switch (regs.size()) {
122 int sz = regs.size();
H A DForm31c.java80 switch (regs.size()) {
117 int sz = regs.size();
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java73 this.stringIds = new int[tableOfContents.stringIds.size];
74 this.typeIds = new short[tableOfContents.typeIds.size];
75 this.protoIds = new short[tableOfContents.protoIds.size];
76 this.fieldIds = new short[tableOfContents.fieldIds.size];
77 this.methodIds = new short[tableOfContents.methodIds.size];
336 int size = reader.readArray();
337 Leb128.writeUnsignedLeb128(out, size);
338 for (int i = 0; i < size; i++) {
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotations.java154 * @return {@code >= 0;} the size
156 public int size() { method in class:Annotations
157 return annotations.size();
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalVariableExtractor.java95 int insnSz = insns.size();
178 int succSz = successors.size();

Completed in 1175 milliseconds

1234567891011>>