| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | OPENSSL_ia32cap.3 | 100 .IP "bit #0+19 denoting availability of CLFLUSH instruction;" 4 101 .IX Item "bit #0+19 denoting availability of CLFLUSH instruction;" 106 .IP "bit #0+24, FXSR bit, denoting availability of XMM registers;" 4 107 .IX Item "bit #0+24, FXSR bit, denoting availability of XMM registers;" 116 .IP "bit #0+33 denoting availability of PCLMULQDQ instruction;" 4 117 .IX Item "bit #0+33 denoting availability of PCLMULQDQ instruction;" 122 .IP "bit #0+54 denoting availability of MOVBE instruction;" 4 123 .IX Item "bit #0+54 denoting availability of MOVBE instruction;" 128 .IP "bit #0+59, OSXSAVE bit, denoting availability of YMM registers;" 4 129 .IX Item "bit #0+59, OSXSAVE bit, denoting availability o [all...] |
| /freebsd/contrib/llvm-project/libcxx/include/__configuration/ |
| H A D | availability.h | 23 // of a platform, Clang provides availability attributes [1]. These attributes 64 // Availability annotations are only meaningful when shipping libc++ inside 68 // [1]: https://clang.llvm.org/docs/AttributeReference.html#availability 70 // Availability markup is disabled when building the library, or when a non-Clang 73 // We also allow users to force-disable availability markup via the `_LIBCPP_DISABLE_AVAILABILITY` 74 // macro because that is the only way to work around a Clang bug related to availability 83 // When availability annotations are disabled, we take for granted that features introduced 150 …__attribute__((availability(macos, strict, introduced = 15.0))) … 151 …__attribute__((availability(ios, strict, introduced = 18.0))) … 152 …__attribute__((availability(tvos, strict, introduced = 18.0))) … [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__configuration/ |
| H A D | availability.h | 23 // of a platform, Clang provides availability attributes [1]. These attributes 64 // Availability annotations are only meaningful when shipping libc++ inside 68 // [1]: https://clang.llvm.org/docs/AttributeReference.html#availability 78 // Availability markup is disabled when building the library, or when a non-Clang 86 // When availability annotations are disabled, we take for granted that features introduced 155 …__attribute__((availability(macos, strict, introduced = 14.4))) … 156 …__attribute__((availability(ios, strict, introduced = 17.4))) … 157 …__attribute__((availability(tvos, strict, introduced = 17.4))) … 158 __attribute__((availability(watchos, strict, introduced = 10.4))) 170 …__attribute__((availability(macos, strict, introduced = 14.0))) … [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | OPENSSL_ia32cap.pod | 41 =item bit #0+19 denoting availability of CLFLUSH instruction; 47 =item bit #0+24, FXSR bit, denoting availability of XMM registers; 58 =item bit #0+33 denoting availability of PCLMULQDQ instruction; 64 =item bit #0+54 denoting availability of MOVBE instruction; 71 =item bit #0+59, OSXSAVE bit, denoting availability of YMM registers; 75 =item bit #0+62 denoting availability of RDRAND instruction; 87 =item bit #64+3 denoting availability of BMI1 instructions, e.g. ANDN; 89 =item bit #64+5 denoting availability of AVX2 instructions; 91 =item bit #64+8 denoting availability of BMI2 instructions, e.g. MULX 94 =item bit #64+16 denoting availability of AVX512F extension; [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
| H A D | API.h | 21 #include "clang/AST/Availability.h" 240 AvailabilityInfo Availability; member 284 AvailabilityInfo Availability, LinkageInfo Linkage, 289 Availability(std::move(Availability)), Linkage(Linkage), in USR() 384 PresumedLoc Loc, AvailabilityInfo Availability, in NamespaceRecord() 388 : APIRecord(RK_Namespace, USR, Name, Parent, Loc, std::move(Availability), in NamespaceRecord() 404 PresumedLoc Loc, AvailabilityInfo Availability, in GlobalFunctionRecord() 410 std::move(Availability), Linkage, Comment, Declaration, in GlobalFunctionRecord() 416 AvailabilityInfo Availability, LinkageInfo Linkage, in GlobalFunctionRecord() 421 : APIRecord(Kind, USR, Name, Parent, Loc, std::move(Availability), in GlobalFunctionRecord() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/APINotes/ |
| H A D | APINotesYAMLCompiler.cpp | 158 AvailabilityItem Availability; member 191 IO.mapOptional("Availability", M.Availability.Mode, in mapping() 193 IO.mapOptional("AvailabilityMsg", M.Availability.Msg, StringRef("")); in mapping() 212 AvailabilityItem Availability; member 231 IO.mapOptional("Availability", P.Availability.Mode, in mapping() 233 IO.mapOptional("AvailabilityMsg", P.Availability.Msg, StringRef("")); in mapping() 247 AvailabilityItem Availability; member 269 IO.mapOptional("Availability", C.Availability.Mode, in mapping() 271 IO.mapOptional("AvailabilityMsg", C.Availability.Msg, StringRef("")); in mapping() 292 AvailabilityItem Availability; member [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Availability.cpp | 1 //===- Availability.cpp --------------------------------------------------===// 9 // This file implements the Availability information for Decls. 13 #include "clang/AST/Availability.h" 21 /// Represents the availability of a symbol across platforms. 26 void insert(clang::AvailabilityInfo &&Availability) { in insert() 27 auto *Found = getForPlatform(Availability.Domain); in insert() 29 Found->mergeWith(std::move(Availability)); in insert() 31 Availabilities.emplace_back(std::move(Availability)); in insert() 48 // Collect availability attributes from all redeclarations. in createInfoForDecl() 99 // Walk DeclContexts upwards starting from D to find the combined availability in createFromDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAvailability.cpp | 1 //===--- SemaAvailability.cpp - Availability attribute handling -----------===// 9 // This file processes the availability attribute. 90 /// the availability attribute that is selected. 147 // For +new, infer availability from -init. in ShouldDiagnoseAvailabilityOfDecl() 185 // strict (-fhlsl-strict-availability), or if the target is library and the in ShouldDiagnoseAvailabilityInContext() 186 // availability is restricted to a specific environment/shader stage. in ShouldDiagnoseAvailabilityInContext() 187 // For libraries the availability will be checked later in in ShouldDiagnoseAvailabilityInContext() 204 // Checks if we should emit the availability diagnostic in the context of C. in ShouldDiagnoseAvailabilityInContext() 235 // An implementation implicitly has the availability of the interface. in ShouldDiagnoseAvailabilityInContext() 247 // A category implicitly has the availability of the interface. in ShouldDiagnoseAvailabilityInContext() [all …]
|
| H A D | CodeCompleteConsumer.cpp | 287 CXAvailabilityKind Availability, const char **Annotations, in CodeCompletionString() argument 290 Availability(Availability), ParentName(ParentName), in CodeCompletionString() 438 Chunks.data(), Chunks.size(), Priority, Availability, Annotations.data(), in TakeString() 666 if (Results[I].Availability == in ProcessCodeCompleteResults() 767 /// Retrieve the effective availability of the given declaration. 785 // Set the availability based on attributes. in computeCursorKindAndAvailability() 789 Availability = CXAvailability_Available; in computeCursorKindAndAvailability() 793 Availability = CXAvailability_Deprecated; in computeCursorKindAndAvailability() 797 Availability = CXAvailability_NotAvailable; in computeCursorKindAndAvailability() 803 Availability = CXAvailability_NotAvailable; in computeCursorKindAndAvailability() [all …]
|
| H A D | DelayedDiagnostic.cpp | 34 DD.Kind = Availability; in makeAvailability() 65 case Availability: in Destroy()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Availability.h | 1 //===--- Availability.h - Classes for availability --------------*- C++ -*-===// 9 // This files defines some classes that implement availability checking. 63 /// Storage of availability attributes for a declaration. 65 /// The domain is the platform for which this availability info applies to. 76 /// Determine if this AvailabilityInfo represents the default availability.
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | DelayedDiagnostic.h | 128 enum DDKind : unsigned char { Availability, Access, ForbiddenType }; enumerator 180 assert(Kind == Availability && "Not an availability diagnostic."); in getAvailabilityReferringDecl() 189 assert(Kind == Availability && "Not an availability diagnostic."); in getAvailabilityMessage() 194 assert(Kind == Availability && "Not an availability diagnostic."); in getAvailabilitySelectorLocs() 200 assert(Kind == Availability && "Not an availability diagnostic."); in getAvailabilityResult()
|
| H A D | ParsedAttr.h | 44 /// Represents information about a change in availability for 45 /// an entity, which is part of the encoding of the 'availability' 57 /// Determine whether this availability change is valid. 66 /// Describes the trailing object for Availability attribute in ParsedAttr. 152 /// availability attribute. 182 /// availability attribute. 219 /// Constructor for availability attributes. 300 /// availability slots. 395 "Not an availability attribute"); in getAvailabilityIntroduced() 401 "Not an availability attribute"); in getAvailabilityDeprecated() [all …]
|
| H A D | CodeCompleteConsumer.h | 583 /// The availability of this code-completion result. 585 unsigned Availability : 2; 595 unsigned Priority, CXAvailabilityKind Availability, 626 /// Retrieve the availability of this code completion result. 627 unsigned getAvailability() const { return Availability; } in getAvailability() 693 CXAvailabilityKind Availability = CXAvailability_Available; variable 709 unsigned Priority, CXAvailabilityKind Availability) in CodeCompletionBuilder() argument 711 Availability(Availability) {} in CodeCompletionBuilder() 807 /// The availability of this result. 808 CXAvailabilityKind Availability = CXAvailability_Available; variable [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
| H A D | FrontendRecords.h | 12 #include "clang/AST/Availability.h" 40 /// \param Avail The availability information tied to the active target 59 /// \param Avail The availability information tied to the active target 76 /// \param Avail The availability information tied 92 /// \param Avail The availability information tied to the active target
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | print | 216 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 239 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 250 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 289 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 363 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 368 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 379 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 384 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 391 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 396 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
|
| /freebsd/contrib/llvm-project/libcxx/include/__ostream/ |
| H A D | print.h | 32 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 67 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 88 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 130 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv… 163 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
|
| /freebsd/share/man/man4/ |
| H A D | ctl.4 | 74 High Availability clustering support with ALUA 100 High Availability cluster. 144 Specifies unique position of this node within High Availability cluster. 147 Specifies High Availability cluster operation mode:
|
| /freebsd/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/ |
| H A D | SymbolGraphSerializer.cpp | 153 /// Serialize the availability attributes of a symbol. 155 /// Availability information contains the introduced, deprecated, and obsoleted 157 /// Availability information also contains flags to indicate if the symbol is 161 /// \returns \c std::nullopt if the symbol has default availability attributes, 162 /// or an \c Array containing an object with the formatted availability 178 Object Availability; in serializeAvailability() local 179 Availability["domain"] = Avail.Domain; in serializeAvailability() 182 Availability["isUnconditionallyUnavailable"] = true; in serializeAvailability() 184 serializeObject(Availability, "introduced", in serializeAvailability() 186 serializeObject(Availability, "deprecated", in serializeAvailability() [all …]
|
| /freebsd/sys/contrib/openzfs/config/ |
| H A D | user-statx.m4 | 3 dnl # Check for statx() function and STATX_MNT_ID availability 14 dnl Check for STATX_MNT_ID availability
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DarwinSDKInfo.h | 108 /// Remap the 'introduced' availability version. 109 /// If None is returned, the 'unavailable' availability should be used 120 /// Remap the 'deprecated' and 'obsoleted' availability version. 121 /// If None is returned for 'obsoleted', the 'unavailable' availability
|
| /freebsd/crypto/openssl/include/internal/ |
| H A D | e_winsock.h | 18 * Most notably we ought to check for availability of each specific 35 * it's sufficient to check for specific Winsock2 API availability
|
| /freebsd/contrib/llvm-project/libc/include/llvm-libc-types/ |
| H A D | float128.h | 26 // notify the availability of __float128. 27 // clang also uses __FLOAT128__ macro to notify the availability of __float128
|
| /freebsd/sys/ufs/ufs/ |
| H A D | README.acls | 13 availability of extended attributes to store extended components of 22 to your kernel configuration. As ACLs rely on the availability of extended
|
| /freebsd/sys/dev/dpaa2/ |
| H A D | dpaa2_swp_if.m | 59 * @brief Configure the channel data availability notification (CDAN) 63 * ctx: Context to configure data availability notifications (CDAN).
|