Lines Matching refs:idx
708 u4 idx;
722 for (idx = 0; idx < count; idx++) {
727 pClassDef = dexGetClassDef(pDexFile, idx);
744 offsetTable[idx] = ptr - basePtr;
746 idx, offsetTable[idx], ptr, basePtr);
757 (ptr - basePtr) - offsetTable[idx]);
759 LOGV("%4d NOT mapadding '%s'\n", idx, classDescriptor);
760 assert(offsetTable[idx] == 0);
1338 int idx = (int) (bitNum * div);
1339 if (!(idx >= 0 && idx < kNumUpdatePosns)) {
1340 LOGE("FAIL: bitNum=%d (of %d) div=%.3f idx=%d\n",
1341 bitNum, method->registersSize, div, idx);
1344 pStats->updatePosn[idx]++;
1684 * Toggle the value of the "idx"th bit in "ptr".
1686 static inline void toggleBit(u1* ptr, int idx)
1688 ptr[idx >> 3] ^= 1 << (idx & 0x07);