Lines Matching defs:gnodes
456 MakeInRandomOrder(GNode **gnodes, GNode **end, GNode *pgn)
461 for (r = (size_t)(end - gnodes); r >= 2; r--) {
464 GNode *t = gnodes[r - 1];
465 gnodes[r - 1] = gnodes[i];
466 gnodes[i] = t;
469 for (it = gnodes; it != end; it++)
474 MakeWaitGroupsInRandomOrder(GNodeList *gnodes, GNode *pgn)
482 for (ln = gnodes->first; ln != NULL; ln = ln->next)
501 MakeNodes(GNodeList *gnodes, GNode *pgn)
505 if (Lst_IsEmpty(gnodes))
508 MakeWaitGroupsInRandomOrder(gnodes, pgn);
512 for (ln = gnodes->first; ln != NULL; ln = ln->next) {