Lines Matching refs:lno
1118 void swizzle ( Arena* a, UInt lno ) in swizzle() argument
1125 p_best = a->freelist[lno]; in swizzle()
1140 if (p_best < a->freelist[lno]) { in swizzle()
1142 VG_(printf)("retreat by %ld\n", (Word)(a->freelist[lno] - p_best)); in swizzle()
1144 a->freelist[lno] = p_best; in swizzle()
1677 UInt lno, i; in VG_() local
1714 for (lno = pszB_to_listNo(req_pszB); lno < N_MALLOC_LISTS; lno++) { in VG_()
1716 b = a->freelist[lno]; in VG_()
1722 && lno < N_MALLOC_LISTS-1) { in VG_()
1729 b = a->freelist[lno]; in VG_()
1731 a->freelist[lno] = get_next_b(b); // step one along in VG_()
1737 if (b == a->freelist[lno]) break; // traversed entire freelist in VG_()
1742 vg_assert(lno == N_MALLOC_LISTS); in VG_()
1786 lno = pszB_to_listNo(bszB_to_pszB(a, new_sb->n_payload_bytes)); in VG_()
1787 mkFreeBlock ( a, b, new_sb->n_payload_bytes, lno); in VG_()
1795 vg_assert(lno < N_MALLOC_LISTS); in VG_()
1796 vg_assert(a->freelist[lno] != NULL); in VG_()
1810 unlinkBlock(a, b, lno); in VG_()
1821 unlinkBlock(a, b, lno); in VG_()