Lines Matching refs:DBLKSIZ
147 where = (((off64_t)db->dbm_dirbno) * DBLKSIZ); in dbm_flushdir()
149 (write(db->dbm_dirf, db->dbm_dirbuf, DBLKSIZ) != DBLKSIZ)) { in dbm_flushdir()
736 i = bn % DBLKSIZ; in dbm_access()
737 b = bn / DBLKSIZ; in dbm_access()
742 where = (((off64_t)b) * DBLKSIZ); in dbm_access()
744 (read(db->dbm_dirf, db->dbm_dirbuf, DBLKSIZ) != in dbm_access()
745 DBLKSIZ)) in dbm_access()
746 (void) memset(db->dbm_dirbuf, 0, DBLKSIZ); in dbm_access()
794 i = bn % DBLKSIZ; in getbit()
795 b = bn / DBLKSIZ; in getbit()
800 where = (((off64_t)b) * DBLKSIZ); in getbit()
802 (read(db->dbm_dirf, db->dbm_dirbuf, DBLKSIZ) != DBLKSIZ)) in getbit()
803 (void) memset(db->dbm_dirbuf, 0, DBLKSIZ); in getbit()
819 i = bn % DBLKSIZ; in setbit()
820 b = bn / DBLKSIZ; in setbit()
825 where = (((off64_t)b) * DBLKSIZ); in setbit()
827 (read(db->dbm_dirf, db->dbm_dirbuf, DBLKSIZ) != DBLKSIZ)) in setbit()
828 (void) memset(db->dbm_dirbuf, 0, DBLKSIZ); in setbit()
835 where = (((off64_t)b) * DBLKSIZ); in setbit()
837 (write(db->dbm_dirf, db->dbm_dirbuf, DBLKSIZ) != DBLKSIZ)) { in setbit()