Home
last modified time | relevance | path

Searched full:specifier (Results 1 – 25 of 1325) sorted by relevance

12345678910>>...53

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DNestedNameSpecifier.h10 // a C++ nested-name-specifier.
40 /// Represents a C++ nested name specifier, such as
45 /// specifier. Nested name specifiers are made up of a sequence of
47 /// (for dependent names), decltype specifier, or the global specifier ('::').
49 /// nested-namespace-specifier.
58 /// The nested name specifier that precedes this nested name
59 /// specifier.
61 /// The pointer is the nested-name-specifier that precedes this
66 /// The last component in the nested name specifier, which
69 /// When the pointer is NULL, this specifier represents the global
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ELFObjectWriter.cpp42 unsigned getRelocType32(SMLoc Loc, X86::Specifier Specifier,
45 unsigned getRelocType64(SMLoc Loc, X86::Specifier Specifier,
60 static X86_64RelType getType64(MCFixupKind Kind, X86::Specifier &Specifier, in getType64() argument
71 if (Specifier == X86::S_None && !IsPCRel) in getType64()
75 Specifier = X86::S_GOT; in getType64()
88 Specifier = X86::S_PLT; in getType64()
107 unsigned X86ELFObjectWriter::getRelocType64(SMLoc Loc, X86::Specifier Specifier, in getRelocType64() argument
110 switch (Specifier) { in getRelocType64()
117 if (Specifier == X86::S_None) in getRelocType64()
244 unsigned X86ELFObjectWriter::getRelocType32(SMLoc Loc, X86::Specifier Specifier, in getRelocType32() argument
[all …]
/freebsd/contrib/wpa/src/eap_peer/
H A Deap_gpsk.c32 int vendor; /* CSuite/Specifier */
33 int specifier; /* CSuite/Specifier */ member
202 data->specifier = EAP_GPSK_CIPHER_RESERVED; in eap_gpsk_select_csuite()
205 int vendor, specifier; in eap_gpsk_select_csuite() local
207 specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_select_csuite()
209 i, vendor, specifier); in eap_gpsk_select_csuite()
211 data->specifier == EAP_GPSK_CIPHER_RESERVED && in eap_gpsk_select_csuite()
212 eap_gpsk_supported_ciphersuite(vendor, specifier) && in eap_gpsk_select_csuite()
213 (!data->forced_cipher || data->forced_cipher == specifier)) in eap_gpsk_select_csuite()
216 data->specifier = specifier; in eap_gpsk_select_csuite()
[all …]
/freebsd/contrib/wpa/src/eap_common/
H A Deap_gpsk_common.c21 * @specifier: CSuite/Specifier
24 int eap_gpsk_supported_ciphersuite(int vendor, int specifier) in eap_gpsk_supported_ciphersuite() argument
27 specifier == EAP_GPSK_CIPHER_AES) in eap_gpsk_supported_ciphersuite()
31 specifier == EAP_GPSK_CIPHER_SHA256) in eap_gpsk_supported_ciphersuite()
151 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */ in eap_gpsk_derive_keys_helper()
264 * @specifier: CSuite/Specifier
280 int specifier, in eap_gpsk_derive_keys() argument
291 vendor, specifier); in eap_gpsk_derive_keys()
317 switch (specifier) { in eap_gpsk_derive_keys()
332 "key derivation", vendor, specifier); in eap_gpsk_derive_keys()
[all …]
H A Deap_gpsk_common.h41 u8 specifier[2]; member
48 int eap_gpsk_supported_ciphersuite(int vendor, int specifier);
50 int specifier,
57 int specifier,
62 size_t eap_gpsk_mic_len(int vendor, int specifier);
64 int specifier, const u8 *data, size_t len, u8 *mic);
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.TraceFunctions39 * RESULT: invalid probe specifier
43 * RESULT: invalid probe specifier
51 * RESULT: invalid probe specifier
59 * RESULT: invalid probe specifier
76 * RESULT: invalid probe specifier
80 * RESULT: invalid probe specifier.
88 * RESULT: Count of matching read probes and invalid probe specifier
93 * RESULT: invalid probe specifier.
97 * RESULT: invalid probe specifier.
109 * RESULT: invalid probe specifier.
H A Dman.TraceNames39 * RESULT: invalid probe specifier
43 * RESULT: invalid probe specifier
47 * RESULT: invalid probe specifier
55 * RESULT: invalid probe specifier
59 * RESULT: invalid probe specifier
67 * RESULT: invalid probe specifier
80 * RESULT: invalid probe specifier
97 * RESULT: Count of mathching read probes and invalid probe specifier
102 * RESULT: invalid probe specifier
124 * RESULT: invalid probe specifier
H A Dman.TraceModule39 * RESULT: invalid probe specifier
51 * RESULT: invalid probe specifier
59 * RESULT: invalid probe specifier
72 * and an invalid probe specifier for foounix.
76 * RESULT: invalid probe specifier for foounix.
99 * RESULT: invalid probe specifier.
103 * RESULT: invalid probe specifier.
107 * RESULT: invalid probe specifier.
H A Dman.TraceProvider44 * RESULT: invalid probe specifier
48 * RESULT: invalid probe specifier
52 * RESULT: invalid probe specifier
61 * probe specifier for foofile and no tracing.
65 * RESULT: invalid probe specifier
74 * RESULT: invalid probe specifier
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h155 /// The kind of attribute specifier we have found.
157 /// This is not an attribute specifier.
159 /// This should be treated as an attribute-specifier.
161 /// The next tokens are '[[', but this is not an attribute-specifier. This
334 /// typename (possibly qualified in C++) or a C++ scope specifier not followed
348 /// declaration specifier, and another one to get the actual type inside
361 /// optional scope specifier. \p IsNewScope should be \c true unless the scope
362 /// specifier was extracted from an existing tok::annot_cxxscope annotation.
769 /// nested-name-specifier without typename is treated as a type (e.g.
957 /// decl-specifier-seq[opt] declarator ctor-initializer[opt]
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DWarnings.cpp132 // table. It also has the "specifier" form of -Werror=foo. GCC supports in ProcessWarningOptions()
136 StringRef Specifier; in ProcessWarningOptions() local
137 if (Opt.size() > 5) { // Specifier must be present. in ProcessWarningOptions()
145 Specifier = Opt.substr(6); in ProcessWarningOptions()
148 if (Specifier.empty()) { in ProcessWarningOptions()
155 // Set the warning as error flag for this specifier. in ProcessWarningOptions()
156 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive); in ProcessWarningOptions()
157 } else if (DiagIDs->getDiagnosticsInGroup(Flavor, Specifier, _Diags)) { in ProcessWarningOptions()
158 EmitUnknownDiagWarning(Diags, Flavor, "-Werror=", Specifier); in ProcessWarningOptions()
165 StringRef Specifier; in ProcessWarningOptions() local
[all …]
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dqlog.md84 add-sub-term = ["-" / "+"] specifier
86 specifier = global-specifier / qualified-specifier
88 global-specifier = wildcard
90 qualified-specifier = component-specifier ":" component-specifier
92 component-specifier = name / wildcard
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCValue.h25 // Not all targets support SymB. For PC-relative relocations, a specifier is
33 uint32_t Specifier = 0; variable
46 uint32_t getSpecifier() const { return Specifier; } in getSpecifier()
47 void setSpecifier(uint32_t S) { Specifier = S; } in setSpecifier()
57 int64_t Val = 0, uint32_t Specifier = 0) {
62 R.Specifier = Specifier;
71 R.Specifier = 0; in get()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionMachO.cpp137 // the attribute specifier. in printSwitchToSection()
176 /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec".
180 /// specifier is present, this returns a string indicating the problem.
204 "mach-o section specifier requires a segment " in ParseSectionSpecifier()
210 "mach-o section specifier requires a section " in ParseSectionSpecifier()
229 "mach-o section specifier uses an unknown " in ParseSectionSpecifier()
238 // S_SYMBOL_STUBS always require a symbol stub size specifier. in ParseSectionSpecifier()
241 "mach-o section specifier of type " in ParseSectionSpecifier()
242 "'symbol_stubs' requires a size specifier"); in ParseSectionSpecifier()
258 "mach-o section specifier has invalid " in ParseSectionSpecifier()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymContext.cpp23 DILineInfoSpecifier Specifier, in fillLineInfoFromLocation() argument
26 if (Specifier.FNKind != DINameKind::None) { in fillLineInfoFromLocation()
30 switch (Specifier.FLIKind) { in fillLineInfoFromLocation()
65 DILineInfoSpecifier Specifier) { in getLineInfoForAddress() argument
84 if (Specifier.FNKind != DINameKind::None) in getLineInfoForAddress()
86 } else if (!fillLineInfoFromLocation(Result.Locations.front(), Specifier, in getLineInfoForAddress()
105 DILineInfoSpecifier Specifier) { in getLineInfoForAddressRange() argument
135 DILineInfoSpecifier Specifier) { in getInliningInfoForAddress() argument
148 if (!fillLineInfoFromLocation(Location, Specifier, LineInfo)) in getInliningInfoForAddress()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp10 // a C++ nested-name-specifier.
65 Mockup.Specifier = const_cast<IdentifierInfo *>(II); in Create()
77 "Broken nested name specifier"); in Create()
81 Mockup.Specifier = const_cast<NamespaceDecl *>(NS); in Create()
93 "Broken nested name specifier"); in Create()
97 Mockup.Specifier = const_cast<NamespaceAliasDecl *>(Alias); in Create()
108 Mockup.Specifier = const_cast<Type*>(T); in Create()
118 Mockup.Specifier = const_cast<IdentifierInfo *>(II); in Create()
136 Mockup.Specifier = RD; in SuperSpecifier()
141 if (!Specifier) in getKind()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFObjectWriter.cpp79 uint8_t Specifier = Target.getSpecifier(); in getRelocType() local
89 switch (Specifier) { in getRelocType()
113 switch (Specifier) { in getRelocType()
136 switch (Specifier) { in getRelocType()
174 switch (Specifier) { in getRelocType()
205 switch (Specifier) { in getRelocType()
213 switch (Specifier) { in getRelocType()
221 switch (Specifier) { in getRelocType()
276 switch (Specifier) { in getRelocType()
286 switch (Specifier) { in getRelocType()
[all …]
/freebsd/contrib/wpa/src/eap_server/
H A Deap_server_gpsk.c35 int specifier; /* CSuite/Specifier */ member
79 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init()
87 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init()
154 miclen = eap_gpsk_mic_len(data->vendor, data->specifier); in eap_gpsk_build_gpsk_3()
175 WPA_PUT_BE16(csuite->specifier, data->specifier); in eap_gpsk_build_gpsk_3()
182 data->specifier, start, pos - start, pos) < 0) in eap_gpsk_build_gpsk_3()
374 WPA_GET_BE16(csuite->specifier)); in eap_gpsk_process_gpsk_2()
379 data->specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_process_gpsk_2()
381 data->vendor, data->specifier); in eap_gpsk_process_gpsk_2()
409 data->vendor, data->specifier, in eap_gpsk_process_gpsk_2()
[all …]
/freebsd/crypto/openssl/doc/man7/
H A Dopenssl-qlog.pod115 add-sub-term = ["-" / "+"] specifier
117 specifier = global-specifier / qualified-specifier
119 global-specifier = wildcard
121 qualified-specifier = component-specifier ":" component-specifier
123 component-specifier = name / wildcard
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dsff,sfp.txt15 - mod-def0-gpios : GPIO phandle and a specifier of the MOD-DEF0 (AKA Mod_ABS)
19 - los-gpios : GPIO phandle and a specifier of the Receiver Loss of Signal
22 - tx-fault-gpios : GPIO phandle and a specifier of the Module Transmitter
25 - tx-disable-gpios : GPIO phandle and a specifier of the Transmitter Disable
28 - rate-select0-gpios : GPIO phandle and a specifier of the Rx Signaling Rate
32 - rate-select1-gpios : GPIO phandle and a specifier of the Tx Signaling Rate
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Dpci-ep.yaml27 - description: IOMMU specifier base (currently always 1 cell)
34 IOMMU specifier per the iommu-map property.
58 Maps a Device ID to an MSI and associated MSI specifier data.
85 associated with the listed MSI, with the MSI specifier
93 - description: (optional) The msi-specifier produced for the first
94 Device ID matched by the entry. Currently, msi-specifier is 0 or
102 mapped to an msi-specifier per the msi-map property.
/freebsd/sys/contrib/device-tree/Bindings/display/imx/
H A Dnxp,imx8mq-dcss.yaml60 - description: Phandle and clock specifier of IMX8MQ_CLK_DISP_AXI_ROOT
61 - description: Phandle and clock specifier of IMX8MQ_CLK_DISP_RTRM
62 - description: Phandle and clock specifier of either IMX8MQ_VIDEO2_PLL1_REF_SEL or
67 - description: Phandle and clock specifier of IMX8MQ_SYS1_PLL_800M
68 - description: Phandle and clock specifier of IMX8MQ_SYS1_PLL_800M
69 - description: Phandle and clock specifier of IMX8MQ_CLK_27M
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCAsmInfo.h64 using Specifier = uint16_t; variable
182 /// Return the string representation of the ELF relocation specifier
186 inline Specifier getSymbolLoc(Specifier S) { in getSymbolLoc()
187 return static_cast<Specifier>(S & AArch64::S_SymLocBits); in getSymbolLoc()
190 inline Specifier getAddressFrag(Specifier S) { in getAddressFrag()
191 return static_cast<Specifier>(S & AArch64::S_AddressFragBits); in getAddressFrag()
194 inline bool isNotChecked(Specifier S) { return S & AArch64::S_NC; } in isNotChecked()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp59 // If this nested-name-specifier refers to the current in computeDeclContext()
74 // We are entering the context of the nested name specifier, so try to in computeDeclContext()
75 // match the nested name specifier to either a primary class template in computeDeclContext()
109 "specifier in SFINAE context?"); in computeDeclContext()
118 // If the type of the nested name specifier is the same as the in computeDeclContext()
127 // The nested name specifier refers to a member of a class template. in computeDeclContext()
137 llvm_unreachable("Dependent nested-name-specifier has no DeclContext"); in computeDeclContext()
147 assert(Tag && "Non-tag type in nested-name-specifier"); in computeDeclContext()
170 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed"); in getCurrentInstantiationOf()
329 // a typedef thereof. If so, build the nested-name-specifier. in isAcceptableNestedNameSpecifier()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/serial/
H A Dserial.yaml31 Must contain a GPIO specifier, referring to the GPIO pin to be used as
37 Must contain a GPIO specifier, referring to the GPIO pin to be used as
43 Must contain a GPIO specifier, referring to the GPIO pin to be used as
49 Must contain a GPIO specifier, referring to the GPIO pin to be used as
55 Must contain a GPIO specifier, referring to the GPIO pin to be used as
61 Must contain a GPIO specifier, referring to the GPIO pin to be used as

12345678910>>...53