Home
last modified time | relevance | path

Searched refs:new_vars (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinline_pass.h81 std::vector<std::unique_ptr<Instruction>>* new_vars,
88 std::vector<std::unique_ptr<Instruction>>* new_vars);
120 std::vector<std::unique_ptr<Instruction>>* new_vars,
Dinline_pass.cpp143 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars, in CloneAndMapLocals() argument
156 new_vars->push_back(std::move(var_inst)); in CloneAndMapLocals()
163 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars) { in CreateReturnVar() argument
190 new_vars->push_back(std::move(var_inst)); in CreateReturnVar()
238 std::vector<std::unique_ptr<Instruction>>* new_vars, in GenInlineCode() argument
266 if (!CloneAndMapLocals(calleeFn, new_vars, &callee2caller)) { in GenInlineCode()
275 returnVarId = CreateReturnVar(calleeFn, new_vars); in GenInlineCode()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dinline_pass.h79 std::vector<std::unique_ptr<Instruction>>* new_vars,
85 std::vector<std::unique_ptr<Instruction>>* new_vars);
115 std::vector<std::unique_ptr<Instruction>>* new_vars,
Dinline_pass.cpp133 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars, in CloneAndMapLocals() argument
143 new_vars->push_back(std::move(var_inst)); in CloneAndMapLocals()
149 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars) { in CreateReturnVar() argument
165 new_vars->push_back(std::move(var_inst)); in CreateReturnVar()
207 std::vector<std::unique_ptr<Instruction>>* new_vars, in GenInlineCode() argument
235 CloneAndMapLocals(calleeFn, new_vars, &callee2caller); in GenInlineCode()
238 uint32_t returnVarId = CreateReturnVar(calleeFn, new_vars); in GenInlineCode()
/external/mesa3d/src/compiler/nir/
Dnir_lower_io_to_temporaries.c43 emit_copies(nir_cursor cursor, nir_shader *shader, struct exec_list *new_vars, in emit_copies() argument
46 assert(exec_list_length(new_vars) == exec_list_length(old_vars)); in emit_copies()
48 foreach_two_lists(new_node, new_vars, old_node, old_vars) { in emit_copies()
/external/python/cpython3/Python/
Dcontext.c691 PyHamtObject *new_vars = _PyHamt_Assoc( in contextvar_set() local
693 if (new_vars == NULL) { in contextvar_set()
697 Py_SETREF(ctx->ctx_vars, new_vars); in contextvar_set()
716 PyHamtObject *new_vars = _PyHamt_Without(vars, (PyObject *)var); in contextvar_del() local
717 if (new_vars == NULL) { in contextvar_del()
721 if (vars == new_vars) { in contextvar_del()
722 Py_DECREF(new_vars); in contextvar_del()
727 Py_SETREF(ctx->ctx_vars, new_vars); in contextvar_del()
/external/tensorflow/tensorflow/python/ops/
Dcustom_gradient.py186 new_vars = after_vars - before_vars
187 for v in new_vars:
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Drev_block_lib.py224 new_vars = vs.global_variables()[len(vars_before):]
226 for new_var in new_vars: