Home
last modified time | relevance | path

Searched refs:Used (Results 1 – 25 of 425) sorted by relevance

12345678910>>...17

/openbsd-src/gnu/llvm/llvm/include/llvm/Demangle/
H A DMicrosoftDemangle.h29 size_t Used = 0; member
40 NewHead->Used = 0; in addNode()
59 uint8_t *P = Head->Buf + Head->Used; in allocUnalignedBuffer()
61 Head->Used += Size; in allocUnalignedBuffer()
62 if (Head->Used <= Head->Capacity) in allocUnalignedBuffer()
66 Head->Used = Size; in allocUnalignedBuffer()
74 size_t P = (size_t)Head->Buf + Head->Used; in allocArray()
80 Head->Used += Size + Adjustment; in allocArray()
81 if (Head->Used <= Head->Capacity) in allocArray()
85 Head->Used = Size; in allocArray()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dc-common.def35 /* Used to represent an expression statement. Use `EXPR_STMT_EXPR' to
39 /* Used to represent a brace-enclosed block. The operand is
43 /* Used to represent a local declaration. The operand is
51 /* Used to represent a `for' statement. The operands are
55 /* Used to represent a 'while' statement. The operands are WHILE_COND
59 /* Used to represent a 'do' statement. The operands are DO_BODY and
63 /* Used to represent a 'return' statement. The operand is
67 /* Used to represent a 'break' statement. */
70 /* Used to represent a 'continue' statement. */
73 /* Used to represent a 'switch' statement. The operands are
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DReduceSpecialGlobals.cpp35 if (auto *Used = Program.getNamedGlobal(Name)) { in extractSpecialGlobalsFromModule() local
36 Used->replaceAllUsesWith(getDefaultValue(Used->getType())); in extractSpecialGlobalsFromModule()
37 Used->eraseFromParent(); in extractSpecialGlobalsFromModule()
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVInsertVSETVLI.cpp201 const DemandedFields &Used) { in areCompatibleVTYPEs() argument
202 if (Used.SEW && in areCompatibleVTYPEs()
206 if (Used.LMUL && in areCompatibleVTYPEs()
210 if (Used.SEWLMULRatio) { in areCompatibleVTYPEs()
219 if (Used.TailPolicy && in areCompatibleVTYPEs()
222 if (Used.MaskPolicy && in areCompatibleVTYPEs()
430 bool hasCompatibleVTYPE(const DemandedFields &Used, in hasCompatibleVTYPE() argument
432 return areCompatibleVTYPEs(encodeVTYPE(), Require.encodeVTYPE(), Used); in hasCompatibleVTYPE()
438 bool isCompatible(const DemandedFields &Used, const VSETVLIInfo &Require) const { in isCompatible() argument
457 if (Used.VLAny && !hasSameAVL(Require)) in isCompatible()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DReturnProtectorLowering.cpp30 SmallSet<unsigned, 16> &Used, in markUsedRegsInSuccessors() argument
40 Used.insert(MBBIOp.getReg()); in markUsedRegsInSuccessors()
48 markUsedRegsInSuccessors(*SuccMBB, Used, Visited); in markUsedRegsInSuccessors()
248 SmallSet<unsigned, 16> Used; in determineReturnProtectorRegister() local
262 Used.insert(RBIOp.getReg()); in determineReturnProtectorRegister()
266 markUsedRegsInSuccessors(*SuccMBB, Used, Visited); in determineReturnProtectorRegister()
271 markUsedRegsInSuccessors(MF.front(), Used, Visited); in determineReturnProtectorRegister()
278 if (Used.count(*AI)) { in determineReturnProtectorRegister()
/openbsd-src/gnu/llvm/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp54 SmallVector<ResourceUse, 4> Used; in issueInstruction() local
58 HWS.issueInstruction(IR, Used, Pending, Ready); in issueInstruction()
64 notifyInstructionIssued(IR, Used); in issueInstruction()
253 const InstRef &IR, MutableArrayRef<ResourceUse> Used) const { in notifyInstructionIssued()
256 for (const ResourceUse &Use : Used) { in notifyInstructionIssued()
265 for (ResourceUse &Use : Used) in notifyInstructionIssued()
268 notifyEvent<HWInstructionEvent>(HWInstructionIssuedEvent(IR, Used)); in notifyInstructionIssued()
/openbsd-src/gnu/llvm/llvm/include/llvm/
H A DPassAnalysisSupport.h59 SmallVector<AnalysisID, 0> Used; variable
108 pushUnique(Used, ID); in addUsedIfAvailableID()
112 pushUnique(Used, &ID); in addUsedIfAvailableID()
118 pushUnique(Used, &PassClass::ID); in addUsedIfAvailable()
149 const VectorType &getUsedSet() const { return Used; } in getUsedSet()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DRecordStreamer.cpp26 case Used: in markDefined()
47 case Used: in markGlobal()
67 case Used: in markUsed()
68 S = Used; in markUsed()
183 case RecordStreamer::Used: in flushSymverDirectives()
H A DIRSymtab.cpp120 const SmallPtrSet<GlobalValue *, 4> &Used,
145 SmallPtrSet<GlobalValue *, 4> Used(UsedV.begin(), UsedV.end()); in addModule() local
182 if (Error Err = addSymbol(Msymtab, Used, Msym)) in addModule()
219 const SmallPtrSet<GlobalValue *, 4> &Used, in addSymbol() argument
275 if (Used.count(GV) || IsPreservedSymbol) in addSymbol()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp152 llvm::SmallBitVector &Used);
5802 llvm::SmallBitVector &Used; member
5805 MarkUsedTemplateParameterVisitor(llvm::SmallBitVector &Used, in MarkUsedTemplateParameterVisitor()
5807 : Used(Used), Depth(Depth) { } in MarkUsedTemplateParameterVisitor()
5811 Used[T->getIndex()] = true; in VisitTemplateTypeParmType()
5819 Used[TTP->getIndex()] = true; in TraverseTemplateName()
5828 Used[NTTP->getIndex()] = true; in VisitDeclRefExpr()
5841 llvm::SmallBitVector &Used) { in MarkUsedTemplateParameters() argument
5843 MarkUsedTemplateParameterVisitor(Used, Depth) in MarkUsedTemplateParameters()
5857 Used[NTTP->getIndex()] = true; in MarkUsedTemplateParameters()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSampleProfileLoaderBaseUtil.cpp163 unsigned SampleCoverageTracker::computeCoverage(unsigned Used, in computeCoverage() argument
165 assert(Used <= Total && in computeCoverage()
167 return Total > 0 ? Used * 100 / Total : 100; in computeCoverage()
/openbsd-src/gnu/llvm/clang/docs/
H A DAPINotes.rst184 Used for properties and globals. There are four options, identified by their
208 Used for methods and functions. Describes the nullability of the return type.
228 Used for properties and globals. This completely overrides the type of the
246 Used for methods and functions. This completely overrides the return type; it
263 Used for properties. If true, the property will be exposed in Swift as its
274 Used for ``NSError`` code enums. The value is the name of the associated
316 Used for methods and functions. Parameters are identified by a 0-based
334 Used only for block parameters. Equivalent to ``NS_NOESCAPE``.
345 Used for Objective-C class types bridged to Swift value types. An empty
357 Used for init methods. Equivalent to ``NS_DESIGNATED_INITIALIZER``.
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-alpha.texi174 Used with an @code{ldq} instruction to load the address of a symbol
196 Used with any memory format instruction (e.g.@: @code{ldl}) to indicate
202 Used with a register branch format instruction (e.g.@: @code{jsr}) to
213 Used with a byte mask instruction (e.g.@: @code{extbl}) to indicate
218 Used with any other instruction to indicate that the original address
230 Used with a register branch format instruction to indicate that the
236 Used with a register branch format instruction to indicate that the
243 Used with @code{ldah} and @code{lda} to load the GP from the current
257 Used with an @code{ldah} instruction to add the high 16 bits of a
261 Used with any memory format instruction to add the low 16 bits of a
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/doc/
H A Dc-alpha.texi174 Used with an @code{ldq} instruction to load the address of a symbol
196 Used with any memory format instruction (e.g.@: @code{ldl}) to indicate
202 Used with a register branch format instruction (e.g.@: @code{jsr}) to
207 Used with a byte mask instruction (e.g.@: @code{extbl}) to indicate
212 Used with any other instruction to indicate that the original address
224 Used with a register branch format instruction to indicate that the
230 Used with a register branch format instruction to indicate that the
237 Used with @code{ldah} and @code{lda} to load the GP from the current
251 Used with an @code{ldah} instruction to add the high 16 bits of a
255 Used with any memory format instruction to add the low 16 bits of a
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DFunctionImportUtils.h57 SmallPtrSet<GlobalValue *, 4> Used; variable
119 Used = {Vec.begin(), Vec.end()}; in FunctionImportGlobalProcessing()
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_buffer_queue.h73 bool Used = false; member
90 } while (!Buffers[Offset].Used && Offset != Max);
110 while (!Buffers[Offset].Used && Offset != Max) { in Iterator()
H A Dxray_buffer_queue.cpp134 T.Used = false; in init()
180 B->Used = true; in getBuffer()
209 B->Used = true; in releaseBuffer()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp29 enum IVarState { Unused, Used }; enumerator
40 I->second = Used; in Scan()
74 I->second = Used; in Scan()
/openbsd-src/gnu/usr.bin/binutils/config/
H A Dacx.m47 dnl # Used when we would use $build_alias, but empty is not OK.
19 dnl # Used when we would use $host_alias, but empty is not OK.
31 dnl # Used when we would use $target_alias, but empty is not OK.
146 # Used for autoconf 2.5x to force AC_PREPROC_IFELSE to reject code which
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DInternalize.cpp190 SmallVector<GlobalValue *, 4> Used; in internalizeModule() local
191 collectUsedGlobalVariables(M, Used, false); in internalizeModule()
213 for (GlobalValue *V : Used) { in internalizeModule()
H A DGlobalOpt.cpp2172 SmallPtrSet<GlobalValue *, 4> Used; member in __anon028e6d800511::LLVMUsed
2181 Used = {Vec.begin(), Vec.end()}; in LLVMUsed()
2190 iterator usedBegin() { return Used.begin(); } in usedBegin()
2191 iterator usedEnd() { return Used.end(); } in usedEnd()
2204 bool usedCount(GlobalValue *GV) const { return Used.count(GV); } in usedCount()
2210 bool usedErase(GlobalValue *GV) { return Used.erase(GV); } in usedErase()
2212 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; } in usedInsert()
2220 setUsedInitializer(*UsedV, Used); in syncVariablesAndSets()
2298 LLVMUsed Used(M); in OptimizeGlobalAliases() local
2300 for (GlobalValue *GV : Used.used()) in OptimizeGlobalAliases()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/doc/
H A Dall-cfg.texi31 @c Name of GDB program. Used also for (gdb) prompt string.
34 @c Name of GDB product. Used in running text.
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp181 Used = 0x04, enumerator
231 if (GN.Flags & GepNode::Used) { in operator <<()
402 PN->Flags |= GepNode::Used; in processGepInst()
608 if (NF & GepNode::Used) in common()
758 if (Node->Flags & GepNode::Used) { in recalculatePlacement()
959 NewN->Flags &= ~GepNode::Used; in separateChainForNode()
981 Node->Flags &= ~GepNode::Used; in separateChainForNode()
986 NewNode->Flags |= GepNode::Used; in separateChainForNode()
1003 if (!(N->Flags & GepNode::Used)) in separateConstantChains()
1133 if (N->Flags & GepNode::Used) { in getAllUsersForNode()
[all …]
/openbsd-src/usr.sbin/unbound/doc/
H A DREADME.tests11 * dig - from the bind-tools package. Used to send DNS queries.
14 * ldns-testns - from ldns examples. Used as DNS auth server.
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/sample-tests/
H A Dempty2 Used to exercise the "empty test" case.

12345678910>>...17