Searched refs:idx (Results 1 - 25 of 103) sorted by relevance

12345

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DMemberIdsSection.java37 int idx = 0;
40 ((MemberIdItem) i).setIndex(idx);
41 idx++;
H A DClassDefsSection.java133 int idx = 0;
144 idx = orderItems0(type, idx, sz - idx);
153 * @param idx {@code >= 0;} the next index to assign
158 private int orderItems0(Type type, int idx, int maxDepth) { argument
162 return idx;
174 idx = orderItems0(superclass, idx, maxDepth);
180 idx
[all...]
H A DTypeIdItem.java63 int idx = file.getStringIds().indexOf(descriptor);
67 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
70 out.writeInt(idx);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DBits.java55 * @param idx {@code >= 0, < getMax(set);} which bit
58 public static boolean get(int[] bits, int idx) { argument
59 int arrayIdx = idx >> 5;
60 int bit = 1 << (idx & 0x1f);
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) { argument
72 int arrayIdx = idx >> 5;
73 int bit = 1 << (idx & 0x1f);
86 * @param idx {@code >= 0, < getMax(set);} which bit
88 public static void set(int[] bits, int idx) { argument
100 clear(int[] bits, int idx) argument
166 findFirst(int[] bits, int idx) argument
193 findFirst(int value, int idx) argument
[all...]
H A DBitIntSet.java102 private int idx = Bits.findFirst(bits, 0);
106 return idx >= 0;
115 int ret = idx;
117 idx = Bits.findFirst(bits, idx+1);
/dalvik/dx/src/com/android/dx/util/
H A DBits.java55 * @param idx {@code >= 0, < getMax(set);} which bit
58 public static boolean get(int[] bits, int idx) { argument
59 int arrayIdx = idx >> 5;
60 int bit = 1 << (idx & 0x1f);
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) { argument
72 int arrayIdx = idx >> 5;
73 int bit = 1 << (idx & 0x1f);
86 * @param idx {@code >= 0, < getMax(set);} which bit
88 public static void set(int[] bits, int idx) { argument
100 clear(int[] bits, int idx) argument
166 findFirst(int[] bits, int idx) argument
193 findFirst(int value, int idx) argument
[all...]
H A DBitIntSet.java102 private int idx = Bits.findFirst(bits, 0);
106 return idx >= 0;
115 int ret = idx;
117 idx = Bits.findFirst(bits, idx+1);
/dalvik/opcode-gen/
H A Dopcode-gen.awk286 function defineOpcode(line, count, parts, idx) {
287 # locals: count, parts, idx
290 idx = parseHex(parts[1]);
291 if (idx < 0) return -1;
294 hex[idx] = parts[1];
295 name[idx] = parts[2];
296 format[idx] = parts[3];
297 hasResult[idx] = (parts[4] == "n") ? "false" : "true";
298 indexType[idx] = parts[5];
299 flags[idx]
[all...]
/dalvik/vm/
H A DBitVector.cpp153 unsigned int idx;
155 for (idx = 0; idx < (numBits >> 5); idx++) {
156 pBits->storage[idx] = -1;
160 pBits->storage[idx] = (1 << remNumBits) - 1;
238 unsigned int idx;
239 for (idx = 0; idx < dest->storageSize; idx
[all...]
H A DPointerSet.h76 int idx; local
77 if (!dvmPointerSetHas(pSet, ptr, &idx))
78 idx = -1;
79 return idx;
H A DReferenceTable.cpp268 for (int idx = count - 1; idx >= first; --idx) {
269 const Object* ref = refs[idx];
274 ALOGW(" %5d: cleared jweak", idx);
280 ALOGW(" %5d: %p (raw) (%zd bytes)", idx, ref, size);
307 ALOGW(" %5d: %p %s%s", idx, ref, className.c_str(), extras.c_str());
335 size_t idx; local
337 for (idx = 1; idx < coun
[all...]
H A DHash.h185 int idx; member in struct:HashIter
188 int i = pIter->idx +1;
195 pIter->idx = i;
199 pIter->idx = -1;
203 return (pIter->idx >= pIter->pHashTable->tableSize);
206 assert(pIter->idx >= 0 && pIter->idx < pIter->pHashTable->tableSize);
207 return pIter->pHashTable->pEntries[pIter->idx].data;
/dalvik/dx/src/com/android/dx/cf/code/
H A DOneLocalsArray.java106 public void set(int idx, TypeBearer type) { argument
116 if (idx < 0) {
117 throw new IndexOutOfBoundsException("idx < 0");
122 locals[idx + 1] = null;
125 locals[idx] = type;
127 if (idx != 0) {
128 TypeBearer prev = locals[idx - 1];
130 locals[idx - 1] = null;
141 public void invalidate(int idx) { argument
143 locals[idx]
147 getOrNull(int idx) argument
152 get(int idx) argument
163 getCategory1(int idx) argument
179 getCategory2(int idx) argument
243 throwSimException(int idx, String msg) argument
[all...]
H A DByteBlockList.java56 int idx = indexOfLabel(label);
58 if (idx < 0) {
63 return get(idx);
H A DLocalsArray.java83 * @param idx {@code >= 0, < getMaxLocals();} which local
84 * @param type {@code non-null;} new type for the local at {@code idx}
86 public abstract void set(int idx, TypeBearer type); argument
101 * @param idx {@code >= 0, < getMaxLocals();} which local
103 public abstract void invalidate(int idx); argument
109 * @param idx {@code >= 0, < getMaxLocals();} which local
112 public abstract TypeBearer getOrNull(int idx); argument
119 * @param idx {@code >= 0, < getMaxLocals();} which local
121 * @throws SimException thrown if {@code idx} is valid, but
124 public abstract TypeBearer get(int idx); argument
137 getCategory1(int idx) argument
149 getCategory2(int idx) argument
[all...]
H A DBytecodeArray.java319 int idx = bytes.getUnsignedByte(offset + 1);
320 Constant cst = pool.get(idx);
327 int idx = bytes.getUnsignedShort(offset + 1);
328 Constant cst = pool.get(idx);
335 int idx = bytes.getUnsignedShort(offset + 1);
336 Constant cst = pool.get(idx);
341 int idx = bytes.getUnsignedByte(offset + 1);
342 visitor.visitLocal(ByteOps.ILOAD, offset, 2, idx,
347 int idx = bytes.getUnsignedByte(offset + 1);
348 visitor.visitLocal(ByteOps.ILOAD, offset, 2, idx,
1197 visitLocal(int opcode, int offset, int length, int idx, Type type, int value) argument
1302 visitLocal(int opcode, int offset, int length, int idx, Type type, int value) argument
1374 visitLocal(int opcode, int offset, int length, int idx, Type type, int value) argument
[all...]
/dalvik/vm/analysis/
H A DVfyBasicBlock.cpp40 unsigned int idx = 0; local
48 if (idx < addrBufSize) {
49 addrBuf[idx] = handler->address;
51 idx++;
54 return idx;
72 static VfyBasicBlock* allocVfyBasicBlock(VerifierData* vdata, u4 idx) argument
245 unsigned int idx; local
250 for (idx = 0; idx < vdata->insnsSize; idx
307 u4 idx, blockStartAddr; local
536 unsigned int idx; local
[all...]
H A DLiveness.cpp48 for (u4 idx = 0; idx < vdata->insnsSize; ) {
49 widths[idx] = insnWidth;
50 insnWidth = dvmInsnGetWidth(vdata->insnFlags, idx);
51 idx += insnWidth;
121 for (u4 idx = 0; idx < vdata->insnsSize; idx++) {
122 VfyBasicBlock* block = vdata->basicBlocks[idx];
423 unsigned int idx; local
438 unsigned int idx; local
755 unsigned int idx; local
807 unsigned int idx; local
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DClassDefsSection.java133 int idx = 0;
144 idx = orderItems0(type, idx, sz - idx);
153 * @param idx {@code >= 0;} the next index to assign
158 private int orderItems0(Type type, int idx, int maxDepth) { argument
162 return idx;
174 idx = orderItems0(superclass, idx, maxDepth);
180 idx
[all...]
H A DMemberIdsSection.java46 int idx = 0;
53 ((MemberIdItem) i).setIndex(idx);
54 idx++;
H A DTypeIdItem.java61 int idx = file.getStringIds().indexOf(descriptor);
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);
/dalvik/libdex/
H A DDexFile.h624 DEX_INLINE const DexStringId* dexGetStringId(const DexFile* pDexFile, u4 idx) { argument
625 assert(idx < pDexFile->pHeader->stringIdsSize);
626 return &pDexFile->pStringIds[idx];
629 DEX_INLINE const char* dexStringById(const DexFile* pDexFile, u4 idx) { argument
630 const DexStringId* pStringId = dexGetStringId(pDexFile, idx);
636 const char* dexStringAndSizeById(const DexFile* pDexFile, u4 idx,
640 DEX_INLINE const DexTypeId* dexGetTypeId(const DexFile* pDexFile, u4 idx) { argument
641 assert(idx < pDexFile->pHeader->typeIdsSize);
642 return &pDexFile->pTypeIds[idx];
649 DEX_INLINE const char* dexStringByTypeIdx(const DexFile* pDexFile, u4 idx) { argument
655 dexGetMethodId(const DexFile* pDexFile, u4 idx) argument
661 dexGetFieldId(const DexFile* pDexFile, u4 idx) argument
667 dexGetProtoId(const DexFile* pDexFile, u4 idx) argument
686 dexGetClassDef(const DexFile* pDexFile, u4 idx) argument
710 dexGetTypeItem(const DexTypeList* pList, u4 idx) argument
717 dexTypeListGetIdx(const DexTypeList* pList, u4 idx) argument
924 dexGetParameterAnnotationSetRef( const DexAnnotationSetRefList* pList, u4 idx) argument
939 dexGetAnnotationOff( const DexAnnotationSetItem* pAnnoSet, u4 idx) argument
947 dexGetAnnotationItem( const DexFile* pDexFile, const DexAnnotationSetItem* pAnnoSet, u4 idx) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstInteger.java64 int idx = (value & 0x7fffffff) % cache.length;
65 CstInteger obj = cache[idx];
72 cache[idx] = obj;
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstInteger.java64 int idx = (value & 0x7fffffff) % cache.length;
65 CstInteger obj = cache[idx];
72 cache[idx] = obj;
/dalvik/vm/mterp/c/
H A Dheader.cpp148 static inline s8 getLongFromArray(const u4* ptr, int idx) argument
153 ptr += idx;
159 memcpy(&val, &ptr[idx], 8);
165 static inline void putLongToArray(u4* ptr, int idx, s8 val) argument
170 ptr += idx;
175 memcpy(&ptr[idx], &val, 8);
180 static inline double getDoubleFromArray(const u4* ptr, int idx) argument
185 ptr += idx;
191 memcpy(&dval, &ptr[idx], 8);
197 static inline void putDoubleToArray(u4* ptr, int idx, doubl argument
[all...]

Completed in 5942 milliseconds

12345