Lines Matching refs:opos
1253 size_t opos = mNextObjectHint; in readObject() local
1257 this, DPOS, opos); in readObject()
1261 if (opos < N) { in readObject()
1262 while (opos < (N-1) && OBJS[opos] < DPOS) { in readObject()
1263 opos++; in readObject()
1266 opos = N-1; in readObject()
1268 if (OBJS[opos] == DPOS) { in readObject()
1271 this, DPOS, opos); in readObject()
1272 mNextObjectHint = opos+1; in readObject()
1275 *objects_offset = opos; in readObject()
1281 while (opos > 0 && OBJS[opos] > DPOS) { in readObject()
1282 opos--; in readObject()
1284 if (OBJS[opos] == DPOS) { in readObject()
1287 this, DPOS, opos); in readObject()
1288 mNextObjectHint = opos+1; in readObject()
1291 *objects_offset = opos; in readObject()