Searched defs:right (Results 1 - 4 of 4) sorted by relevance

/systemd/src/basic/
H A Dstrbuf.c110 int left = 0, right = node->children_count; local
112 while (right > left) {
113 int middle = (right + left) / 2 ;
117 right = middle;
H A Dc-rbtree.h33 * three fields. The @left and @right members can be accessed by the API user
52 * @right: right child, or NULL
55 * pointers to its left and right child, which can be freely accessed by the
56 * API user at any time. They are NULL, if the node does not have a left/right
71 CRBNode *right; member in struct:CRBNode
220 i = i->right;
287 i = &(*i)->right;
H A Dhashmap.c496 unsigned left, right, prev, dib; local
508 /* Find the stop bucket ("right"). It is either free or has DIB == 0. */
509 for (right = next_idx(h, left); ; right = next_idx(h, right)) {
510 raw_dib = dibs[right];
517 assert(left != right);
535 /* Now shift all buckets in the interval (left, right) one step backwards */
536 for (prev = left, left = next_idx(h, left); left != right;
/systemd/src/journal/
H A Djournal-file.c1757 /* OK, what we are looking for is right of the
1770 uint64_t left, right, k, lp; local
1777 right = MIN(k, n);
1778 if (right <= 0)
1781 i = right - 1;
1795 right -= 1;
1798 assert(last_index <= right);
1822 right = x;
1827 if (last_index < right) {
1842 right
[all...]

Completed in 1164 milliseconds