Searched defs:next_idx (Results 1 - 2 of 2) sorted by relevance

/systemd/src/basic/
H A Dhashmap.c472 static unsigned next_idx(HashmapBase *h, unsigned idx) { function
509 for (right = next_idx(h, left); ; right = next_idx(h, right)) {
536 for (prev = left, left = next_idx(h, left); left != right;
537 prev = left, left = next_idx(h, left)) {
961 idx = next_idx(h, idx);
1188 idx = next_idx(h, idx);
/systemd/src/udev/
H A Dudev-rules.c986 unsigned int next_idx = 0; local
995 next_idx = j;
1000 if (add_token(rules, &rule_tmp->token[next_idx]) != 0)
1002 rule_tmp->token[next_idx].type = TK_UNSET;
1005 if (next_idx == start)
1007 if (next_idx+1 == end)

Completed in 1384 milliseconds