Lines Matching refs:opos
2114 size_t opos = mNextObjectHint; in readObject() local
2118 this, DPOS, opos); in readObject()
2122 if (opos < N) { in readObject()
2123 while (opos < (N-1) && OBJS[opos] < DPOS) { in readObject()
2124 opos++; in readObject()
2127 opos = N-1; in readObject()
2129 if (OBJS[opos] == DPOS) { in readObject()
2132 this, DPOS, opos); in readObject()
2133 mNextObjectHint = opos+1; in readObject()
2139 while (opos > 0 && OBJS[opos] > DPOS) { in readObject()
2140 opos--; in readObject()
2142 if (OBJS[opos] == DPOS) { in readObject()
2145 this, DPOS, opos); in readObject()
2146 mNextObjectHint = opos+1; in readObject()