Lines Matching refs:hnb
522 off_t hnb; in matamap_overlap() local
526 for (hnb = 0; nb; nb -= hnb, mof += hnb) { in matamap_overlap()
528 hnb = MAPBLOCKSIZE - (mof & MAPBLOCKOFF); in matamap_overlap()
529 if (hnb > nb) in matamap_overlap()
530 hnb = nb; in matamap_overlap()
537 if (DATAoverlapME(mof, hnb, me)) in matamap_overlap()
555 off_t hnb; in matamap_within() local
561 for (hnb = 0; nb && scans == withins; nb -= hnb, mof += hnb) { in matamap_within()
564 hnb = MAPBLOCKSIZE - (mof & MAPBLOCKOFF); in matamap_within()
565 if (hnb > nb) in matamap_within()
566 hnb = nb; in matamap_within()
573 if (DATAwithinME(mof, hnb, me)) { in matamap_within()