Searched refs:identifier (Results 1 - 25 of 104) sorted by relevance

12345

/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-csr-db.h142 * identifier can be a processor ID or a PCI ID.
144 * @param identifier processor ID or a PCI ID
148 extern int cvmx_db_get_chipindex(int identifier);
154 * @param identifier Identifer to choose the CSR DB with
159 extern const CVMX_CSR_DB_ADDRESS_TYPE *cvmx_csr_db_get(int identifier, const char *name);
165 * @param identifier Identifer to choose the CSR DB with
169 extern void cvmx_csr_db_decode(int identifier, uint64_t address, uint64_t value);
175 * @param identifier Identifer to choose the CSR DB with
179 extern void cvmx_csr_db_decode_by_name(int identifier, const char *name, uint64_t value);
185 * @param identifier Identife
[all...]
H A Dcvmx-csr-db-support.c65 * identifier can be a processor ID or a PCI ID.
67 * @param identifier processor ID or a PCI ID
71 int cvmx_db_get_chipindex(int identifier) argument
73 /* First try and see if the identifier is a Processor ID */
74 switch (identifier & 0xffff00)
95 switch (identifier)
131 * @param identifier Identifer to choose the CSR DB with
136 const CVMX_CSR_DB_ADDRESS_TYPE *cvmx_csr_db_get(int identifier, const char *name) argument
138 int chip = cvmx_db_get_chipindex(identifier);
179 * @param identifier Identife
183 cvmx_csr_db_decode(int identifier, uint64_t address, uint64_t value) argument
206 cvmx_csr_db_decode_by_name(int identifier, const char *name, uint64_t value) argument
230 cvmx_csr_db_display_list(int identifier, const char *prefix) argument
[all...]
/freebsd-9.3-release/contrib/wpa/src/eap_common/
H A Deap_common.h23 u8 code, u8 identifier);
H A Deap_common.c97 * @identifier: Identifier
108 u8 code, u8 identifier)
122 hdr->identifier = identifier;
169 return eap->identifier;
107 eap_msg_alloc(int vendor, EapType type, size_t payload_len, u8 code, u8 identifier) argument
H A Deap_defs.h26 u8 identifier; member in struct:eap_hdr
27 be16 length; /* including code and identifier; network byte order */
H A Deap_pax_common.c27 * @identifier: Public identifier for the key (Y)
37 const char *identifier,
48 if (identifier == NULL || num_blocks >= 255)
55 addr[0] = (const u8 *) identifier;
56 len[0] = os_strlen(identifier);
36 eap_pax_kdf(u8 mac_id, const u8 *key, size_t key_len, const char *identifier, const u8 *entropy, size_t entropy_len, size_t output_len, u8 *output) argument
H A Deap_pax_common.h86 const char *identifier,
/freebsd-9.3-release/contrib/ipfilter/perl/
H A Dlogfilter.pl41 ($proto, $identifier, $filename) = m/(\S+)\s+(\S+)\s+(\S+)/;
43 if ($proto =~ m/^icmp$/) { $icmp{$identifier} = $filename; last SWITCH; };
44 if ($proto =~ m/^udp$/) { $udp{$identifier} = $filename; last SWITCH; };
45 if ($proto =~ m/^tcp$/) { $tcp{$identifier} = $filename; last SWITCH; };
/freebsd-9.3-release/contrib/ntp/scripts/
H A Dplot_summary.in27 my ($identifier, $offset_limit, $gnuplot_terminal, $wait_after_plot,
38 $identifier = $opts->{'identifier'};
39 if (!$identifier) {
40 $identifier = "host".`hostname`;
41 chomp $identifier;
170 print "set title \"Loop Summary for $identifier: " .
216 print "set title \"Loop Summary for $identifier: " .
293 "\"Peer Summary for $peer on $identifier since $first_day\"\n";
/freebsd-9.3-release/contrib/wpa/src/tls/
H A Dasn1.c29 hdr->identifier = *pos++;
30 hdr->class = hdr->identifier >> 6;
31 hdr->constructed = !!(hdr->identifier & (1 << 5));
33 if ((hdr->identifier & 0x1f) == 0x1f) {
47 hdr->tag = hdr->identifier & 0x1f;
113 * identifier components in (X*40) + Y formula.
H A Dasn1.h54 u8 identifier, class, constructed; member in struct:asn1_hdr
/freebsd-9.3-release/crypto/heimdal/tests/kdc/
H A Dcheck-digest.in174 identifier=`grep identifier= sdigest-reply | cut -f2- -d=`
182 --server-identifier="$identifier" \
191 #echo identifier: $identifier
199 --server-identifier="$identifier" \
220 --server-identifier="$identifier" \
[all...]
/freebsd-9.3-release/sbin/dhclient/
H A Ddhclient.conf4 send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseInit.cpp32 case tok::period: // designator: '.' identifier
50 case tok::identifier:
64 case tok::identifier: // designation: identifier ':'
76 case tok::identifier:
131 /// [GNU] identifier ':'
139 /// '.' identifier
152 // designation ::= identifier ':'
155 if (Tok.is(tok::identifier)) {
162 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier
[all...]
H A DParsePragma.cpp246 // pack '(' ('push' | 'pop') [',' identifier] [, integer] ')'
275 } else if (Tok.is(tok::identifier)) {
298 } else if (Tok.is(tok::identifier)) {
370 if (Tok.isNot(tok::identifier)) {
413 if (Tok.isNot(tok::identifier) ||
428 if (Tok.isNot(tok::identifier)) {
486 // #pragma unused(identifier)
510 if (Tok.is(tok::identifier)) {
548 // For each identifier token, insert into the token stream a
549 // annot_pragma_unused token followed by the identifier toke
[all...]
H A DParseObjc.cpp98 /// '@' 'class' identifier-list ';'
102 ConsumeToken(); // the identifier "class"
109 if (Tok.isNot(tok::identifier)) {
158 /// '@' 'interface' identifier objc-superclass[opt]
165 /// '@' 'interface' identifier '(' identifier[opt] ')'
171 /// ':' identifier
186 ConsumeToken(); // the "interface" identifier
197 if (Tok.isNot(tok::identifier)) {
220 if (Tok.is(tok::identifier)) {
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DTokenKinds.h66 /// \brief Return true if this is a raw identifier or an identifier kind.
68 return (K == tok::identifier) || (K == tok::raw_identifier);
/freebsd-9.3-release/contrib/gcc/cp/
H A Dlex.c107 tree identifier;
113 identifier = get_identifier (buffer); \
114 IDENTIFIER_OPNAME_P (identifier) = 1; \
119 oni->identifier = identifier; \
127 operator_name_info[(int) ERROR_MARK].identifier
106 tree identifier; local
H A Dmangle.c26 identifier. This identifier is used as the function's or
37 returns an identifier containing the mangled name for a decl.
467 ::std::identifier<char>, where identifier is
475 /* Check NODE's name is ::std::identifier. */
1158 <source-name> ::= </length/ number> <identifier> */
1161 write_source_name (tree identifier) argument
1163 MANGLE_TRACE_TREE ("source-name", identifier);
1167 if (IDENTIFIER_TEMPLATE (identifier))
1367 write_identifier(const char *identifier) argument
2837 tree identifier; local
[all...]
/freebsd-9.3-release/contrib/wpa/src/eap_peer/
H A Deap_ttls.c594 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1);
1238 hdr->identifier = 0;
1248 struct wpabuf *resp, u8 identifier,
1257 data->ttls_version, identifier,
1305 "identifier=%d length=%lu",
1306 hdr->code, hdr->identifier, (unsigned long) len);
1426 u8 identifier,
1481 if (eap_ttls_encrypt_response(sm, data, resp, identifier,
1500 u8 identifier,
1508 *out_data = eap_ttls_build_phase_finished(sm, data, identifier,
1246 eap_ttls_encrypt_response(struct eap_sm *sm, struct eap_ttls_data *data, struct wpabuf *resp, u8 identifier, struct wpabuf **out_data) argument
1423 eap_ttls_process_decrypted(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct ttls_parse_avp *parse, struct wpabuf *in_decrypted, struct wpabuf **out_data) argument
1497 eap_ttls_final_phase_finished(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1514 eap_ttls_implicit_identity_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1552 eap_ttls_phase2_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1582 eap_ttls_decrypt(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const struct wpabuf *in_data, struct wpabuf **out_data) argument
1705 eap_ttls_process_handshake(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const u8 *in_data, size_t in_len, struct wpabuf **out_data) argument
[all...]
H A Deap_peap.c195 * @id: EAP identifier for the header
345 * @id: EAP identifier for the header
632 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1);
669 hdr->identifier);
798 req->identifier, NULL, out_data);
833 nhdr->identifier = req->identifier;
909 "identifier=%d length=%lu", hdr->code, hdr->identifier,
956 rhdr->identifier
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dstub-objc.c201 tree ARG_UNUSED (identifier))
271 objc_is_public (tree ARG_UNUSED (expr), tree ARG_UNUSED (identifier))
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteMacros.cpp29 // If two tokens have the same kind and the same identifier info, they are
35 // Otherwise, if they are different but have the same identifier info, they
78 // If we have an identifier with no identifier info for our raw token, look
80 // identifier tokens.
130 if (RawTokens[CurRawTok].is(tok::identifier)) {
136 RawTokens[CurRawTok+1].is(tok::identifier) &&
/freebsd-9.3-release/contrib/bsnmp/lib/
H A Dsnmpclient.h83 int32_t identifier; member in struct:snmp_client
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DTokenConcatenation.cpp74 TokenInfo[tok::identifier ] |= aci_custom;
167 PrevKind = tok::identifier;
213 // In C++11, a string or character literal followed by an identifier is a
218 // A ud-suffix is an identifier. If the previous token ends with one, treat
219 // it as an identifier.
223 case tok::identifier: // id+id or id+number or id+L"foo".
234 // If this isn't identifier + string, we're done.
238 // Otherwise, this is a narrow character or string. If the *identifier*

Completed in 433 milliseconds

12345