Home | History | Annotate | Download | only in coregrind

Lines Matching refs:lno

1081    a->freelist[lno] with another block on the same list but with a
1085 void swizzle ( Arena* a, UInt lno )
1092 p_best = a->freelist[lno];
1107 if (p_best < a->freelist[lno]) {
1109 VG_(printf)("retreat by %ld\n", (Word)(a->freelist[lno] - p_best));
1111 a->freelist[lno] = p_best;
1593 UInt lno, i;
1630 for (lno = pszB_to_listNo(req_pszB); lno < N_MALLOC_LISTS; lno++) {
1632 b = a->freelist[lno];
1638 && lno < N_MALLOC_LISTS-1) {
1645 b = a->freelist[lno];
1647 a->freelist[lno] = get_next_b(b); // step one along
1653 if (b == a->freelist[lno]) break; // traversed entire freelist
1658 vg_assert(lno == N_MALLOC_LISTS);
1702 lno = pszB_to_listNo(bszB_to_pszB(a, new_sb->n_payload_bytes));
1703 mkFreeBlock ( a, b, new_sb->n_payload_bytes, lno);
1709 // Ok, we can allocate from b, which lives in list lno.
1711 vg_assert(lno < N_MALLOC_LISTS);
1712 vg_assert(a->freelist[lno] != NULL);
1726 unlinkBlock(a, b, lno);
1737 unlinkBlock(a, b, lno);