Home | History | Annotate | Download | only in nbperf

Lines Matching defs:visited

74 	uint32_t *visited;
94 if (!state->visited[e->vertices[0]]) {
97 } else if (!state->visited[e->vertices[1]]) {
101 if (state->visited[e->vertices[2]])
107 state->visited[t] = 2 + j;
108 if (state->visited[e->vertices[0]] == 0)
109 state->visited[e->vertices[0]] = 1;
110 if (state->visited[e->vertices[1]] == 0)
111 state->visited[e->vertices[1]] = 1;
112 if (state->visited[e->vertices[2]] == 0)
113 state->visited[e->vertices[2]] = 1;
127 if (state->visited[i] > 1) {
128 j = state->visited[i] - 2;
295 state.visited = calloc(sizeof(uint32_t), v);
299 state.g == NULL || state.visited == NULL ||
314 free(state.visited);