Home
last modified time | relevance | path

Searched refs:old_var (Results 1 – 11 of 11) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_nir_lower_64bit.cpp69 VarSplit get_var_pair(nir_variable *old_var);
226 auto old_var = nir_intrinsic_get_var(intr, 0); in split_load_deref_array() local
227 unsigned old_components = old_var->type->without_array()->components(); in split_load_deref_array()
231 auto vars = get_var_pair(old_var); in split_load_deref_array()
248 auto old_var = nir_intrinsic_get_var(intr, 0); in split_store_deref_array() local
249 unsigned old_components = old_var->type->without_array()->components(); in split_store_deref_array()
255 auto vars = get_var_pair(old_var); in split_store_deref_array()
276 auto old_var = nir_intrinsic_get_var(intr, 0); in split_store_deref_var() local
277 unsigned old_components = old_var->type->without_array()->components(); in split_store_deref_var()
283 auto vars = get_var_pair(old_var); in split_store_deref_var()
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_io_to_vector.c471 nir_variable *old_var = nir_deref_instr_get_variable(old_deref); in nir_lower_io_to_vector_impl() local
473 const unsigned loc = get_slot(old_var); in nir_lower_io_to_vector_impl()
474 const unsigned old_frac = old_var->data.location_frac; in nir_lower_io_to_vector_impl()
475 nir_variable *new_var = old_var->data.mode == nir_var_shader_in ? in nir_lower_io_to_vector_impl()
478 bool flat = old_var->data.mode == nir_var_shader_in ? in nir_lower_io_to_vector_impl()
526 nir_variable *old_var = nir_deref_instr_get_variable(old_deref); in nir_lower_io_to_vector_impl() local
528 const unsigned loc = get_slot(old_var); in nir_lower_io_to_vector_impl()
529 const unsigned old_frac = old_var->data.location_frac; in nir_lower_io_to_vector_impl()
/third_party/mesa3d/src/compiler/glsl/
Dlower_distance.cpp140 ir_variable **old_var; in visit() local
150 old_var = &old_distance_out_var; in visit()
155 old_var = &old_distance_in_var; in visit()
163 *old_var = ir; in visit()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Ddesc_sroa.h99 void CopyDecorationsForNewVariable(Instruction* old_var, uint32_t index,
Ddesc_sroa.cpp169 Instruction* old_var, uint32_t index, uint32_t new_var_id, in CopyDecorationsForNewVariable() argument
174 get_decoration_mgr()->GetDecorationsFor(old_var->result_id(), true)) { in CopyDecorationsForNewVariable()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Ddesc_sroa.h99 void CopyDecorationsForNewVariable(Instruction* old_var, uint32_t index,
Ddesc_sroa.cpp169 Instruction* old_var, uint32_t index, uint32_t new_var_id, in CopyDecorationsForNewVariable() argument
174 get_decoration_mgr()->GetDecorationsFor(old_var->result_id(), true)) { in CopyDecorationsForNewVariable()
/third_party/python/Lib/distutils/tests/
Dtest_build_ext.py125 old_var = _config_vars.get('Py_ENABLE_SHARED')
131 if old_var is None:
134 _config_vars['Py_ENABLE_SHARED'] = old_var
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_nir.c1425 nir_variable *old_var = old_tail->var; in redirect_sampler_derefs() local
1426 if (glsl_get_sampler_result_type(glsl_without_array(old_var->type)) == GLSL_TYPE_VOID) { in redirect_sampler_derefs()
1431 struct hash_entry *hash_entry = _mesa_hash_table_u64_search(data, old_var->data.binding); in redirect_sampler_derefs()
1436 new_var = nir_variable_clone(old_var, b->shader); in redirect_sampler_derefs()
1437 new_var->type = get_bare_samplers_for_type(old_var->type); in redirect_sampler_derefs()
1439 _mesa_hash_table_u64_insert(data, old_var->data.binding, new_var); in redirect_sampler_derefs()
/third_party/boost/boost/graph/
Dnamed_function_params.hpp541 #define BOOST_GRAPH_DECLARE_CONVERTED_PARAMETERS(old_type, old_var) \ argument
546 old_type >::conv(old_var);
/third_party/boost/libs/contract/doc/
Dtutorial.qbk203 boost::contract::old_ptr<old_type> old_var = BOOST_CONTRACT_OLDOF(old_expr);
208 … BOOST_CONTRACT_ASSERT(*old_var == ...); // ...but should not modify captures.
212 … BOOST_CONTRACT_ASSERT(old_var->...); // ...but should not modify captures.