Lines Matching defs:gnodes
453 MakeInRandomOrder(GNode **gnodes, GNode **end, GNode *pgn)
458 for (r = (size_t)(end - gnodes); r >= 2; r--) {
461 GNode *t = gnodes[r - 1];
462 gnodes[r - 1] = gnodes[i];
463 gnodes[i] = t;
466 for (it = gnodes; it != end; it++)
471 MakeWaitGroupsInRandomOrder(GNodeList *gnodes, GNode *pgn)
479 for (ln = gnodes->first; ln != NULL; ln = ln->next)
498 MakeNodes(GNodeList *gnodes, GNode *pgn)
502 if (Lst_IsEmpty(gnodes))
505 MakeWaitGroupsInRandomOrder(gnodes, pgn);
509 for (ln = gnodes->first; ln != NULL; ln = ln->next) {