HomeSort by: relevance | last modified time | path
    Searched defs:tag (Results 1 - 25 of 905) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/xlint/lint1/
msg_013.c 8 enum tag;
12 void function(enum tag);
14 enum tag { enum
decl_struct_c90.c 11 enum { A, B, C } tag; member in struct:unnamed_member
  /src/sys/arch/evbppc/explora/
consinit.c 70 bus_space_tag_t tag; local
79 tag = elb_get_bus_space_tag(BASE_COM);
80 comcnattach(tag, _BUS_SPACE_UNSTRIDE(tag, BASE_COM), COM_CONSOLE_SPEED,
84 tag = elb_get_bus_space_tag(BASE_FB);
85 fb_cnattach(tag, BASE_FB2, (void *)BASE_FB);
89 tag = elb_get_bus_space_tag(BASE_PCKBC);
90 pckbc_cnattach(tag, _BUS_SPACE_UNSTRIDE(tag, BASE_PCKBC),
91 _BUS_SPACE_UNSTRIDE(tag, BASE_PCKBC2-BASE_PCKBC), PCKBC_KBD_SLOT
    [all...]
  /src/sys/arch/netwinder/pci/
pci_machdep.c 19 pcitag_t tag; local
24 tag = pci_make_tag(pba->pba_pc, pba->pba_bus, 9, 0);
25 pci_conf_write(pba->pba_pc, tag,
30 intreg = pci_conf_read(pba->pba_pc, tag, PCI_INTERRUPT_REG);
36 pci_conf_write(pba->pba_pc, tag, PCI_INTERRUPT_REG, intreg);
37 pci_conf_write(pba->pba_pc, tag, 0x10, 0x400 | PCI_MAPREG_TYPE_IO);
38 pci_conf_write(pba->pba_pc, tag, 0x14, 0x00800000);
43 tag = pci_make_tag(pba->pba_pc, pba->pba_bus, 12, 0);
44 pci_conf_write(pba->pba_pc, tag,
48 intreg = pci_conf_read(pba->pba_pc, tag, PCI_INTERRUPT_REG)
    [all...]
  /src/sys/dev/i2c/
i2c_subr.c 66 i2c_tag_t tag = iba->iba_tag; local
71 if (tag->ic_channel != I2C_CHANNEL_DEFAULT) {
72 aprint_normal(" bus %d", tag->ic_channel);
  /src/external/ibm-public/postfix/dist/src/global/
mail_task.c 62 const char *tag; local
72 if ((tag = safe_getenv(CONF_ENV_LOGTAG)) == 0)
74 tag = var_syslog_name ? var_syslog_name :
76 vstring_sprintf(canon_name, "%s/%s", tag, argv0);
  /src/external/mit/libcbor/dist/docs/
release_meta.rb 5 def self.tag singleton method in class:Release
11 tag.sub('v', '')
  /src/bin/setfacl/
mask.c 53 acl_tag_t tag; local
94 if (acl_get_tag_type(entry, &tag) == -1)
98 if (tag == ACL_MASK) {
  /src/sys/arch/prep/prep/
consinit.c 135 bus_space_tag_t tag = &genppc_isa_io_space_tag; local
137 if(comcnattach(tag, consinfo->addr, consinfo->speed, COM_FREQ,
  /src/sys/arch/rs6000/rs6000/
consinit.c 80 bus_space_tag_t tag = &rs6000_iocc0_io_space_tag; local
82 if(comcnattach(tag, consinfo->addr, consinfo->speed, COM_FREQ,
  /src/sys/dev/marvell/
gtidmacvar.h 37 * MARVELL_TAG_SDRAM_CS* to a tag. In this case, device_register() should
38 * replace mva_tags of marvell_attach_args to the tag list for you.
41 enum marvell_tags tag; member in struct:gtidmac_winacctbl
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
ciphercommon_ccm_hw.c 26 int ossl_ccm_generic_gettag(PROV_CCM_CTX *ctx, unsigned char *tag, size_t tlen)
28 return CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, tlen) > 0;
33 unsigned char *tag, size_t taglen)
44 if (rv == 1 && tag != NULL)
45 rv = (CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, taglen) > 0);
62 unsigned char tag[16]; local
64 if (!CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, taglen)
65 || CRYPTO_memcmp(tag, expected_tag, taglen) != 0)
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
ciphercommon_ccm_hw.c 26 int ossl_ccm_generic_gettag(PROV_CCM_CTX *ctx, unsigned char *tag, size_t tlen)
28 return CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, tlen) > 0;
33 unsigned char *tag, size_t taglen)
43 if (rv == 1 && tag != NULL)
44 rv = (CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, taglen) > 0);
60 unsigned char tag[16]; local
62 if (!CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, taglen)
63 || CRYPTO_memcmp(tag, expected_tag, taglen) != 0)
  /src/external/bsd/zstd/dist/tests/
checkTag.c 13 * $ ./checkTag tag
15 * The tag is then compared to zstd version number.
18 * Example : tag v1.8.1.2 is compatible with version 1.8.1
19 * When tag and version are not compatible, program exits with error code 1.
30 * @return 1 if tag is compatible, 0 if not.
32 static int validate(const char* const tag)
34 size_t const tagLength = strlen(tag);
38 if (tag[0] != 'v') return 0;
41 if (strncmp(ZSTD_VERSION_STRING, tag+1, verLength)) return 0;
49 const char* const tag = argv[1] local
    [all...]
  /src/external/gpl2/texinfo/dist/makeinfo/
html.h 29 char *tag; member in struct:hstack
45 /* Open or close TAG according to START_OR_END. */
46 extern void insert_html_tag (int start_or_end, char *tag);
59 extern int rollback_empty_tag (char *tag);
62 extern void insert_html_tag_with_attribute (int start_or_end, char *tag, char *format, ...);
  /src/sys/arch/arm/gemini/
gemini_ipm.h 15 uint8_t tag; member in struct:ipm_desc
21 * void *gemini_ipm_register(uint8_t tag, unsigned int ipl, size_t quota,
26 * - register an IPM service, identified by 'tag'
37 * - if the 'tag' is already in use, or if 'quota' descriptors are not available,
  /src/sys/arch/x86/pci/
aapic.c 46 pcitag_t tag; local
67 tag = pci_make_tag(pa->pa_pc, bus, dev, func);
68 reg = pci_conf_read(pa->pa_pc, tag, AMD8131_PCIX_MISC);
70 pci_conf_write(pa->pa_pc, tag, AMD8131_PCIX_MISC, reg);
  /src/sys/arch/x86/x86/
convert_xmm_s87.c 42 unsigned int tag, ab_tag, st; local
54 * It really isn't worth setting the 'tag' bits to 01 (zero) or
64 * r7 downwards - so the high bits of the tag register indicate
78 /* tag word handled below */
89 /* Tag word and registers. */
99 tag = 0;
101 tag <<= 2;
109 tag |= 1; /* Zero */
111 tag |= 2; /* Denormal */
113 tag |= 2; /* Infinity or NaN *
124 unsigned int tag, ab_tag; local
    [all...]
  /src/external/bsd/openldap/dist/contrib/slapd-modules/proxyOld/
proxyOld.c 55 ber_tag_t tag; local
83 tag = ber_scanf( ber, "{m}", &dn );
85 if ( tag == LBER_ERROR ) {
  /src/external/bsd/openldap/dist/libraries/libldap/
account_usability.c 57 ber_tag_t tag; local
78 tag = ber_peek_tag( ber, &berLen );
80 if ( tag == LDAP_TAG_X_ACCOUNT_USABILITY_AVAILABLE ) {
86 } else if ( tag == LDAP_TAG_X_ACCOUNT_USABILITY_NOT_AVAILABLE ) {
91 while ( (tag = ber_peek_tag( ber, &berLen )) != LBER_DEFAULT ) {
92 switch (tag) {
dds.c 39 ber_tag_t tag; local
70 /* check the tag */
71 tag = ber_scanf( ber, "{i}", newttl );
74 if ( tag != LDAP_TAG_EXOP_REFRESH_RES_TTL ) {
getattr.c 39 ber_tag_t tag; local
65 tag = ber_scanf( ber, "{xl{" /*}}*/, &len );
66 if( tag == LBER_ERROR ) {
88 tag = ber_scanf( ber, "{ax}", &attr );
89 if( tag == LBER_ERROR ) {
103 ber_tag_t tag; local
118 tag = ber_scanf( ber, "{ax}", &attr );
119 if( tag == LBER_ERROR ) {
136 ber_tag_t tag; local
154 tag = ber_scanf( ber, vals ? "{mM}" : "{mx}", attr, vals
    [all...]
passwd.c 60 ber_tag_t tag; local
68 /* we should check the tag */
69 tag = ber_scanf( ber, "{o}", newpasswd );
72 if ( tag == LBER_ERROR ) {
  /src/external/bsd/openldap/dist/servers/lloadd/
proto-lload.h 188 LDAP_SLAPD_F (const char *) lload_msgtype2str( ber_tag_t tag ); variable
  /src/external/gpl2/lvm2/dist/tools/
vgcreate.c 25 const char *tag; local
88 if (!(tag = arg_str_value(cmd, addtag_ARG, NULL))) {
89 log_error("Failed to get tag");
98 if (!str_list_add(cmd->mem, &vg->tags, tag)) {
99 log_error("Failed to add tag %s to volume group %s",
100 tag, vp_new.vg_name);

Completed in 55 milliseconds

1 2 3 4 5 6 7 8 91011>>