Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow_deprecated_py2.py405 new_vars = body(iterate, *loop_vars)
408 if new_vars:
409 loop_vars += new_vars
469 new_vars = body(iterate, *loop_vars)
472 if new_vars:
473 loop_vars += new_vars
524 new_vars = body(iterate, *loop_vars)
527 if new_vars:
528 loop_vars += new_vars
580 new_vars = body(opt_iterate.get_value(), *loop_vars)
[all …]
Dcontrol_flow.py983 new_vars = func()
987 return new_vars, new_state
/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.cpp142 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars, in CloneAndMapLocals() argument
155 new_vars->push_back(std::move(var_inst)); in CloneAndMapLocals()
162 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars) { in CreateReturnVar() argument
189 new_vars->push_back(std::move(var_inst)); in CreateReturnVar()
237 std::vector<std::unique_ptr<Instruction>>* new_vars, in GenInlineCode() argument
265 if (!CloneAndMapLocals(calleeFn, new_vars, &callee2caller)) { in GenInlineCode()
274 returnVarId = CreateReturnVar(calleeFn, new_vars); in GenInlineCode()
/external/deqp-deps/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.cpp142 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars, in CloneAndMapLocals() argument
155 new_vars->push_back(std::move(var_inst)); in CloneAndMapLocals()
162 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars) { in CreateReturnVar() argument
189 new_vars->push_back(std::move(var_inst)); in CreateReturnVar()
237 std::vector<std::unique_ptr<Instruction>>* new_vars, in GenInlineCode() argument
265 if (!CloneAndMapLocals(calleeFn, new_vars, &callee2caller)) { in GenInlineCode()
274 returnVarId = CreateReturnVar(calleeFn, new_vars); in GenInlineCode()
/external/angle/third_party/spirv-tools/src/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.cpp142 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars, in CloneAndMapLocals() argument
155 new_vars->push_back(std::move(var_inst)); in CloneAndMapLocals()
162 Function* calleeFn, std::vector<std::unique_ptr<Instruction>>* new_vars) { in CreateReturnVar() argument
189 new_vars->push_back(std::move(var_inst)); in CreateReturnVar()
237 std::vector<std::unique_ptr<Instruction>>* new_vars, in GenInlineCode() argument
265 if (!CloneAndMapLocals(calleeFn, new_vars, &callee2caller)) { in GenInlineCode()
274 returnVarId = CreateReturnVar(calleeFn, new_vars); in GenInlineCode()
/external/python/cpython3/Python/
Dcontext.c707 PyHamtObject *new_vars = _PyHamt_Assoc( in contextvar_set() local
709 if (new_vars == NULL) { in contextvar_set()
713 Py_SETREF(ctx->ctx_vars, new_vars); in contextvar_set()
732 PyHamtObject *new_vars = _PyHamt_Without(vars, (PyObject *)var); in contextvar_del() local
733 if (new_vars == NULL) { in contextvar_del()
737 if (vars == new_vars) { in contextvar_del()
738 Py_DECREF(new_vars); in contextvar_del()
743 Py_SETREF(ctx->ctx_vars, new_vars); in contextvar_del()
/external/mesa3d/src/compiler/nir/
Dnir_lower_io_to_vector.c210 nir_variable *new_vars[MAX_SLOTS][4], in create_new_io_vars()
277 new_vars[loc][i] = var; in create_new_io_vars()
307 new_vars[loc + i][j] = var; in create_new_io_vars()
/external/tensorflow/tensorflow/python/ops/
Dcustom_gradient.py322 new_vars = after_vars - before_vars
323 new_vars_list = [v.deref() for v in new_vars]
/external/mesa3d/src/amd/compiler/
Daco_register_allocation.cpp910 …std::set<std::pair<unsigned, unsigned>> new_vars = collect_vars(ctx, reg_file, PhysReg{reg_lo}, si… in get_regs_for_copies() local
915 …if (!get_regs_for_copies(ctx, reg_file, parallelcopies, new_vars, lb, ub, instr, def_reg_lo, def_r… in get_regs_for_copies()