| /freebsd-12-stable/sys/teken/ |
| D | sequences | 75 G0SCS0 G0 SCS Special Graphics ^[ ( 0 76 G0SCS1 G0 SCS US ASCII ^[ ( 1 77 G0SCS2 G0 SCS Special Graphics ^[ ( 2 78 G0SCSA G0 SCS UK National ^[ ( A 79 G0SCSB G0 SCS US ASCII ^[ ( B 80 G1SCS0 G1 SCS Special Graphics ^[ ) 0 81 G1SCS1 G1 SCS US ASCII ^[ ) 1 82 G1SCS2 G1 SCS Special Graphics ^[ ) 2 83 G1SCSA G1 SCS UK National ^[ ) A 84 G1SCSB G1 SCS US ASCII ^[ ) B
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64RegisterInfo.cpp | 216 bool SCS = MF.getFunction().hasFnAttribute(Attribute::ShadowCallStack); in getCallPreservedMask() local 219 return SCS ? CSR_AArch64_NoRegs_SCS_RegMask : CSR_AArch64_NoRegs_RegMask; in getCallPreservedMask() 221 return SCS ? CSR_AArch64_AllRegs_SCS_RegMask : CSR_AArch64_AllRegs_RegMask; in getCallPreservedMask() 225 if (SCS) in getCallPreservedMask() 231 return SCS ? CSR_AArch64_AAVPCS_SCS_RegMask : CSR_AArch64_AAVPCS_RegMask; in getCallPreservedMask() 233 return SCS ? CSR_AArch64_SVE_AAPCS_SCS_RegMask in getCallPreservedMask() 240 return SCS ? CSR_AArch64_AAPCS_SwiftError_SCS_RegMask in getCallPreservedMask() 243 if (SCS) in getCallPreservedMask() 248 return SCS ? CSR_AArch64_RT_MostRegs_SCS_RegMask in getCallPreservedMask() 251 return SCS ? CSR_AArch64_AAPCS_SCS_RegMask : CSR_AArch64_AAPCS_RegMask; in getCallPreservedMask()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | SemaOverload.cpp | 85 StandardConversionSequence &SCS, 92 StandardConversionSequence &SCS, 1675 StandardConversionSequence &SCS, 1688 StandardConversionSequence &SCS, in IsStandardConversion() argument 1694 SCS.setAsIdentityConversion(); in IsStandardConversion() 1695 SCS.IncompatibleObjC = false; in IsStandardConversion() 1696 SCS.setFromType(FromType); in IsStandardConversion() 1697 SCS.CopyConstructor = nullptr; in IsStandardConversion() 1717 SCS.setFromType(FromType); in IsStandardConversion() 1770 SCS.First = ICK_Lvalue_To_Rvalue; in IsStandardConversion() [all …]
|
| D | DeclSpec.cpp | 482 const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) { in getSpecifierName() 616 bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc, in SetStorageClassSpec() 671 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID); in SetStorageClassSpec() 1378 if (DeclSpec::SCS SC = getStorageClassSpec()) { in Finish()
|
| D | SemaExprCXX.cpp | 4150 const StandardConversionSequence& SCS, in PerformImplicitConversion() argument 4161 if (SCS.CopyConstructor) { in PerformImplicitConversion() 4164 if (SCS.Second == ICK_Derived_To_Base) { in PerformImplicitConversion() 4167 cast<CXXConstructorDecl>(SCS.CopyConstructor), ToType, From, in PerformImplicitConversion() 4172 SCS.FoundCopyConstructor, SCS.CopyConstructor, in PerformImplicitConversion() 4179 SCS.FoundCopyConstructor, SCS.CopyConstructor, in PerformImplicitConversion() 4210 switch (SCS.First) { in PerformImplicitConversion() 4250 switch (SCS.Second) { in PerformImplicitConversion() 4282 SCS.Second == ICK_Integral_Promotion && in PerformImplicitConversion() 4340 if (SCS.IncompatibleObjC && Action != AA_Casting) { in PerformImplicitConversion() [all …]
|
| D | SemaDeclObjC.cpp | 5174 } else if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) { in ActOnObjCExceptionDecl() local 5176 << DeclSpec::getSpecifierName(SCS); in ActOnObjCExceptionDecl()
|
| D | SemaDecl.cpp | 4847 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) { in ParsedFreeStandingDeclSpec() local 4848 if (SCS == DeclSpec::SCS_mutable) in ParsedFreeStandingDeclSpec() 4852 else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef) in ParsedFreeStandingDeclSpec() 4854 << DeclSpec::getSpecifierName(SCS); in ParsedFreeStandingDeclSpec() 4999 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec(); in StorageClassSpecToVarDeclStorageClass() 5265 DeclSpec::SCS SCSpec = DS.getStorageClassSpec(); in BuildAnonymousStructOrUnion() 6937 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec(); in ActOnVariableDeclarator()
|
| D | SemaInit.cpp | 9789 const StandardConversionSequence *SCS = nullptr; in DiagnoseNarrowingInInitList() local 9792 SCS = &ICS.Standard; in DiagnoseNarrowingInInitList() 9795 SCS = &ICS.UserDefined.After; in DiagnoseNarrowingInInitList() 9806 switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue, in DiagnoseNarrowingInInitList()
|
| D | SemaExpr.cpp | 11586 StandardConversionSequence SCS; in checkThreeWayNarrowingConversion() local 11587 SCS.setAsIdentityConversion(); in checkThreeWayNarrowingConversion() 11588 SCS.setToType(0, FromType); in checkThreeWayNarrowingConversion() 11589 SCS.setToType(1, ToType); in checkThreeWayNarrowingConversion() 11591 SCS.Second = castKindToImplicitConversionKind(ICE->getCastKind()); in checkThreeWayNarrowingConversion() 11595 switch (SCS.getNarrowingKind(S.Context, E, PreNarrowingValue, in checkThreeWayNarrowingConversion()
|
| D | SemaDeclCXX.cpp | 755 if (auto SCS = DS.getStorageClassSpec()) { in ActOnDecompositionDeclarator() local 756 if (SCS == DeclSpec::SCS_static) { in ActOnDecompositionDeclarator() 757 CPlusPlus20Specifiers.push_back(DeclSpec::getSpecifierName(SCS)); in ActOnDecompositionDeclarator() 760 BadSpecifiers.push_back(DeclSpec::getSpecifierName(SCS)); in ActOnDecompositionDeclarator()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/ |
| D | DeclSpec.h | 233 enum SCS { enum 440 SCS getStorageClassSpec() const { return (SCS)StorageClassSpec; } in getStorageClassSpec() 540 static const char *getSpecifierName(DeclSpec::SCS S); 651 bool SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
|
| D | Sema.h | 11638 const StandardConversionSequence& SCS,
|
| /freebsd-12-stable/sys/dev/aic7xxx/ |
| D | aic79xx.reg | 3397 * Interrupt branch address for SCS SEQ_INT1 mode 0 and 1 interrupts.
|
| /freebsd-12-stable/contrib/ncurses/misc/ |
| D | terminfo.src | 1631 # 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-12-stable/contrib/wpa/wpa_supplicant/ |
| D | ChangeLog | 51 * added support for SCS, MSCS, DSCP policy
|
| /freebsd-12-stable/contrib/ncurses/ |
| D | NEWS | 6508 + modify kterm terminfo entry to use SCS sequence to support alternate
|