Home
last modified time | relevance | path

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

/third_party/mesa3d/src/compiler/glsl/
Dir_function.cpp47 const exec_node *node_b = list_b->get_head_raw(); in parameter_lists_match() local
55 ; node_a = node_a->next, node_b = node_b->next) { in parameter_lists_match()
60 if (node_b->is_tail_sentinel()) in parameter_lists_match()
65 const ir_rvalue *const actual = (ir_rvalue *) node_b; in parameter_lists_match()
113 if (!node_b->is_tail_sentinel()) in parameter_lists_match()
227 const exec_node *node_b = (*other)->parameters.get_head_raw(); in is_best_inexact_overload() local
235 node_b = node_b->next, in is_best_inexact_overload()
241 (const ir_variable *)node_b, in is_best_inexact_overload()
377 const exec_node *node_b = list_b->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
1182 node_b = b->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.cpp157 merge_node& node_b = ctx.merge_node_table[b.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()
170 merge_node& node_b = ctx.merge_node_table[b.id()]; in dominates() local
171 unsigned idom = node_b.defined_at; in dominates()
/third_party/python/Objects/
Dodictobject.c800 _ODictNode *node_a, *node_b; in _odict_keys_equal() local
803 node_b = _odict_FIRST(b); 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()
814 (PyObject *)_odictnode_KEY(node_b), in _odict_keys_equal()
823 node_b = _odictnode_NEXT(node_b); in _odict_keys_equal()
/third_party/astc-encoder/Source/
Dastcenc_entry.cpp549 auto& node_b = (*preset_configs)[end]; in astcenc_config_init() local
551 float wt_range = node_b.quality - node_a.quality; in astcenc_config_init()
555 float wt_node_a = (node_b.quality - 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()
561 (static_cast<float>(node_b.param) * wt_node_b)) in astcenc_config_init()
/third_party/skia/third_party/externals/tint/src/
Dclone_context_test.cc37 const Node* node_b = nullptr, in Node()
39 : allocator(alloc), name(n), a(node_a), b(node_b), c(node_c) {} in Node()
61 const Node* node_b = nullptr, in Replaceable()
63 : Base(alloc, n, node_a, node_b, node_c) {} in Replaceable()