Home
last modified time | relevance | path

Searched refs:SCS (Results 1 – 16 of 16) sorted by relevance

/freebsd-11-stable/sys/teken/
HDsequences74 G0SCS0 G0 SCS Special Graphics ^[ ( 0
75 G0SCS1 G0 SCS US ASCII ^[ ( 1
76 G0SCS2 G0 SCS Special Graphics ^[ ( 2
77 G0SCSA G0 SCS UK National ^[ ( A
78 G0SCSB G0 SCS US ASCII ^[ ( B
79 G1SCS0 G1 SCS Special Graphics ^[ ) 0
80 G1SCS1 G1 SCS US ASCII ^[ ) 1
81 G1SCS2 G1 SCS Special Graphics ^[ ) 2
82 G1SCSA G1 SCS UK National ^[ ) A
83 G1SCSB G1 SCS US ASCII ^[ ) B
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64RegisterInfo.cpp118 bool SCS = MF.getFunction().hasFnAttribute(Attribute::ShadowCallStack); in getCallPreservedMask() local
121 return SCS ? CSR_AArch64_NoRegs_SCS_RegMask : CSR_AArch64_NoRegs_RegMask; in getCallPreservedMask()
123 return SCS ? CSR_AArch64_AllRegs_SCS_RegMask : CSR_AArch64_AllRegs_RegMask; in getCallPreservedMask()
125 return SCS ? CSR_AArch64_CXX_TLS_Darwin_SCS_RegMask in getCallPreservedMask()
128 return SCS ? CSR_AArch64_AAVPCS_SCS_RegMask : CSR_AArch64_AAVPCS_RegMask; in getCallPreservedMask()
130 return SCS ? CSR_AArch64_SVE_AAPCS_SCS_RegMask in getCallPreservedMask()
137 return SCS ? CSR_AArch64_AAPCS_SwiftError_SCS_RegMask in getCallPreservedMask()
140 return SCS ? CSR_AArch64_RT_MostRegs_SCS_RegMask in getCallPreservedMask()
143 return SCS ? CSR_AArch64_AAPCS_SCS_RegMask : CSR_AArch64_AAPCS_RegMask; in getCallPreservedMask()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaOverload.cpp81 StandardConversionSequence &SCS,
88 StandardConversionSequence &SCS,
1669 StandardConversionSequence &SCS,
1682 StandardConversionSequence &SCS, in IsStandardConversion() argument
1688 SCS.setAsIdentityConversion(); in IsStandardConversion()
1689 SCS.IncompatibleObjC = false; in IsStandardConversion()
1690 SCS.setFromType(FromType); in IsStandardConversion()
1691 SCS.CopyConstructor = nullptr; in IsStandardConversion()
1711 SCS.setFromType(FromType); in IsStandardConversion()
1764 SCS.First = ICK_Lvalue_To_Rvalue; in IsStandardConversion()
[all …]
HDDeclSpec.cpp467 const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) { in getSpecifierName()
589 bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc, in SetStorageClassSpec()
643 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID); in SetStorageClassSpec()
1313 if (DeclSpec::SCS SC = getStorageClassSpec()) { in Finish()
HDSemaExprCXX.cpp3893 const StandardConversionSequence& SCS, in PerformImplicitConversion() argument
3904 if (SCS.CopyConstructor) { in PerformImplicitConversion()
3907 if (SCS.Second == ICK_Derived_To_Base) { in PerformImplicitConversion()
3909 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor), in PerformImplicitConversion()
3915 SCS.FoundCopyConstructor, SCS.CopyConstructor, in PerformImplicitConversion()
3922 SCS.FoundCopyConstructor, SCS.CopyConstructor, in PerformImplicitConversion()
3953 switch (SCS.First) { in PerformImplicitConversion()
3988 switch (SCS.Second) { in PerformImplicitConversion()
4020 SCS.Second == ICK_Integral_Promotion && in PerformImplicitConversion()
4072 if (SCS.IncompatibleObjC && Action != AA_Casting) { in PerformImplicitConversion()
[all …]
HDSemaDeclObjC.cpp5076 } else if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) { in ActOnObjCExceptionDecl() local
5078 << DeclSpec::getSpecifierName(SCS); in ActOnObjCExceptionDecl()
HDSemaDecl.cpp4628 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) { in ParsedFreeStandingDeclSpec() local
4629 if (SCS == DeclSpec::SCS_mutable) in ParsedFreeStandingDeclSpec()
4633 else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef) in ParsedFreeStandingDeclSpec()
4635 << DeclSpec::getSpecifierName(SCS); in ParsedFreeStandingDeclSpec()
4780 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec(); in StorageClassSpecToVarDeclStorageClass()
5042 DeclSpec::SCS SCSpec = DS.getStorageClassSpec(); in BuildAnonymousStructOrUnion()
6664 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec(); in ActOnVariableDeclarator()
HDSemaInit.cpp9505 const StandardConversionSequence *SCS = nullptr; in DiagnoseNarrowingInInitList() local
9508 SCS = &ICS.Standard; in DiagnoseNarrowingInInitList()
9511 SCS = &ICS.UserDefined.After; in DiagnoseNarrowingInInitList()
9522 switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue, in DiagnoseNarrowingInInitList()
HDSemaExpr.cpp10581 StandardConversionSequence SCS; in checkThreeWayNarrowingConversion() local
10582 SCS.setAsIdentityConversion(); in checkThreeWayNarrowingConversion()
10583 SCS.setToType(0, FromType); in checkThreeWayNarrowingConversion()
10584 SCS.setToType(1, ToType); in checkThreeWayNarrowingConversion()
10586 SCS.Second = castKindToImplicitConversionKind(ICE->getCastKind()); in checkThreeWayNarrowingConversion()
10590 switch (SCS.getNarrowingKind(S.Context, E, PreNarrowingValue, in checkThreeWayNarrowingConversion()
HDSemaDeclCXX.cpp732 if (auto SCS = DS.getStorageClassSpec()) { in ActOnDecompositionDeclarator() local
733 if (SCS == DeclSpec::SCS_static) { in ActOnDecompositionDeclarator()
734 CPlusPlus20Specifiers.push_back(DeclSpec::getSpecifierName(SCS)); in ActOnDecompositionDeclarator()
737 BadSpecifiers.push_back(DeclSpec::getSpecifierName(SCS)); in ActOnDecompositionDeclarator()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDDeclSpec.h232 enum SCS { enum
447 SCS getStorageClassSpec() const { return (SCS)StorageClassSpec; } in getStorageClassSpec()
543 static const char *getSpecifierName(DeclSpec::SCS S);
654 bool SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
HDSema.h10781 const StandardConversionSequence& SCS,
/freebsd-11-stable/contrib/top/
HDChanges409 Vixie: "These changes were not made at, by, or for SCS proper.
410 SCS would probably be interested in them, but so far only the
416 The SCS peculiarities are summarized in Changes.scs.
/freebsd-11-stable/sys/dev/aic7xxx/
HDaic79xx.reg3397 * Interrupt branch address for SCS SEQ_INT1 mode 0 and 1 interrupts.
/freebsd-11-stable/contrib/ncurses/misc/
HDterminfo.src1631 # Using SI/SO has the drawback that it confuses screen. SCS would work.
1632 # However, SCS is buggy (see comment in Debian #515609) -TD
5407 # c) modified smacs/rmacs to use SCS rather than SI/SO
18477 # SCS select G0 = US: esc ( B
18478 # SCS select G1 = line-graphic: esc ) 0
18585 # SCS select G0 = US: esc ( B
18586 # SCS select G1 = line-graphic: esc ) 0
20972 # SCS Set Char. Spacing * \E [ Pn SPC g - - -
22452 # * modify kterm to use acsc via SCS controls.
/freebsd-11-stable/contrib/ncurses/
HDNEWS6508 + modify kterm terminfo entry to use SCS sequence to support alternate