Lines Matching defs:out
370 Graph::Node *out[2];
379 out[n++] = ei.getNode();
380 eR = out[1]->outgoing().getType();
382 // IF block is out edge to the right
386 if (out[1]->outgoingCount() != 1) // 0 is IF { RET; }, >1 is more divergence
389 if (out[1]->outgoing().getNode() == out[0])
391 if (out[0]->outgoingCount() == 1)
392 if (out[0]->outgoing().getNode() == out[1]->outgoing().getNode())
511 FILE *out = fopen(filePath, "a");
512 if (!out) {
518 fprintf(out, "digraph G {\n");
528 fprintf(out, "\t%i -> %i;\n", idA, idB);
531 fprintf(out, "\t%i -> %i [color=green];\n", idA, idB);
534 fprintf(out, "\t%i -> %i [color=red];\n", idA, idB);
537 fprintf(out, "\t%i -> %i;\n", idA, idB);
546 fprintf(out, "}\n");
547 fclose(out);