Home
last modified time | relevance | path

Searched refs:uses (Results 226 - 250 of 385) sorted by relevance

12345678910>>...16

/kernel/linux/linux-6.6/drivers/infiniband/core/
H A Ddevice.c104 if (refcount_dec_and_test(&client->uses)) in ib_client_put()
549 * driver uses it. Adding anything in ib_core_device before in rdma_init_coredev()
703 if (!refcount_inc_not_zero(&client->uses)) in add_client_context()
1362 * If the driver uses ops.dealloc_driver and calls any ib_unregister_device()
1779 refcount_set(&client->uses, 1); in ib_register_client()
2535 * @gid: A GID that the net_dev uses to communicate.
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3.h144 /* Similar to IR3_REG_KILL, except that if there are multiple uses of the
150 /* Set when a destination doesn't have any uses and is dead immediately
440 struct set *uses; member
803 for (struct ir3_instruction *__use = (void *)~0; __use && (__instr)->uses; \
805 set_foreach ((__instr)->uses, __entry) \
1456 /* Return the type (float, int, or uint) the op uses when converting from the
/third_party/node/deps/v8/src/compiler/
H A Dscheduler.cc152 // Control nodes force coupled uses to be placed. in UpdatePlacement()
153 for (auto use : node->uses()) { in UpdatePlacement()
167 // schedulable. If all the uses of a node have been scheduled, then the node in UpdatePlacement()
1390 // Count the uses of every node, which is used to ensure that all of a in PrepareUses()
1391 // node's uses are scheduled before the node itself. in PrepareUses()
1421 // position to all uses. This in turn might push more nodes onto the queue.
1439 for (auto use : node->uses()) { in VisitNode()
1562 // Determine the dominating block for all of the uses of this node. It is in VisitNode()
1630 // The {block} is common dominator of all uses of {node}, so we cannot in SplitNode()
1640 // Check if the {node} has uses i in SplitNode()
[all...]
H A Dnode-properties.cc230 for (auto use : node->uses()) { in FindProjection()
H A Dnode.h143 Uses uses() { return Uses(this); } in uses() function in v8::internal::compiler::final
600 // A forward iterator to visit the uses edges of a node.
641 // A forward iterator to visit the uses of a node.
H A Dnode.cc60 // Node uses compressed pointers, so zone must support pointer compression. in NewImpl()
116 // Initialize the input pointers and the uses. in NewImpl()
150 DCHECK(uses().empty()); in Kill()
/third_party/mesa3d/src/gallium/auxiliary/nir/
H A Dnir_to_tgsi.c438 /* Propagate use requests from either our block's uses or our in ntt_live_regs()
748 struct list_head *uses, struct list_head *if_uses) in ntt_try_store_in_tgsi_output()
764 if (!list_is_empty(if_uses) || !list_is_singular(uses)) in ntt_try_store_in_tgsi_output()
767 nir_src *src = list_first_entry(uses, nir_src, use_link); in ntt_try_store_in_tgsi_output()
1045 /* XXX: nv50 uses the atomic flag to set caching for (lowered) atomic in ntt_setup_uniforms()
1075 if (!ntt_try_store_in_tgsi_output(c, &decl, &nir_reg->uses, &nir_reg->if_uses)) { in ntt_setup_registers()
1229 if (!ntt_try_store_in_tgsi_output(c, &dst, &ssa->uses, &ssa->if_uses)) in ntt_get_ssa_def_decl()
747 ntt_try_store_in_tgsi_output(struct ntt_compile *c, struct ureg_dst *dst, struct list_head *uses, struct list_head *if_uses) ntt_try_store_in_tgsi_output() argument
/kernel/linux/linux-5.10/drivers/scsi/
H A Dscript_asm.pl326 Illegal use of $1. Valid uses are
/kernel/linux/linux-5.10/scripts/
H A Dget_abi.pl554 Changes the location of the ABI search. By default, it uses
/kernel/linux/linux-6.6/drivers/scsi/
H A Dscript_asm.pl326 Illegal use of $1. Valid uses are
/third_party/gn/src/gn/
H A Dfunctions_target.cc226 file or a Python module it uses, those files should be listed in the "inputs"
581 # This example uses get_label_info() to compute the output directory of the
/third_party/mesa3d/src/compiler/nir/
H A Dnir_control_flow.c244 list_addtail(&src->src.use_link, &undef->def.uses); in nir_insert_phi_undef()
638 /* We need to walk the instructions and clean up defs/uses */ in cleanup_cf_node()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp80 STATISTIC(NumCopyForwards, "Number of copy uses forwarded");
362 // Check that the existing copy uses the correct sub registers. in eraseIfRedundant()
444 /// Check that \p MI does not have implicit uses that overlap with it's \p Use
454 for (const MachineOperand &MIUse : MI.uses()) in hasImplicitOverlap()
468 // Look for non-tied explicit vreg uses that have an active COPY in forwardUses()
500 // FIXME: Don't handle partial uses of wider COPYs yet. in forwardUses()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp399 // Add some fake uses for OpenMP provided arguments. in CreateParallel()
468 for (Use &U : V.uses()) in CreateParallel()
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_type.cpp509 // The only valid uses of OpTypeFunction are in an OpFunction, debugging, or in ValidateTypeFunction()
511 for (auto& pair : inst->uses()) { in ValidateTypeFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_type.cpp509 // The only valid uses of OpTypeFunction are in an OpFunction, debugging, or in ValidateTypeFunction()
511 for (auto& pair : inst->uses()) { in ValidateTypeFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp80 /// Describe uses of address (alloca or parameter) inside of the function.
146 /// Describes uses of allocas and parameters inside of a single function.
150 // Informations about allocas uses.
152 // Informations about parameters uses.
178 O << " args uses:\n"; in print()
181 O << " allocas uses:\n"; in print()
281 /// The function analyzes all local uses of Ptr (alloca or argument) and
288 // A DFS search through all uses of the alloca in bitcasts/PHI/GEPs/etc. in analyzeAllUses()
291 for (const Use &UI : V->uses()) { in analyzeAllUses()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp113 for (auto &U : V->uses()) {
/third_party/spirv-tools/source/val/
H A Dvalidate_annotation.cpp343 for (auto pair : decoration_group->uses()) { in ValidateDecorationGroup()
H A Dvalidate_type.cpp504 // The only valid uses of OpTypeFunction are in an OpFunction, debugging, or in ValidateTypeFunction()
506 for (auto& pair : inst->uses()) { in ValidateTypeFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp426 for (SDNode *UI : Node->uses()) in isWorthFoldingSHL()
428 for (SDNode *UII : UI->uses()) in isWorthFoldingSHL()
734 for (auto Use : N->uses()) { in isWorthFoldingADDlow()
971 for (SDNode *UI : Node->uses()) { in SelectAddrModeWRO()
1055 for (SDNode *UI : Node->uses()) { in SelectAddrModeXRO()
1320 // Update uses of write back register in SelectPostLoad()
1323 // Update uses of vector list in SelectPostLoad()
1481 // Update uses of the write back register in SelectPostLoadLane()
1484 // Update uses of the vector list in SelectPostLoadLane()
1947 // Look for bits that will be useful for later uses
[all...]
/third_party/ffmpeg/libavutil/x86/
H A Dx86inc.asm24 ; This is a header file for the x264ASM assembly language, which uses
141 ; src) into registers, uses one additional register (tmp) plus 7 vector
716 ; subsequent uses of the function name automatically refer to the mangled version.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp490 /// replaceCfiUses - Go through the uses list for this definition
494 /// uses.
497 /// replaceDirectCalls - Go through the uses list for this definition and
671 // Each use of the byte array uses a different alias. This makes the in createBitSetTest()
1085 for (auto &U : F->uses()) { in importFunction()
1103 // whether uses need to to be replaced. in importFunction()
1286 // Replace all uses of F with (F ? JT : 0).
1296 // Can not RAUW F with an expression that uses F. Replace with a temporary in replaceWeakDeclarationWithJumpTablePtr()
2000 for (const Use &U : TypeTestFunc->uses()) { in lower()
2012 for (const Use &U : ICallBranchFunnelFunc->uses()) { in lower()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp1025 for (auto &RI : II.uses()) {
1285 for (auto &UI : TI.uses()) {
1317 for (auto &UI : TI.uses()) {
1998 // need to replace any uses outside the region.
2058 // and replace all uses outside of the region with the new dest
2559 for (auto &UI : Branch.uses()) {
/kernel/linux/linux-6.6/scripts/
H A Dget_abi.pl1014 Changes the location of the ABI search. By default, it uses

Completed in 70 milliseconds

12345678910>>...16