Searched refs:Extend (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddressRange.h168 bool Extend(const AddressRange &rhs_range);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DNestedNameSpecifier.h391 /// Extend the current nested-name-specifier by another
402 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
405 /// Extend the current nested-name-specifier by another
416 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
419 /// Extend the current nested-name-specifier by another
430 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
433 /// Extend the current nested-name-specifier by another
445 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
/freebsd-13-stable/lib/libsecureboot/efi/include/Protocol/
H A DHash.h124 @param[in] Extend Specifies whether to create a new hash (FALSE) or extend the specified
128 @param[in,out] Hash On input, if Extend is TRUE, then this parameter holds a pointer
129 to a pointer to an array containing the hash to extend. If Extend
132 computation. On output (regardless of the value of Extend), the
138 driver. Or, Extend is TRUE, and the algorithm doesn't support extending the hash.
145 IN BOOLEAN Extend,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLineEntry.cpp222 if (!complete_line_range.Extend(next_line_sc.line_entry.range))
242 // Extend our AddressRange by the size of the inlined block, but if there
244 if (!complete_line_range.Extend(next_line_sc.line_entry.range))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp579 SS.Extend(Context, IdInfo.Identifier, IdInfo.IdentifierLoc, IdInfo.CCLoc);
714 SS.Extend(Context, Namespace, IdInfo.IdentifierLoc, IdInfo.CCLoc);
719 SS.Extend(Context, Alias, IdInfo.IdentifierLoc, IdInfo.CCLoc);
762 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
805 SS.Extend(Context, IdInfo.Identifier, IdInfo.IdentifierLoc,
867 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
930 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
980 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
H A DDeclSpec.cpp53 void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc, function in class:CXXScopeSpec
55 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
64 void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier, function in class:CXXScopeSpec
67 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
77 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace, function in class:CXXScopeSpec
80 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
90 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias, function in class:CXXScopeSpec
93 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
H A DTreeTransform.h3962 SS.Extend(SemaRef.Context, NS, Q.getLocalBeginLoc(), Q.getLocalEndLoc());
3971 SS.Extend(SemaRef.Context, Alias, Q.getLocalBeginLoc(),
4006 SS.Extend(SemaRef.Context, /*FIXME:*/SourceLocation(), TL,
14337 SS.Extend(SemaRef.Context, SourceLocation(), ScopeType->getTypeLoc(),
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_extend_impl.inc72 // Extend to the destination type by shifting the significand and
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp125 bool AddressRange::Extend(const AddressRange &rhs_range) { function in class:AddressRange
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h43 /// Extend - Valid only for integer argument types. Same as 'direct'
45 Extend,
137 auto AI = ABIArgInfo(Extend);
147 auto AI = ABIArgInfo(Extend);
259 bool isExtend() const { return TheKind == Extend; }
269 // Direct/Extend accessors
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp560 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
573 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
585 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
597 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
H A DASTImporter.cpp8427 Builder.Extend(getToContext(), Spec->getAsIdentifier(), ToLocalBeginLoc,
8432 Builder.Extend(getToContext(), Spec->getAsNamespace(), ToLocalBeginLoc,
8437 Builder.Extend(getToContext(), Spec->getAsNamespaceAlias(),
8450 Builder.Extend(getToContext(), ToLocalBeginLoc, TSI->getTypeLoc(),
8454 Builder.Extend(getToContext(), SourceLocation{}, TSI->getTypeLoc(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp401 auto *Extend = Root; local
409 Extend = cast<Instruction>(*I->users().begin());
410 if (isa<SExtInst>(Extend)) {
412 } else if (!isa<ZExtInst>(Extend)) {
418 ResultTy = Extend->getType();
443 Root = Extend;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h81 /// Extend the current nested-name-specifier by another
92 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
95 /// Extend the current nested-name-specifier by another
106 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
109 /// Extend the current nested-name-specifier by another
120 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
123 /// Extend the current nested-name-specifier by another
135 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
1945 /// ExtendWithDeclSpec - Extend the declarator source range to include the
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h406 const TargetRegisterInfo *TRI, bool Extend = true) const;
H A DHexagonISelDAGToDAGHVX.cpp1686 bool Extend = (LogLen == HwLog);
1910 OpRef Arg = !Extend ? Va
1935 return !Extend ? Arg : OpRef::lo(Arg);
H A DHexagonInstrInfo.cpp2704 const TargetRegisterInfo *TRI, bool Extend) const {
2755 if (Extend)
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp1461 case ABIArgInfo::Extend:
1565 case ABIArgInfo::Extend:
1641 case ABIArgInfo::Extend:
2079 case ABIArgInfo::Extend:
2167 case ABIArgInfo::Extend:
2474 case ABIArgInfo::Extend:
3194 case ABIArgInfo::Extend:
4510 case ABIArgInfo::Extend:
5034 case ABIArgInfo::Extend:
H A DTargetInfo.cpp246 case Extend:
247 OS << "Extend";
1995 case ABIArgInfo::Extend:
3554 // If we have a sign or zero extended integer, make sure to return Extend
3699 // If we have a sign or zero extended integer, make sure to return Extend
9372 case ABIArgInfo::Extend: {
9744 case ABIArgInfo::Extend:
/freebsd-13-stable/stand/i386/boot0/
H A Dboot0.S430 cbtw # Extend (%ah=0 used later)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp246 auto *Extend = cast<CastInst>(Args[1]);
257 auto *SrcTy = toVectorTy(Extend->getSrcTy());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp290 bool Extend = false; local
324 Extend = true;
332 if (Extend) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2590 // Extend the element if necessary (e.g. an i8 is loaded
2594 unsigned Extend = Ins[InsIdx].Flags.isSExt() ? ISD::SIGN_EXTEND local
2596 Elt = DAG.getNode(Extend, dl, Ins[InsIdx].VT, Elt);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3886 auto Extend =
3889 ExtractCost += TTI->getExtractWithExtendCost(Extend, EU.Scalar->getType(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1317 MachineSDNode *Extend = CurDAG->getMachineNode(X86::MOVSX64rr32, SDLoc(N), local
1319 ReplaceUses(N, Extend);
4052 // Extend masks if we truncated above.

Completed in 599 milliseconds

12