Lines Matching refs:where
127 off64_t where; in dbm_flushpag() local
130 where = (((off64_t)db->dbm_pagbno) * PBLKSIZ); in dbm_flushpag()
131 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_flushpag()
145 off64_t where; in dbm_flushdir() local
147 where = (((off64_t)db->dbm_dirbno) * DBLKSIZ); in dbm_flushdir()
148 if ((lseek64(db->dbm_dirf, where, L_SET) != where) || in dbm_flushdir()
276 off64_t where; in dbm_delete() local
293 where = (((off64_t)db->dbm_blkno) * PBLKSIZ); in dbm_delete()
294 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_delete()
311 off64_t where; in dbm_store() local
336 where = (((off64_t)db->dbm_blkno) * PBLKSIZ); in dbm_store()
337 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_store()
379 where = (((off64_t)db->dbm_blkno) * PBLKSIZ); in dbm_store()
380 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_store()
386 where = (((off64_t)db->dbm_blkno + db->dbm_hmask + 1) * PBLKSIZ); in dbm_store()
387 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_store()
499 off64_t where; in dbm_slow_nextkey() local
511 where = (((off64_t)db->dbm_blkptr) * PBLKSIZ); in dbm_slow_nextkey()
512 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_slow_nextkey()
554 off64_t where; in dbm_do_nextkey() local
584 where = (((off64_t)db->dbm_blkptr) * PBLKSIZ); in dbm_do_nextkey()
585 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_do_nextkey()
727 off64_t where; in dbm_access() local
742 where = (((off64_t)b) * DBLKSIZ); in dbm_access()
743 if ((lseek64(db->dbm_dirf, where, L_SET) != where) || in dbm_access()
762 where = (((off64_t)db->dbm_pagbno) * PBLKSIZ); in dbm_access()
763 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_access()
772 where = (((off64_t)my_blkno) * PBLKSIZ); in dbm_access()
773 if ((lseek64(db->dbm_pagf, where, L_SET) != where) || in dbm_access()
788 off64_t where; in getbit() local
800 where = (((off64_t)b) * DBLKSIZ); in getbit()
801 if ((lseek64(db->dbm_dirf, where, L_SET) != where) || in getbit()
813 off64_t where; in setbit() local
825 where = (((off64_t)b) * DBLKSIZ); in setbit()
826 if ((lseek64(db->dbm_dirf, where, L_SET) != where) || in setbit()
835 where = (((off64_t)b) * DBLKSIZ); in setbit()
836 if ((lseek64(db->dbm_dirf, where, L_SET) != where) || in setbit()