Home
last modified time | relevance | path

Searched refs:use (Results 1 - 25 of 1047) sorted by relevance

12345678910>>...42

/third_party/typescript/tests/baselines/reference/
H A DdownlevelLetConst16.js2 'use strict'
4 declare function use(a: any);
9 use(x);
10 use(y);
11 use(z);
14 use(x);
16 use(y);
18 use(z);
24 use(x);
26 use(
[all...]
H A DdownlevelLetConst14.js2 'use strict'
3 declare function use(a: any);
9 use(x);
12 use(z0);
14 use(z1);
16 use(z2);
18 use(z3);
20 use(x);
21 use(z0);
22 use(z
[all...]
H A DdownlevelLetConst15.js2 'use strict'
3 declare function use(a: any);
9 use(x);
12 use(z0);
14 use(z1);
16 use(z2);
18 use(z3);
20 use(x);
21 use(z0);
22 use(z
[all...]
H A DdownlevelLetConst17.js2 'use strict'
4 declare function use(a: any);
8 use(x);
10 use(x);
13 use(x);
18 use(x);
24 use(x);
28 use(x);
34 use(x);
40 use(
[all...]
H A DcapturedLetConstInLoop3.js3 declare function use(a: any);
11 use(v);
21 use(v);
31 use(v);
42 use(v);
53 use(v);
64 use(v);
74 use(v);
86 use(v)
97 use(
[all...]
H A DcapturedLetConstInLoop3_ES6.js3 declare function use(a: any);
11 use(v);
21 use(v);
31 use(v);
42 use(v);
53 use(v);
64 use(v);
74 use(v);
86 use(v)
97 use(
[all...]
H A DcapturedLetConstInLoop5_ES6.js2 declare function use(a: any);
15 use(v);
28 use(v);
41 use(v);
55 use(v);
69 use(v);
83 use(v);
96 use(v);
111 use(v)
125 use(
[all...]
H A DfallFromLastCase2.js2 declare function use(a: string);
7 use("1");
10 use("2");
12 use("3");
20 use("1");
23 use("2");
25 use("3");
33 use("1");
36 use("2");
38 use("
[all...]
H A DdownlevelLetConst19.js2 'use strict'
3 declare function use(a: any);
8 use(x);
13 use(x);
15 use(x);
18 use(x)
20 use(x)
23 'use strict';
28 use(x_1);
32 use(x_
[all...]
H A DcapturedLetConstInLoop5.js2 declare function use(a: any);
15 use(v);
28 use(v);
41 use(v);
55 use(v);
69 use(v);
83 use(v);
96 use(v);
111 use(v)
125 use(
[all...]
H A DfallFromLastCase1.js2 declare function use(a: string);
7 use("1");
10 use("2");
18 use("1");
21 use("2");
29 use("1");
32 use("2");
38 use("1");
41 use("2");
H A DpathMappingBasedModuleResolution5_node.js9 declare function use(a: any): void;
11 use(x.toExponential());
12 use(y.toExponential());
13 use(z.toExponential());
14 use(z1.toExponential());
29 "use strict";
34 "use strict";
39 "use strict";
44 "use strict";
50 use(file1_
[all...]
H A DcapturedLetConstInLoop1.js2 declare function use(x: any): any;
61 for (let y = (use(() => y), 0); y < 1; ++y) {
64 for (let y = 0; use(() => y), y < 1; ++y) {
67 for (let y = 0; y < 1; use(() => y), ++y) {
70 for (let y = (use(() => y), 0); use(() => y), y < 1; use(() => y), ++y) {
71 use(() => y);
221 var y = (use(function () { return y; }), 0);
233 if (!(use(functio
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dloop-unrolling.cc68 for (Node* use : stack_check->uses()) { in UnrollLoop()
69 if (use->opcode() == IrOpcode::kEffectPhi) { in UnrollLoop()
85 // {use}: EffectPhi (stack check effect that we need to replace) in UnrollLoop()
86 DCHECK_EQ(use->opcode(), IrOpcode::kEffectPhi); in UnrollLoop()
87 DCHECK_EQ(NodeProperties::GetEffectInput(use), stack_check); in UnrollLoop()
93 COPY(use, i)->ReplaceUses(COPY(replacing_effect, i)); in UnrollLoop()
113 Node* use = use_edge.from(); in UnrollLoop() local
114 if (loop->count(use) == 1) { in UnrollLoop()
119 if (use->opcode() == IrOpcode::kLoopExitEffect) { in UnrollLoop()
122 DCHECK(use in UnrollLoop()
[all...]
H A Dnode.cc26 // Extract the inputs from the old use and input pointers and copy them in ExtractFrom()
122 Use* use = use_ptr - 1 - current; in NewImpl() local
123 use->bit_field_ = Use::InputIndexField::encode(current) | in NewImpl()
125 to->AppendUse(use); in NewImpl()
164 Use* use = GetUsePtr(inline_count); in AppendInput() local
166 use->bit_field_ = Use::InputIndexField::encode(inline_count) | in AppendInput()
168 new_to->AppendUse(use); in AppendInput()
181 // use current out of line inputs. in AppendInput()
193 Use* use = GetUsePtr(input_count); in AppendInput() local
195 use in AppendInput()
411 RemoveUse(Use* use) RemoveUse() argument
[all...]
H A Dwasm-loop-peeling.cc58 // LoopExit node in the peeled iteration, use its control input instead. in PeelWasmLoop()
63 Node* use = use_edge.from(); in PeelWasmLoop() local
64 if (loop->count(use) == 1) { in PeelWasmLoop()
68 DCHECK(use->opcode() == IrOpcode::kLoopExitEffect || in PeelWasmLoop()
69 use->opcode() == IrOpcode::kLoopExitValue); in PeelWasmLoop()
71 use->opcode() == IrOpcode::kLoopExitEffect in PeelWasmLoop()
73 : common->Phi(LoopExitValueRepresentationOf(use->op()), 2); in PeelWasmLoop()
74 Node* phi = graph->NewNode(phi_operator, use, in PeelWasmLoop()
75 copier.map(use)->InputAt(0), merge_node); in PeelWasmLoop()
76 use in PeelWasmLoop()
[all...]
/third_party/spirv-tools/source/opt/
H A Dcopy_prop_arrays.cpp4 // you may not use this file except in compliance with the License.
116 var_inst, [&store_inst, var_inst](Instruction* use) { in FindStoreInstruction()
117 if (use->opcode() == spv::Op::OpStore && in FindStoreInstruction()
118 use->GetSingleWordInOperand(kStorePointerInOperand) == in FindStoreInstruction()
121 store_inst = use; in FindStoreInstruction()
168 return get_def_use_mgr()->WhileEachUser(ptr_inst, [this](Instruction* use) { in HasNoStores()
169 if (use->opcode() == spv::Op::OpLoad) { in HasNoStores()
171 } else if (use->opcode() == spv::Op::OpAccessChain) { in HasNoStores()
172 return HasNoStores(use); in HasNoStores()
173 } else if (use in HasNoStores()
[all...]
H A Ddesc_sroa.cpp4 // you may not use this file except in compliance with the License.
59 [this, &access_chain_work_list, &load_work_list](Instruction* use) { in ReplaceCandidate()
60 if (use->opcode() == spv::Op::OpName) { in ReplaceCandidate()
64 if (use->IsDecoration()) { in ReplaceCandidate()
68 switch (use->opcode()) { in ReplaceCandidate()
71 access_chain_work_list.push_back(use); in ReplaceCandidate()
74 load_work_list.push_back(use); in ReplaceCandidate()
78 "Variable cannot be replaced: invalid instruction", use); in ReplaceCandidate()
88 for (Instruction* use : access_chain_work_list) { in ReplaceCandidate()
89 if (!ReplaceAccessChain(var, use)) { in ReplaceCandidate()
101 ReplaceAccessChain(Instruction* var, Instruction* use) ReplaceAccessChain() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dcopy_prop_arrays.cpp4 // you may not use this file except in compliance with the License.
116 var_inst, [&store_inst, var_inst](Instruction* use) { in FindStoreInstruction()
117 if (use->opcode() == SpvOpStore && in FindStoreInstruction()
118 use->GetSingleWordInOperand(kStorePointerInOperand) == in FindStoreInstruction()
121 store_inst = use; in FindStoreInstruction()
160 return get_def_use_mgr()->WhileEachUser(ptr_inst, [this](Instruction* use) { in HasNoStores()
161 if (use->opcode() == SpvOpLoad) { in HasNoStores()
163 } else if (use->opcode() == SpvOpAccessChain) { in HasNoStores()
164 return HasNoStores(use); in HasNoStores()
165 } else if (use in HasNoStores()
[all...]
H A Ddesc_sroa.cpp4 // you may not use this file except in compliance with the License.
58 [this, &access_chain_work_list, &load_work_list](Instruction* use) { in ReplaceCandidate()
59 if (use->opcode() == SpvOpName) { in ReplaceCandidate()
63 if (use->IsDecoration()) { in ReplaceCandidate()
67 switch (use->opcode()) { in ReplaceCandidate()
70 access_chain_work_list.push_back(use); in ReplaceCandidate()
73 load_work_list.push_back(use); in ReplaceCandidate()
77 "Variable cannot be replaced: invalid instruction", use); in ReplaceCandidate()
87 for (Instruction* use : access_chain_work_list) { in ReplaceCandidate()
88 if (!ReplaceAccessChain(var, use)) { in ReplaceCandidate()
100 ReplaceAccessChain(Instruction* var, Instruction* use) ReplaceAccessChain() argument
[all...]
H A Dfix_storage_class.cpp4 // you may not use this file except in compliance with the License.
33 [&uses](Instruction* use, uint32_t op_idx) { in Process()
34 uses.push_back({use, op_idx}); in Process()
37 for (auto& use : uses) { in Process()
39 use.first, in Process()
44 PropagateType(use.first, inst->type_id(), use.second, &seen); in Process()
69 inst, [&uses](Instruction* use) { uses.push_back(use); }); in PropagateStorageClass()
70 for (Instruction* use in PropagateStorageClass()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dcopy_prop_arrays.cpp4 // you may not use this file except in compliance with the License.
116 var_inst, [&store_inst, var_inst](Instruction* use) { in FindStoreInstruction()
117 if (use->opcode() == SpvOpStore && in FindStoreInstruction()
118 use->GetSingleWordInOperand(kStorePointerInOperand) == in FindStoreInstruction()
121 store_inst = use; in FindStoreInstruction()
160 return get_def_use_mgr()->WhileEachUser(ptr_inst, [this](Instruction* use) { in HasNoStores()
161 if (use->opcode() == SpvOpLoad) { in HasNoStores()
163 } else if (use->opcode() == SpvOpAccessChain) { in HasNoStores()
164 return HasNoStores(use); in HasNoStores()
165 } else if (use in HasNoStores()
[all...]
H A Ddesc_sroa.cpp4 // you may not use this file except in compliance with the License.
58 [this, &access_chain_work_list, &load_work_list](Instruction* use) { in ReplaceCandidate()
59 if (use->opcode() == SpvOpName) { in ReplaceCandidate()
63 if (use->IsDecoration()) { in ReplaceCandidate()
67 switch (use->opcode()) { in ReplaceCandidate()
70 access_chain_work_list.push_back(use); in ReplaceCandidate()
73 load_work_list.push_back(use); in ReplaceCandidate()
77 "Variable cannot be replaced: invalid instruction", use); in ReplaceCandidate()
87 for (Instruction* use : access_chain_work_list) { in ReplaceCandidate()
88 if (!ReplaceAccessChain(var, use)) { in ReplaceCandidate()
100 ReplaceAccessChain(Instruction* var, Instruction* use) ReplaceAccessChain() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/core/
H A Dsubdev.c7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
57 const char *action = suspend ? "suspend" : subdev->use.enabled ? "fini" : "reset"; in nvkm_subdev_fini()
71 subdev->use.enabled = false; in nvkm_subdev_fini()
130 if (subdev->use.enabled) { in nvkm_subdev_init_()
142 subdev->use.enabled = true; in nvkm_subdev_init_()
162 mutex_lock(&subdev->use.mutex); in nvkm_subdev_init()
163 if (refcount_read(&subdev->use.refcount) == 0) { in nvkm_subdev_init()
165 mutex_unlock(&subdev->use.mutex); in nvkm_subdev_init()
170 mutex_unlock(&subdev->use.mutex); in nvkm_subdev_init()
179 mutex_lock(&subdev->use in nvkm_subdev_oneinit()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_to_lcssa.c8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
59 is_if_use_inside_loop(nir_src *use, nir_loop *loop) in is_if_use_inside_loop() argument
67 nir_cf_node_as_block(nir_cf_node_prev(&use->parent_if->cf_node)); in is_if_use_inside_loop()
77 is_use_inside_loop(nir_src *use, nir_loop *loop) in is_use_inside_loop() argument
84 if (use->parent_instr->block->index <= block_before_loop->index || in is_use_inside_loop()
85 use->parent_instr->block->index >= block_after_loop->index) { in is_use_inside_loop()
206 nir_foreach_use(use, def) { in convert_loop_exit_for_ssa()
207 if (use->parent_instr->type == nir_instr_type_phi && in convert_loop_exit_for_ssa()
208 use->parent_instr->block == state->block_after_loop) { in convert_loop_exit_for_ssa()
212 if (!is_use_inside_loop(use, stat in convert_loop_exit_for_ssa()
[all...]

Completed in 25 milliseconds

12345678910>>...42