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

12

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DNestedNameSpecifier.h385 /// Extend the current nested-name-specifier by another
396 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
399 /// Extend the current nested-name-specifier by another
410 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
413 /// Extend the current nested-name-specifier by another
424 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
427 /// Extend the current nested-name-specifier by another
439 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddressRange.h168 bool Extend(const AddressRange &rhs_range);
/freebsd-11-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-11-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.cpp46 void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc, function in class:CXXScopeSpec
48 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
57 void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier, function in class:CXXScopeSpec
60 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
70 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace, function in class:CXXScopeSpec
73 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
83 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias, function in class:CXXScopeSpec
86 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
H A DTreeTransform.h3787 SS.Extend(SemaRef.Context, NS, Q.getLocalBeginLoc(), Q.getLocalEndLoc());
3796 SS.Extend(SemaRef.Context, Alias, Q.getLocalBeginLoc(),
3831 SS.Extend(SemaRef.Context, /*FIXME:*/SourceLocation(), TL,
13652 SS.Extend(SemaRef.Context, SourceLocation(), ScopeType->getTypeLoc(),
/freebsd-11-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-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h43 /// Extend - Valid only for integer argument types. Same as 'direct'
45 Extend,
136 auto AI = ABIArgInfo(Extend);
146 auto AI = ABIArgInfo(Extend);
257 bool isExtend() const { return TheKind == Extend; }
267 // Direct/Extend accessors
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp571 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
584 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
596 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
608 void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, function in class:NestedNameSpecifierLocBuilder
H A DASTImporter.cpp8484 Builder.Extend(getToContext(), Spec->getAsIdentifier(), ToLocalBeginLoc,
8489 Builder.Extend(getToContext(), Spec->getAsNamespace(), ToLocalBeginLoc,
8494 Builder.Extend(getToContext(), Spec->getAsNamespaceAlias(),
8507 Builder.Extend(getToContext(), ToLocalBeginLoc, TSI->getTypeLoc(),
8511 Builder.Extend(getToContext(), SourceLocation{}, TSI->getTypeLoc(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp125 bool AddressRange::Extend(const AddressRange &rhs_range) { function in class:AddressRange
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h403 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.cpp2677 const TargetRegisterInfo *TRI, bool Extend) const {
2728 if (Extend)
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h80 /// Extend the current nested-name-specifier by another
91 void Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL,
94 /// Extend the current nested-name-specifier by another
105 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
108 /// Extend the current nested-name-specifier by another
119 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
122 /// Extend the current nested-name-specifier by another
134 void Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
1946 /// ExtendWithDeclSpec - Extend the declarator source range to include the
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp1464 case ABIArgInfo::Extend:
1568 case ABIArgInfo::Extend:
1644 case ABIArgInfo::Extend:
1996 case ABIArgInfo::Extend:
2078 case ABIArgInfo::Extend:
2383 case ABIArgInfo::Extend:
2893 case ABIArgInfo::Extend:
4065 case ABIArgInfo::Extend:
4566 case ABIArgInfo::Extend:
H A DTargetInfo.cpp233 case Extend:
234 OS << "Extend";
1875 case ABIArgInfo::Extend:
3321 // If we have a sign or zero extended integer, make sure to return Extend
3466 // If we have a sign or zero extended integer, make sure to return Extend
8510 case ABIArgInfo::Extend: {
8874 case ABIArgInfo::Extend:
/freebsd-11-stable/stand/i386/boot0/
H A Dboot0.S430 cbtw # Extend (%ah=0 used later)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp243 auto *Extend = cast<CastInst>(Args[1]);
254 Type *SrcTy = toVectorTy(Extend->getSrcTy());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp290 bool Extend = false; local
324 Extend = true;
332 if (Extend) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2608 // Extend the element if necessary (e.g. an i8 is loaded
2612 unsigned Extend = Ins[InsIdx].Flags.isSExt() ? ISD::SIGN_EXTEND local
2614 Elt = DAG.getNode(Extend, dl, Ins[InsIdx].VT, Elt);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2614 // 64 bits. Extend is the extension type to use. Store the high part
2616 static void lowerMUL_LOHI32(SelectionDAG &DAG, const SDLoc &DL, unsigned Extend,
2619 Op0 = DAG.getNode(Extend, DL, MVT::i64, Op0);
2620 Op1 = DAG.getNode(Extend, DL, MVT::i64, Op1);
3866 // Extend the source operand to 32 bits and prepare it for the inner loop.
4662 // Extend GPR scalars Op0 and Op1 to doublewords and return a v2i64
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3798 auto Extend =
3801 ExtractCost += TTI->getExtractWithExtendCost(Extend, EU.Scalar->getType(),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1208 MachineSDNode *Extend = CurDAG->getMachineNode(X86::MOVSX64rr32, SDLoc(N), local
1210 ReplaceUses(N, Extend);
3989 // Extend masks if we truncated above.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp8759 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
8766 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
8773 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
8786 Builder.Extend(Context,

Completed in 522 milliseconds

12