Home
last modified time | relevance | path

Searched refs:node_a (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
Dir_function.cpp46 const exec_node *node_a = list_a->get_head_raw(); in parameter_lists_match() local
54 ; !node_a->is_tail_sentinel() in parameter_lists_match()
55 ; node_a = node_a->next, node_b = node_b->next) { in parameter_lists_match()
64 const ir_variable *const param = (ir_variable *) node_a; in parameter_lists_match()
226 const exec_node *node_a = sig->parameters.get_head_raw(); in is_best_inexact_overload() local
233 ; !node_a->is_tail_sentinel() in is_best_inexact_overload()
234 ; node_a = node_a->next, in is_best_inexact_overload()
238 (const ir_variable *)node_a, in is_best_inexact_overload()
376 const exec_node *node_a = list_a->get_head_raw(); in parameter_lists_match_exact() local
380 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel() in parameter_lists_match_exact()
[all …]
/third_party/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-parse.y961 string_node_t *node_a, *node_b; in _string_list_equal() local
969 for (node_a = a->head, node_b = b->head; in _string_list_equal()
970 node_a && node_b; in _string_list_equal()
971 node_a = node_a->next, node_b = node_b->next) in _string_list_equal()
973 if (strcmp (node_a->str, node_b->str)) in _string_list_equal()
980 return node_a == node_b; in _string_list_equal()
1173 token_node_t *node_a, *node_b; in _token_list_equal_ignoring_space() local
1181 node_a = a->head; in _token_list_equal_ignoring_space()
1186 if (node_a == NULL && node_b == NULL) in _token_list_equal_ignoring_space()
1190 if (node_a == NULL && node_b->token->type == SPACE) { in _token_list_equal_ignoring_space()
[all …]
/third_party/mesa3d/src/amd/compiler/
Daco_lower_to_cssa.cpp156 merge_node& node_a = ctx.merge_node_table[a.id()]; in defined_after() local
158 if (node_a.defined_at == node_b.defined_at) in defined_after()
161 return node_a.defined_at > node_b.defined_at; in defined_after()
169 merge_node& node_a = ctx.merge_node_table[a.id()]; in dominates() local
172 while (idom > node_a.defined_at) in dominates()
176 return idom == node_a.defined_at; in dominates()
/third_party/python/Objects/
Dodictobject.c800 _ODictNode *node_a, *node_b; in _odict_keys_equal() local
802 node_a = _odict_FIRST(a); in _odict_keys_equal()
805 if (node_a == NULL && node_b == NULL) in _odict_keys_equal()
808 else if (node_a == NULL || node_b == NULL) in _odict_keys_equal()
813 (PyObject *)_odictnode_KEY(node_a), in _odict_keys_equal()
822 node_a = _odictnode_NEXT(node_a); in _odict_keys_equal()
/third_party/astc-encoder/Source/
Dastcenc_entry.cpp548 auto& node_a = (*preset_configs)[start]; in astcenc_config_init() local
551 float wt_range = node_b.quality - node_a.quality; in astcenc_config_init()
556 float wt_node_b = (quality - node_a.quality) / wt_range; in astcenc_config_init()
558 #define LERP(param) ((node_a.param * wt_node_a) + (node_b.param * wt_node_b)) in astcenc_config_init()
560 (static_cast<float>(node_a.param) * wt_node_a) + \ in astcenc_config_init()
/third_party/skia/third_party/externals/tint/src/
Dclone_context_test.cc36 const Node* node_a = nullptr, in Node()
39 : allocator(alloc), name(n), a(node_a), b(node_b), c(node_c) {} in Node()
60 const Node* node_a = nullptr, in Replaceable()
63 : Base(alloc, n, node_a, node_b, node_c) {} in Replaceable()