Lines Matching refs:idx
393 int idx = 0;
405 LOGI(" %2d: type=%s %s %p\n", idx, kindStr, cpe->fileName, cpe->ptr);
413 idx++;
543 int idx, count;
579 idx = 0;
590 cpe[idx].kind = kCpeLastEntry;
591 cpe[idx].fileName = NULL;
592 cpe[idx].ptr = NULL;
602 cpe[idx] = tmp;
603 idx++;
609 assert(idx <= count);
610 if (idx == 0 && !gDvm.optimizing) {
617 LOGVV(" (filled %d of %d slots)\n", idx, count);
620 cpe[idx].kind = kCpeLastEntry;
621 cpe[idx].fileName = NULL;
622 cpe[idx].ptr = NULL;
760 StringObject* dvmGetBootPathResource(const char* name, int idx)
767 name, idx, cpe[idx].fileName);
769 /* we could use direct array index, but I don't entirely trust "idx" */
770 while (idx-- && cpe->kind != kCpeLastEntry)
1684 * the GC trying to scan the object while it's full of Idx
2996 int ifCount, superIfCount, idx;
3035 idx = superIfCount;
3055 clazz->iftable[idx++].clazz = interf;
3059 clazz->iftable[idx++].clazz = interf->iftable[j].clazz;
3063 assert(idx == ifCount);