Lines Matching refs:arl
1630 * @arl: address of runlist to truncate
1633 * Truncate the runlist *@arl starting at vcn @start_vcn as well as the memory
1638 * NOTE: @arl is the address of the runlist. We need the address so we can
1641 int ntfs_rl_truncate(runlist **arl, const VCN start_vcn)
1646 if (!arl || !*arl) {
1648 if (!arl)
1649 ntfs_log_perror("rl_truncate error: arl: %p", arl);
1652 " arl: %p *arl: %p", arl, *arl);
1656 rl = *arl;
1702 size_t new_size = (rl - *arl + 1) * sizeof(runlist_element);
1703 rl = realloc(*arl, new_size);
1705 *arl = rl;