Home
last modified time | relevance | path

Searched full:availability (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/freebsd/secure/lib/libcrypto/man/man3/
H A DOPENSSL_ia32cap.3159 .IP "bit #19 denoting availability of \s-1CLFLUSH\s0 instruction;" 4
160 .IX Item "bit #19 denoting availability of CLFLUSH instruction;"
165 .IP "bit #24, \s-1FXSR\s0 bit, denoting availability of \s-1XMM\s0 registers;" 4
166 .IX Item "bit #24, FXSR bit, denoting availability of XMM registers;"
175 .IP "bit #33 denoting availability of \s-1PCLMULQDQ\s0 instruction;" 4
176 .IX Item "bit #33 denoting availability of PCLMULQDQ instruction;"
181 .IP "bit #54 denoting availability of \s-1MOVBE\s0 instruction;" 4
182 .IX Item "bit #54 denoting availability of MOVBE instruction;"
187 .IP "bit #59, \s-1OSXSAVE\s0 bit, denoting availability of \s-1YMM\s0 registers;" 4
188 .IX Item "bit #59, OSXSAVE bit, denoting availability of YMM registers;"
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__configuration/
H A Davailability.h23 // 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 DOPENSSL_ia32cap.pod26 =item bit #19 denoting availability of CLFLUSH instruction;
32 =item bit #24, FXSR bit, denoting availability of XMM registers;
43 =item bit #33 denoting availability of PCLMULQDQ instruction;
49 =item bit #54 denoting availability of MOVBE instruction;
56 =item bit #59, OSXSAVE bit, denoting availability of YMM registers;
60 =item bit #62 denoting availability of RDRAND instruction;
91 =item bit #64+3 denoting availability of BMI1 instructions, e.g. ANDN;
93 =item bit #64+5 denoting availability of AVX2 instructions;
95 =item bit #64+8 denoting availability of BMI2 instructions, e.g. MULX
98 =item bit #64+16 denoting availability of AVX512F extension;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPI.h21 #include "clang/AST/Availability.h"
247 AvailabilityInfo Availability; member
291 AvailabilityInfo Availability, LinkageInfo Linkage,
296 Availability(std::move(Availability)), Linkage(Linkage), in USR()
389 PresumedLoc Loc, AvailabilityInfo Availability, in NamespaceRecord()
393 : APIRecord(RK_Namespace, USR, Name, Parent, Loc, std::move(Availability), in NamespaceRecord()
409 PresumedLoc Loc, AvailabilityInfo Availability, in GlobalFunctionRecord()
415 std::move(Availability), Linkage, Comment, Declaration, in GlobalFunctionRecord()
421 AvailabilityInfo Availability, LinkageInfo Linkage, in GlobalFunctionRecord()
426 : APIRecord(Kind, USR, Name, Parent, Loc, std::move(Availability), in GlobalFunctionRecord()
[all …]
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp155 AvailabilityItem Availability; member
187 IO.mapOptional("Availability", M.Availability.Mode, in mapping()
189 IO.mapOptional("AvailabilityMsg", M.Availability.Msg, StringRef("")); in mapping()
206 AvailabilityItem Availability; member
225 IO.mapOptional("Availability", P.Availability.Mode, in mapping()
227 IO.mapOptional("AvailabilityMsg", P.Availability.Msg, StringRef("")); in mapping()
241 AvailabilityItem Availability; member
263 IO.mapOptional("Availability", C.Availability.Mode, in mapping()
265 IO.mapOptional("AvailabilityMsg", C.Availability.Msg, StringRef("")); in mapping()
286 AvailabilityItem Availability; member
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DAvailability.cpp1 //===- Availability.cpp --------------------------------------------------===//
9 // This file implements the Availability information for Decls.
13 #include "clang/AST/Availability.h"
24 AvailabilityInfo Availability; in createFromDecl() local
26 // Collect availability attributes from all redeclarations. in createFromDecl()
31 Availability = AvailabilityInfo( in createFromDecl()
39 Availability.UnconditionallyUnavailable = true; in createFromDecl()
43 Availability.UnconditionallyDeprecated = true; in createFromDecl()
45 return Availability; in createFromDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp1 //===--- SemaAvailability.cpp - Availability attribute handling -----------===//
9 // This file processes the availability attribute.
88 /// the availability attribute that is selected.
133 // For +new, infer availability from -init. in ShouldDiagnoseAvailabilityOfDecl()
172 // strict (-fhlsl-strict-availability), or if the target is library and the in ShouldDiagnoseAvailabilityInContext()
173 // availability is restricted to a specific environment/shader stage. in ShouldDiagnoseAvailabilityInContext()
174 // For libraries the availability will be checked later in in ShouldDiagnoseAvailabilityInContext()
185 // Checks if we should emit the availability diagnostic in the context of C. in ShouldDiagnoseAvailabilityInContext()
216 // An implementation implicitly has the availability of the interface. in ShouldDiagnoseAvailabilityInContext()
228 // A category implicitly has the availability of the interface. in ShouldDiagnoseAvailabilityInContext()
[all …]
H A DCodeCompleteConsumer.cpp291 CXAvailabilityKind Availability, const char **Annotations, in CodeCompletionString() argument
294 Availability(Availability), ParentName(ParentName), in CodeCompletionString()
442 Chunks.data(), Chunks.size(), Priority, Availability, Annotations.data(), in TakeString()
670 if (Results[I].Availability == in ProcessCodeCompleteResults()
771 /// Retrieve the effective availability of the given declaration.
789 // Set the availability based on attributes. in computeCursorKindAndAvailability()
793 Availability = CXAvailability_Available; in computeCursorKindAndAvailability()
797 Availability = CXAvailability_Deprecated; in computeCursorKindAndAvailability()
801 Availability = CXAvailability_NotAvailable; in computeCursorKindAndAvailability()
807 Availability = CXAvailability_NotAvailable; in computeCursorKindAndAvailability()
[all …]
H A DDelayedDiagnostic.cpp34 DD.Kind = Availability; in makeAvailability()
65 case Availability: in Destroy()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DAvailability.h1 //===--- 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 DDelayedDiagnostic.h128 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 DParsedAttr.h45 /// Represents information about a change in availability for
46 /// an entity, which is part of the encoding of the 'availability'
58 /// Determine whether this availability change is valid.
67 /// Describes the trailing object for Availability attribute in ParsedAttr.
165 /// availability attribute.
195 /// availability attribute.
233 /// Constructor for availability attributes.
315 /// availability slots.
412 "Not an availability attribute"); in getAvailabilityIntroduced()
418 "Not an availability attribute"); in getAvailabilityDeprecated()
[all …]
H A DCodeCompleteConsumer.h584 /// The availability of this code-completion result.
586 unsigned Availability : 2;
596 unsigned Priority, CXAvailabilityKind Availability,
627 /// Retrieve the availability of this code completion result.
628 unsigned getAvailability() const { return Availability; } in getAvailability()
694 CXAvailabilityKind Availability = CXAvailability_Available; variable
710 unsigned Priority, CXAvailabilityKind Availability) in CodeCompletionBuilder() argument
712 Availability(Availability) {} in CodeCompletionBuilder()
808 /// The availability of this result.
809 CXAvailabilityKind Availability = CXAvailability_Available; variable
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DFrontendRecords.h12 #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 Dprint213 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
236 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
247 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
286 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
360 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
365 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
376 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
381 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
388 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
393 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
/freebsd/contrib/llvm-project/libcxx/include/__ostream/
H A Dprint.h29 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
74 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
95 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
137 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
170 template <class = void> // TODO PRINT template or availability markup fires too eagerly (http://llv…
/freebsd/share/man/man4/
H A Dctl.474 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 DSymbolGraphSerializer.cpp151 /// Serialize the availability attributes of a symbol.
153 /// Availability information contains the introduced, deprecated, and obsoleted
155 /// Availability information also contains flags to indicate if the symbol is
159 /// \returns \c std::nullopt if the symbol has default availability attributes,
160 /// or an \c Array containing an object with the formatted availability
174 Object Availability; in serializeAvailability() local
176 Availability["domain"] = Avail.Domain; in serializeAvailability()
179 Availability["isUnconditionallyUnavailable"] = true; in serializeAvailability()
181 serializeObject(Availability, "introduced", in serializeAvailability()
183 serializeObject(Availability, "deprecated", in serializeAvailability()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDarwinSDKInfo.h108 /// 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/sys/ufs/ufs/
H A DREADME.acls13 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 Ddpaa2_swp_if.m59 * @brief Configure the channel data availability notification (CDAN)
63 * ctx: Context to configure data availability notifications (CDAN).
/freebsd/contrib/libpcap/pcap/
H A Dfuncattrs.h175 * Apple - insert #include <os/availability.h> here, and replace the two
207 * availability indicator macro for those routines, so that
209 * importing and availability tests to use those routines
213 * missing in libpcap. (If they don't use run-time availability
/freebsd/lib/libgssapi/
H A Dgss_wrap_size_limit.369 not the availability of specific QOP values for message protection.
74 since this ability may depend on the availability of system resources
/freebsd/share/man/man5/
H A Dfs.5238 The file system records space availability at the fragment level;
239 to determine block availability, aligned fragments are examined.
282 Each cylinder keeps track of the availability of blocks at different
/freebsd/contrib/lutok/
H A DINSTALL138 configure perform the best decision based on availability of ATF.
155 configure perform the best decision based on availability of Doxygen.

12345678910>>...15