Home
last modified time | relevance | path

Searched refs:identifier (Results 1 – 25 of 462) sorted by relevance

12345678910>>...19

/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Datmel-xdma.txt13 - bit 13: SIF, source interface identifier, used to get the memory
14 interface identifier,
15 - bit 14: DIF, destination interface identifier, used to get the peripheral
16 interface identifier,
17 - bit 30-24: PERID, peripheral identifier.
35 - bit 13: SIF, source interface identifier, used to get the memory
36 interface identifier,
37 - bit 14: DIF, destination interface identifier, used to get the peripheral
38 interface identifier,
39 - bit 30-24: PERID, peripheral identifier
[all...]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseHLSL.cpp57 if (!Tok.is(tok::identifier)) { in ParseHLSLBuffer()
58 Diag(Tok, diag::err_expected) << tok::identifier; in ParseHLSLBuffer()
132 else if (Tok.is(tok::identifier)) in ParseHLSLAnnotations()
157 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
158 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLAnnotations()
173 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
174 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLAnnotations()
200 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
201 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLAnnotations()
229 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
[all …]
H A DParseTentative.cpp66 case tok::identifier: { in isCXXDeclarationStatement()
76 case tok::identifier: { in isCXXDeclarationStatement()
95 if (NextToken().is(tok::identifier)) in isCXXDeclarationStatement()
246 if (Tok.is(tok::identifier)) in TryConsumeDeclarationSpecifier()
1007 if (Tok.is(tok::identifier)) in TryParseOperatorId()
1101 if ((Tok.isOneOf(tok::identifier, tok::kw_operator) || in TryParseDeclarator()
1102 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) || in TryParseDeclarator()
1113 } else if (Tok.is(tok::identifier)) { in TryParseDeclarator()
1201 tok::identifier, tok::comma); in TentativeParseCCC()
1347 tok::identifier, in isCXXDeclarationSpecifier()
[all …]
/freebsd/contrib/wpa/src/common/
H A Ddpp_pkex.c44 pkex->code_len, pkex->identifier, &ec); in dpp_pkex_build_exchange_req()
84 if (pkex->identifier) in dpp_pkex_build_exchange_req()
85 attr_len += 4 + os_strlen(pkex->identifier); in dpp_pkex_build_exchange_req()
118 if (pkex->identifier) { in dpp_pkex_build_exchange_req()
120 wpabuf_put_le16(msg, os_strlen(pkex->identifier)); in dpp_pkex_build_exchange_req()
121 wpabuf_put_str(msg, pkex->identifier); in dpp_pkex_build_exchange_req()
175 const char *identifier, const char *code, in dpp_pkex_init() argument
196 if (identifier) { in dpp_pkex_init()
197 pkex->identifier = os_strdup(identifier); in dpp_pkex_init()
198 if (!pkex->identifier) in dpp_pkex_init()
[all …]
/freebsd/contrib/ntp/scripts/
H A Dplot_summary.in28 my ($identifier, $offset_limit, $gnuplot_terminal, $wait_after_plot,
39 $identifier = $opts->{'identifier'};
40 if (!$identifier) {
41 $identifier = "host".`hostname`;
42 chomp $identifier;
171 print "set title \"Loop Summary for $identifier: " .
217 print "set title \"Loop Summary for $identifier: " .
294 "\"Peer Summary for $peer on $identifier since $first_day\"\n";
H A Dinvoke-plot_summary.texi21 * plot_summary identifier:: identifier option
48 --identifier=str Origin of the data
71 @node plot_summary identifier
72 @subsection identifier option
73 @cindex plot_summary-identifier
H A Dplot_summary-opts33 'identifier' => '',
43 'directory=s', 'identifier=s', 'offset-limit=f',
53 --identifier=str Origin of the data
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DQualifierAlignmentFixer.cpp242 if (PreviousCheck->isOneOf(TT_PointerOrReference, tok::identifier, in analyzeRight()
324 if (TypeToken->isOneOf(tok::kw_auto, tok::identifier)) { in analyzeRight()
338 Next->startsSequence(tok::coloncolon, tok::identifier) || in analyzeRight()
340 tok::identifier))) { in analyzeRight()
344 } else if (Next->startsSequence(tok::coloncolon, tok::identifier)) { in analyzeRight()
427 if (TypeToken->isOneOf(tok::kw_auto, tok::identifier, TT_TemplateCloser)) { in analyzeLeft()
443 if (Tok->is(tok::identifier) && Previous->is(tok::coloncolon)) in analyzeLeft()
449 if (Tok->is(tok::identifier) && Previous->is(tok::kw_template) && in analyzeLeft()
454 if (Tok->endsSequence(tok::kw_auto, tok::identifier)) in analyzeLeft()
481 PreColonColon->isOneOf(TT_TemplateCloser, tok::identifier)) { in analyzeLeft()
[all …]
H A DTokenAnnotator.cpp98 if (AttrTok->startsSequence(tok::kw_using, tok::identifier, tok::colon)) in isCppAttribute()
100 if (AttrTok->isNot(tok::identifier)) in isCppAttribute()
107 AttrTok->startsSequence(tok::identifier, tok::identifier) || in isCppAttribute()
108 AttrTok->startsSequence(tok::r_paren, tok::identifier)) { in isCppAttribute()
356 (Line.startsWith(Keywords.kw_type, tok::identifier) || in parseParens()
358 tok::identifier))) { in parseParens()
372 (OpeningParen.Previous->endsSequence(tok::identifier, in parseParens()
391 OpeningParen.Previous->isNot(tok::identifier))) { in parseParens()
482 if (PrevPrev && PrevPrev->is(tok::identifier) && in parseParens()
484 CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) { in parseParens()
[all …]
/freebsd/contrib/llvm-project/lld/
H A D.clang-tidy3 - key: readability-identifier-naming.MemberCase
5 - key: readability-identifier-naming.ParameterCase
7 - key: readability-identifier-naming.VariableCase
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in161 def __init__(self, pathname, identifier=None, outputdir=None, argument
164 self.identifier = identifier
185 ''' % (self.pathname, self.identifier, self.outputdir, self.timeout, self.user)
371 if self.identifier:
372 msga = 'Test (%s): %s%s ' % (self.identifier, self.pathname, user)
451 ''' % (self.pathname, self.identifier, self.outputdir, self.timeout, self.user,
484 pretest = Cmd(self.pre, identifier=self.identifier, outputdir=odir,
486 test = Cmd(self.pathname, identifier=self.identifier,
490 failsafe = Cmd(self.failsafe, identifier=self.identifier,
494 posttest = Cmd(self.post, identifier=self.identifier, outputdir=odir,
[all …]
/freebsd/contrib/wpa/src/eap_common/
H A Deap_pax_common.c31 const char *identifier, in eap_pax_kdf() argument
42 if (identifier == NULL || num_blocks >= 255) in eap_pax_kdf()
49 addr[0] = (const u8 *) identifier; in eap_pax_kdf()
50 len[0] = os_strlen(identifier); in eap_pax_kdf()
H A Deap_common.c129 size_t payload_len, u8 code, u8 identifier) in eap_msg_alloc() argument
143 hdr->identifier = identifier; in eap_msg_alloc()
190 return eap->identifier; in eap_get_id()
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dhi3620-clock.txt17 Each clock is assigned an identifier and client nodes use this identifier
20 All these identifier could be found in <dt-bindings/clock/hi3620-clock.h>.
H A Dhix5hd2-clock.txt12 Each clock is assigned an identifier and client nodes use this identifier
15 All these identifier could be found in <dt-bindings/clock/hix5hd2-clock.h>.
H A Dmarvell,pxa168.txt18 Each clock is assigned an identifier and client nodes use this identifier
21 All these identifier could be found in <dt-bindings/clock/marvell,pxa168.h>.
H A Dmarvell,pxa910.txt18 Each clock is assigned an identifier and client nodes use this identifier
21 All these identifier could be found in <dt-bindings/clock/marvell-pxa910.h>.
H A Dhi3670-clock.txt24 Each clock is assigned an identifier and client nodes use this identifier
27 All these identifier could be found in <dt-bindings/clock/hi3670-clock.h>.
H A Dhi3660-clock.txt28 Each clock is assigned an identifier and client nodes use this identifier
31 All these identifier could be found in <dt-bindings/clock/hi3660-clock.h>.
H A Dhisi-crg.txt24 Each clock is assigned an identifier and client nodes use this identifier
27 All these identifier could be found in <dt-bindings/clock/hi3519-clock.h>.
H A Damlogic,gxbb-aoclkc.txt25 Each clock is assigned an identifier and client nodes can use this identifier
32 Each reset is assigned an identifier and client nodes can use this identifier
H A Dhi6220-clock.txt49 Each clock is assigned an identifier and client nodes use this identifier
52 All these identifier could be found in <dt-bindings/clock/hi6220-clock.h>.
/freebsd/contrib/wpa/src/eap_peer/
H A Deap_ttls.c492 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1); in eap_ttls_phase2_request_eap()
1109 hdr->identifier = 0; in eap_ttls_fake_identity_request()
1119 struct wpabuf *resp, u8 identifier, in eap_ttls_encrypt_response() argument
1128 data->ttls_version, identifier, in eap_ttls_encrypt_response()
1178 hdr->code, hdr->identifier, (unsigned long) len); in eap_ttls_process_phase2_eap()
1293 u8 identifier, in eap_ttls_process_decrypted() argument
1348 if (eap_ttls_encrypt_response(sm, data, resp, identifier, in eap_ttls_process_decrypted()
1367 u8 identifier, in eap_ttls_implicit_identity_request() argument
1403 retval = eap_ttls_encrypt_response(sm, data, resp, identifier, in eap_ttls_implicit_identity_request()
1419 struct eap_method_ret *ret, u8 identifier, in eap_ttls_phase2_start() argument
[all …]
H A Deap_gpsk.c41 u8 identifier,
45 u8 identifier);
274 u8 identifier, in eap_gpsk_process_gpsk_1() argument
301 resp = eap_gpsk_send_gpsk_2(data, identifier, in eap_gpsk_process_gpsk_1()
313 u8 identifier, in eap_gpsk_send_gpsk_2() argument
330 EAP_CODE_RESPONSE, identifier); in eap_gpsk_send_gpsk_2()
583 u8 identifier, in eap_gpsk_process_gpsk_3() argument
615 resp = eap_gpsk_send_gpsk_4(data, identifier); in eap_gpsk_process_gpsk_3()
628 u8 identifier) in eap_gpsk_send_gpsk_4() argument
639 EAP_CODE_RESPONSE, identifier); in eap_gpsk_send_gpsk_4()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp46 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier); in BuiltinTypeDeclBuilder()
91 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier); in addMemberVariable()
131 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier); in lookupBuiltinFunction()
254 IdentifierInfo &II = AST.Idents.get("Idx", tok::TokenKind::identifier); in addArraySubscriptOperator()
335 &S.Context.Idents.get(Name, tok::TokenKind::identifier), in addTypeParameter()
397 IdentifierInfo &HLSL = AST.Idents.get("hlsl", tok::TokenKind::identifier); in InitializeSema()
435 &AST.Idents.get("element", tok::TokenKind::identifier), false, false); in defineHLSLVectorAlias()
444 &AST.Idents.get("element_count", tok::TokenKind::identifier), AST.IntTy, in defineHLSLVectorAlias()
458 IdentifierInfo &II = AST.Idents.get("vector", tok::TokenKind::identifier); in defineHLSLVectorAlias()

12345678910>>...19