HomeSort by relevance Sort by last modified time
    Searched refs:node_b (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/glsl/
ir_function.cpp 92 const exec_node *node_b = list_b->head; local
97 ; node_a = node_a->next, node_b = node_b->next) {
102 if (node_b->is_tail_sentinel())
107 const ir_instruction *const actual = (ir_instruction *) node_b;
156 if (!node_b->is_tail_sentinel())
194 const exec_node *node_b = list_b->head; local
197 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel()
198 ; node_a = node_a->next, node_b = node_b->next)
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.y 628 string_node_t *node_a, *node_b;
636 for (node_a = a->head, node_b = b->head;
637 node_a && node_b;
638 node_a = node_a->next, node_b = node_b->next)
640 if (strcmp (node_a->str, node_b->str))
647 return node_a == node_b;
830 token_node_t *node_a, *node_b;
833 node_b = b->head;
837 if (node_a == NULL && node_b == NULL
    [all...]

Completed in 212 milliseconds