Lines Matching refs:opos
2477 size_t opos = mNextObjectHint; in readObject() local
2481 this, DPOS, opos); in readObject()
2485 if (opos < N) { in readObject()
2486 while (opos < (N-1) && OBJS[opos] < DPOS) { in readObject()
2487 opos++; in readObject()
2490 opos = N-1; in readObject()
2492 if (OBJS[opos] == DPOS) { in readObject()
2495 this, DPOS, opos); in readObject()
2496 mNextObjectHint = opos+1; in readObject()
2502 while (opos > 0 && OBJS[opos] > DPOS) { in readObject()
2503 opos--; in readObject()
2505 if (OBJS[opos] == DPOS) { in readObject()
2508 this, DPOS, opos); in readObject()
2509 mNextObjectHint = opos+1; in readObject()