Searched refs:size (Results 201 - 225 of 392) sorted by relevance

1234567891011>>

/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalVariableInfo.java35 * max size for the method
117 if (start.size() != 0) {
136 * max size if no set was associated with the block in question.
163 * max size if there is not yet any set associated with the block.
220 return insnAssignments.size();
H A DRopMethod.java154 int sz = blocks.size();
164 int ssz = successors.size();
/dalvik/dx/src/com/android/dx/ssa/
H A DLocalVariableInfo.java37 * max size for the method
65 this.blockStarts = new RegisterSpecSet[blocks.size()];
133 * max size if no set was associated with the block in question.
160 * max size if there is not yet any set associated with the block.
217 return insnAssignments.size();
/dalvik/dx/src/com/android/dx/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/vm/
H A DMisc.h280 * code size slightly, but also bad, because the native stack trace we
289 extern "C" size_t strlcpy(char *dst, const char *src, size_t size);
297 void *dvmAllocRegion(size_t size, int prot, const char *name);
/dalvik/vm/compiler/codegen/mips/
H A DCodegen.h81 int displacement, int rSrc, OpSize size);
/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java611 int size = in.read();
613 int[] targets = new int[size];
615 for (int i = 0; i < size; i++) {
643 int size = in.read();
644 int[] keys = new int[size];
645 int[] targets = new int[size];
647 for (int i = 0; i < size; i++) {
651 for (int i = 0; i < size; i++) {
683 int size = in.readInt();
687 byte[] array = new byte[size];
[all...]
/dalvik/dx/src/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java185 int sz = ssaRegs.size();
253 int sz = specs.size();
479 SsaInsn checkCastInsn = insnList.get(insnList.size() - 1);
523 checkCastInsn.getOriginalRopInsn().getCatches().size() != 0;
727 int szSources = sources.size();
749 int szSimilar = similarRegisters.size();
783 int szSources = sources.size();
922 int szSources = sources.size();
1026 int sourcesSize = sources.size();
1078 private int size; field in class:FirstFitLocalCombiningAllocator.Multiset
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopper.java210 IntList successors = new IntList(callerBlocks.size());
306 this.result = new ArrayList<BasicBlock>(blocks.size() * 2 + 10);
308 new ArrayList<IntList>(blocks.size() * 2 + 10);
460 int sz = result.size();
590 int sz = successors.size();
617 int sz = result.size();
703 int insnSz = insns.size();
710 int catchSz = catches.size();
754 startSuccessorIndex = successors.size();
766 int succSz = successors.size();
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DLocalSnapshot.java80 int sz = locals.size();
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm10t.java62 (insn.getRegisters().size() == 0))) {
H A DForm11x.java66 (regs.size() == 1) &&
H A DForm20t.java62 (insn.getRegisters().size() == 0))) {
H A DForm21t.java66 (regs.size() == 1) &&
H A DForm22x.java67 (regs.size() == 2) &&
H A DForm23x.java68 (regs.size() == 3) &&
H A DForm30t.java62 (insn.getRegisters().size() == 0))) {
H A DForm31t.java66 (regs.size() == 1) &&
H A DForm32x.java66 (regs.size() == 2) &&
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DStringDataItem.java44 * Gets the write size for a given value.
47 * @return {@code >= 2}; the write size, in bytes
78 out.annotate(bytes.size() + 1, value.toQuoted());
H A DUniformItemSection.java26 * {@link Item} objects. Each of the items must have the same size in
47 int sz = items.size();
53 // Since each item has to be the same size, we can pick any.
96 * Since all items must be the same size, we can use the size
/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteBlock.java73 int sz = successors.size();
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DDexTranslationAdvice.java105 int sz = sources.size();
H A DRop.java113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) {
265 int sz = sources.size();
279 sz = exceptions.size();
400 * {@code getExceptions().size() != 0}.
405 return (exceptions.size() != 0);

Completed in 1209 milliseconds

1234567891011>>