HomeSort by: relevance | last modified time | path
    Searched refs:identifier (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/tests/usr.bin/xlint/lint1/
msg_095.c 8 int identifier; variable in typeref:typename:int
11 example(int identifier)
15 /* expect+2: warning: declaration of 'identifier' hides earlier one [95] */
16 /* expect+1: warning: 'identifier' set but not used in function 'example' [191] */
17 int identifier = 3; local in function:example
20 return identifier;
msg_088.c 8 extern int identifier;
13 /* expect+1: warning: typedef 'identifier' hides external declaration with type 'int' [88] */
14 typedef double identifier; typedef in function:func
msg_027.c 8 extern int identifier(void);
10 /* expect+1: error: redeclaration of 'identifier' with type 'function(void) returning double', expected 'function(void) returning int' [347] */
11 extern double identifier(void);
c23.c 126 // An attribute may be a plain identifier without arguments.
127 [[identifier]]i++;
129 // The identifier may be prefixed with one additional identifier.
130 [[prefix::identifier]]i++;
133 [[identifier()]]i++;
136 [[identifier([])]]i++;
146 [[identifier([], {}, ())]]i++;
149 [[identifier(((((())))))]]i++;
151 [[identifier([[[[[]]]]])]]i++
    [all...]
gcc_attribute.c 116 identifier
decl_arg.c 27 /* expect+6: warning: function definition for 'old_style' with identifier list is obsolete in C23 [384] */
65 /* expect+1: warning: function definition for 'cover_notype_direct_decl' with identifier list is obsolete in C23 [384] */
130 double (identifier),
146 double (identifier), /* 4 */
160 /* expect+1: warning: function definition for 'f' with identifier list is obsolete in C23 [384] */
  /src/tests/libexec/ld.elf_so/helper_dso3/
h_helper_dso3.cpp 33 const char *identifier; member in struct:VerboseDestructor
34 VerboseDestructor(const char *identifier_) : identifier(identifier_) {
35 printf("in ctor: %s\n", identifier);
38 printf("in dtor: %s\n", identifier);
  /src/tests/usr.bin/indent/
lex_ident.c 57 int identifier\n;
61 int identifier \ n;
fmt_decl.c 331 type identifier; local in function:x
348 type identifier; local in function:x
  /src/sys/dev/i2o/
i2odpt.h 151 u_int32_t identifier; member in struct:i2o_dpt_param_device_info
iopsp.c 278 targ = le32toh(param.sdi.identifier);
  /src/usr.bin/xlint/lint1/
cgram.y 352 %type <y_name> identifier
508 identifier {
514 identifier: label
589 identifier {
599 } identifier {
1494 type_attribute_list_opt identifier {
1626 identifier type_attribute_list {
1632 | identifier {
1656 identifier {
1677 $$ = (parameter_list){ .first = $3, .identifier = true }
    [all...]
lint1.h 398 bool identifier:1; member in struct:__anondcf084d01608
541 const char *identifier; member in union:token::__anondcf084d01d0a
README.md 115 | NAME | references the identifier in `u.sym` |
157 This means that the same identifier may appear multiple times.
160 so they are found first when looking for the identifier.
debug.c 558 debug_printf("%s", tok->u.identifier);
  /src/share/mk/
bsd.host.mk 50 # something that does not look like an identifier, then use uname -m.
  /src/usr.sbin/makefs/cd9660/
cd9660_eltorito.h 64 u_char identifier [ISODCL(0x01,0x05)]; member in struct:_boot_volume_descriptor
cd9660_eltorito.c 532 memcpy(bvdData->identifier, ISO_VOLUME_DESCRIPTOR_STANDARD_ID, 5);
535 memcpy(bvdData->identifier, ISO_VOLUME_DESCRIPTOR_STANDARD_ID, 5);
  /src/sys/kern/
subr_disk_mbr.c 276 /* printf("vrsd->identifier = `%s`\n", vrsd->identifier); */
277 while (memcmp(vrsd->identifier, "CD001", 5) == 0) {
288 /* printf("vrsd->identifier = `%s`\n", vrsd->identifier); */
289 if (memcmp(vrsd->identifier, "BEA01", 5))
299 /* printf("vrsd->identifier = `%s`\n", vrsd->identifier); */
300 if (memcmp(vrsd->identifier, "NSR0", 4))
  /src/usr.bin/make/unit-tests/
varparse-undef-partial.mk 52 # The variable COMPILER typically contains an identifier and the variable is
directive-for-empty.mk 60 # The identifier 'empty' can only be used in conditions such as .if, .ifdef or
  /src/lib/libintl/
plural_parser.c 92 char identifier[MAX_LEN_ATOM+1]; member in union:token_data
113 /* get an atom (identifier or constant) */
146 strcpy(token_data->identifier, buf);
281 printf("symbol: %s\n", token_data.identifier);
346 * term := literal | identifier | '(' exp ')'
463 /* term := identifier | constant | '(' exp ')' */
746 printf("%s", pelem->u.token_data.identifier);
  /src/sys/dev/iscsi/
iscsi_text.c 224 chap_md5_response(uint8_t *buffer, uint8_t identifier, uint8_t *secret,
230 MD5Update(&md5, &identifier, 1);
1346 uint8_t identifier = 0; local in function:assemble_security_parameters
1420 identifier = (uint8_t) rxp.val.nval[0];
1476 chap_md5_response(state->temp_buf, identifier,
  /src/sys/dev/pci/ixgbe/
ixgbe_phy.c 4 SPDX-License-Identifier: BSD-3-Clause
1367 u8 identifier = 0; local in function:ixgbe_identify_sfp_module_generic
1388 &identifier);
1393 if (identifier != IXGBE_SFF_IDENTIFIER_SFP) {
1515 hw->phy.id = identifier;
1717 u8 identifier = 0; local in function:ixgbe_identify_qsfp_module_generic
1739 &identifier);
1744 if (identifier != IXGBE_SFF_IDENTIFIER_QSFP_PLUS) {
1750 hw->phy.id = identifier;
  /src/sys/fs/udf/
ecma167-udf.h 72 uint8_t identifier[5]; member in struct:vrs_desc
254 /* Entity Identifier [1/7.4] */
334 char vol_id[32]; /* KEY ; main identifier of this disc */
646 /* File Identifier Descriptor [4/14.4] */
651 uint8_t l_fi; /* Length of file identifier area */

Completed in 28 milliseconds

1 2