Home | History | Annotate | Download | only in analysis

Lines Matching refs:idx

709     u4 idx;
723 for (idx = 0; idx < count; idx++) {
728 pClassDef = dexGetClassDef(pDexFile, idx);
745 offsetTable[idx] = ptr - basePtr;
747 idx, offsetTable[idx], ptr, basePtr);
758 (ptr - basePtr) - offsetTable[idx]);
760 ALOGV("%4d NOT mapadding '%s'", idx, classDescriptor);
761 assert(offsetTable[idx] == 0);
1339 int idx = (int) (bitNum * div);
1340 if (!(idx >= 0 && idx < kNumUpdatePosns)) {
1341 ALOGE("FAIL: bitNum=%d (of %d) div=%.3f idx=%d",
1342 bitNum, method->registersSize, div, idx);
1345 pStats->updatePosn[idx]++;
1680 * Toggle the value of the "idx"th bit in "ptr".
1682 static inline void toggleBit(u1* ptr, int idx)
1684 ptr[idx >> 3] ^= 1 << (idx & 0x07);