Lines Matching defs:right
188 * Append the runlist @src after element @loc in @dst. Merge the right end of
207 bool right = false; /* Right end of @src needs merging. */
213 /* First, check if the right hand end needs merging. */
215 right = ntfs_are_rl_mergeable(src + ssize - 1, dst + loc + 1);
218 dst = ntfs_rl_realloc(dst, dsize, dsize + ssize - right);
226 /* First, merge the right hand end, if necessary. */
227 if (right)
234 ntfs_rl_mm(dst, marker, loc + 1 + right, dsize - (loc + 1 + right));
353 * right ends of the inserted runlist, if necessary.
372 bool right = false; /* Right end of @src needs merging. */
379 /* First, see if the left and right ends need merging. */
381 right = ntfs_are_rl_mergeable(src + ssize - 1, dst + loc + 1);
385 * Allocate some space. We will need less if the left, right, or both
388 delta = ssize - 1 - left - right;
399 /* First, merge the left and right ends, if necessary. */
400 if (right)
409 * replaced run. However, if @right, then one of @dst's runs is
412 tail = loc + right + 1;
1103 * This for example allows us to allocate a buffer of the right size when