Searched refs:tag (Results 201 - 225 of 1277) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/sys/arch/landisk/include/
H A Dbootinfo.h60 unsigned int tag; /* PCI, BIOS format */ member in struct:btinfo_netif
/netbsd-6-1-5-RELEASE/sys/arch/mips/adm5120/dev/
H A Dadmpci.c185 pcitag_t tag; local
229 tag = pci_make_tag(&sc->sc_pc, 0, 0, 0);
231 pci_conf_read(&sc->sc_pc, tag, PCI_MAPREG_START));
260 /* XXX: review dma tag logic */
307 admpci_decompose_tag(void *v, pcitag_t tag, int *b, int *d, int *f) argument
311 bus = __SHIFTOUT(tag, ADMPCI_TAG_BUS_MASK);
312 device = __SHIFTOUT(tag, ADMPCI_TAG_DEVICE_MASK);
313 function = __SHIFTOUT(tag, ADMPCI_TAG_FUNCTION_MASK);
324 admpci_tag_to_addr(void *v, pcitag_t tag, int reg, bus_addr_t *addrp) argument
329 /* panics if tag i
340 admpci_conf_read(void *v, pcitag_t tag, int reg) argument
366 admpci_conf_write(void *v, pcitag_t tag, int reg, pcireg_t data) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amiga/pci/
H A Dpci_machdep.c65 amiga_pci_decompose_tag(pci_chipset_tag_t pc, pcitag_t tag, int *bp, argument
69 *bp = (tag >> 16) & 0xff;
71 *dp = (tag >> 11) & 0x1f;
73 *fp = (tag >> 8) & 0x07;
/netbsd-6-1-5-RELEASE/sys/dist/pf/net/
H A Dpf_mtag.h50 u_int16_t tag; /* tag id */ member in struct:pf_mtag
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Dadd.c40 List * entries, const char *tag);
196 char *tag; local
243 ParseTag (&tag, &date, &nonbranch);
247 Create_Admin (p, argv[j], rcsdir, tag, date,
259 if (tag)
260 free (tag);
346 sticky branch tag, and there is already an RCS file which
347 does not have that tag, then the head revision is
398 "cannot add file on non-branch tag `%s'",
399 vers->tag);
735 char *tag, *date; local
891 build_entry(const char *repository, const char *user, const char *options, const char *message, List *entries, const char *tag) argument
[all...]
H A Dclassify.c25 * tag
40 Classify_File (struct file_info *finfo, char *tag, char *date, char *options, argument
47 vers = Version_TS (finfo, options, tag, date,
59 /* FIXME: Why do we skip this message if vers->tag or
64 if (!force_tag_match || !(vers->tag || vers->date))
73 /* FIXME: Why do we skip this message if vers->tag or
78 if (!force_tag_match || !(vers->tag || vers->date))
295 * has changed. If the sticky tag has changed, we just need
347 * file already for us, using the new tag/date. This
410 if (aflag || vers->tag || ver
[all...]
H A Drcs.h208 int RCS_exist_tag (RCSNode *rcs, char *tag);
209 char *RCS_tag2rev (RCSNode *rcs, char *tag);
210 char *RCS_getversion (RCSNode *rcs, const char *tag, const char *date,
214 int RCS_nodeisbranch (RCSNode *rcs, const char *tag);
215 char *RCS_whatbranch (RCSNode *rcs, const char *tag);
220 void RCS_check_tag (const char *tag);
224 char *RCS_getbranch (RCSNode *rcs, const char *tag, int force_tag_match);
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/isc/
H A Dev_waits.c53 evWaitFor(evContext opaqueCtx, const void *tag, argument
58 evWaitList *wl = evGetWaitList(ctx, tag, 1);
63 new->tag = tag;
78 * Mark runnable all waiting functions having a certain tag.
81 evDo(evContext opaqueCtx, const void *tag) { argument
83 evWaitList *wl = evGetWaitList(ctx, tag, 0);
116 wl = evGetWaitList(ctx, this->tag, 0);
173 new->tag = NULL;
195 evPrintf(ctx, 9, " tag
237 evGetWaitList(evContext_p *ctx, const void *tag, int should_create) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Disp_target.h59 void * nt_hba; /* HBA tag */
65 uint64_t nt_tagval; /* tag value */
78 #define MATCH_TMD(tmd, iid, lun, tag) \
83 (tag == TAG_ANY || tag == tmd->cd_tagval) \
/netbsd-6-1-5-RELEASE/sys/arch/arm/gemini/
H A Dgemini_lpc.c162 it8712_pnp_read(lpctag_t tag, int ldn, uint index) argument
164 gemini_lpc_softc_t *sc = tag;
177 it8712_pnp_write(lpctag_t tag, int ldn, uint index, uint8_t val) argument
179 gemini_lpc_softc_t *sc = tag;
192 it8712_pnp_enter(lpctag_t tag) argument
194 gemini_lpc_softc_t *sc = tag;
205 it8712_pnp_exit(lpctag_t tag) argument
207 gemini_lpc_softc_t *sc = tag;
216 it8712_intr_establish(lpctag_t tag, uint intr, int ipl, int ist, argument
219 gemini_lpc_softc_t *sc = tag;
228 it8712_intr_disestablish(lpctag_t tag, void *ih) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/libsupc++/
H A DMakefile.am103 LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared --mode=compile $(CC) \
122 # 2) In general, libtool expects an argument such as `--tag=CXX' when
131 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
135 # We have to put --tag disable-shared after --tag CXX lest things
137 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared \
147 CXXLINK = $(LIBTOOL) --tag CXX --tag disabl
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tests/
H A Damd64check.c56 int tag; member in struct:__anon2566
97 if ((calling_conventions_fenv.tag & 0xFFFF) != 0xFFFF)
100 header, calling_conventions_fenv.tag & 0xFFFF);
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-bootp.c374 register u_int16_t tag; local
389 /* Loop while we there is a tag left in the buffer */
391 tag = *bp++;
392 if (tag == TAG_PAD && vflag < 3)
394 if (tag == TAG_END && vflag < 3)
396 if (tag == TAG_EXTENDED_OPTION) {
398 tag = EXTRACT_16BITS(bp + 1);
401 * If not, we need to offset tag after this step.
403 cp = tok2str(xtag2str, "?xT%u", tag);
405 cp = tok2str(tag2str, "?T%u", tag);
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn1t.h293 #define ASN1_EX_TEMPLATE_TYPE(flags, tag, name, type) { \
294 (flags), (tag), 0,\
301 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
302 (flags), (tag), offsetof(stname, field),\
307 #define ASN1_EX_COMBINE(flags, tag, type) { \
308 (flags)|ASN1_TFLG_COMBINE, (tag), 0, NULL, ASN1_ITEM_ref(type) }
312 #define ASN1_IMP_EX(stname, field, type, tag, ex) \
313 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
315 #define ASN1_EXP_EX(stname, field, type, tag, ex) \
316 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stnam
448 long tag; /* tag, not used if no tagging */ member in struct:ASN1_TEMPLATE_st
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/libldap/
H A Derror.c250 ber_tag_t tag; local
311 tag = ber_scanf( ber, "{iA}",
317 tag = ber_scanf( ber, "{iAA" /*}*/,
320 if( tag != LBER_ERROR ) {
323 tag = ber_scanf( ber, "v", &ld->ld_referrals );
328 if( tag != LBER_ERROR ) {
333 tag = ber_scanf( ber, "x" );
340 tag = ber_scanf( ber, "x" );
343 if ( tag != LBER_ERROR &&
347 tag
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/makeinfo/
H A Dhtml.c408 /* Save current tag. */
410 push_tag (char *tag, char *attribs)
414 newstack->tag = tag;
420 /* Get last tag. */
428 line_error (_("[unexpected] no html tag to pop"));
438 /* Check if tag is an empty or a whitespace only element.
441 rollback_empty_tag (char *tag)
444 int taglen = strlen (tag);
453 /* Find the end of the previous tag
406 push_tag(char *tag, char *attribs) argument
437 rollback_empty_tag(char *tag) argument
496 insert_html_tag_with_attribute(int start_or_end, char *tag, char *format, ...) argument
575 insert_html_tag(int start_or_end, char *tag) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/logger/
H A Dlogger.c70 const char *tag; local
75 tag = NULL;
99 case 't': /* tag */
100 tag = optarg;
110 openlog(tag != NULL ? tag : getlogin(), logflags, 0);
193 "%s: [-is] [-f file] [-p pri] [-t tag] "
/netbsd-6-1-5-RELEASE/common/lib/libprop/
H A Dprop_object.c100 * Append an XML-style start tag to the externalize buffer.
104 struct _prop_object_externalize_context *ctx, const char *tag)
113 _prop_object_externalize_append_cstring(ctx, tag) == false ||
122 * Append an XML-style end tag to the externalize buffer.
126 struct _prop_object_externalize_context *ctx, const char *tag)
131 _prop_object_externalize_append_cstring(ctx, tag) == false ||
141 * Append an XML-style empty tag to the externalize buffer.
145 struct _prop_object_externalize_context *ctx, const char *tag)
155 _prop_object_externalize_append_cstring(ctx, tag) == false ||
326 * Skip the body and end tag o
103 _prop_object_externalize_start_tag( struct _prop_object_externalize_context *ctx, const char *tag) argument
125 _prop_object_externalize_end_tag( struct _prop_object_externalize_context *ctx, const char *tag) argument
144 _prop_object_externalize_empty_tag( struct _prop_object_externalize_context *ctx, const char *tag) argument
355 _prop_object_internalize_find_tag(struct _prop_object_internalize_context *ctx, const char *tag, _prop_tag_type_t type) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/macppc/pci/
H A Dbandit.c100 /* find i/o tag */
119 panic("Can't init bandit io tag");
124 panic("Can't init bandit mem tag");
152 bandit_conf_read(void *cookie, pcitag_t tag, int reg) argument
159 pci_decompose_tag(pc, tag, &bus, &dev, &func);
173 x = tag | reg | 1;
192 bandit_conf_write(void *cookie, pcitag_t tag, int reg, pcireg_t data) argument
198 pci_decompose_tag(pc, tag, &bus, &dev, &func);
208 x = tag | reg | 1;
232 pcitag_t tag; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/footbridge/
H A Dfootbridge_pci.c172 footbridge_pci_decompose_tag(void *pcv, pcitag_t tag, int *busp, int *devicep, int *functionp) argument
175 printf("footbridge_pci_decompose_tag(pcv=%p, tag=0x%08x, bp=%p, dp=%p, fp=%p)\n",
176 pcv, (uint32_t)tag, busp, devicep, functionp);
180 *busp = (tag >> 16) & 0xff;
182 *devicep = (tag >> 11) & 0x1f;
184 *functionp = (tag >> 8) & 0x7;
188 footbridge_pci_conf_read(void *pcv, pcitag_t tag, int reg) argument
194 footbridge_pci_decompose_tag(pcv, tag, &bus, &device, &function);
206 printf("footbridge_pci_conf_read(pcv=%p tag=0x%08x reg=0x%02x)=0x%08x\n",
207 pcv, (uint32_t)tag, re
213 footbridge_pci_conf_write(void *pcv, pcitag_t tag, int reg, pcireg_t data) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/xscale/
H A Dbecc_pci.c169 becc_pci_decompose_tag(void *v, pcitag_t tag, int *bp, int *dp, int *fp) argument
173 *bp = (tag >> 16) & 0xff;
175 *dp = (tag >> 11) & 0x1f;
177 *fp = (tag >> 8) & 0x7;
188 becc_pci_conf_setup(struct becc_softc *sc, pcitag_t tag, int offset, argument
192 becc_pci_decompose_tag(sc, tag, &ps->ps_b, &ps->ps_d, &ps->ps_f);
206 /* The tag is already in the correct format. */
207 ps->ps_offset = tag | offset | 1;
265 becc_pci_conf_read(void *v, pcitag_t tag, int offset) argument
273 if (becc_pci_conf_setup(sc, tag, offse
306 becc_pci_conf_write(void *v, pcitag_t tag, int offset, pcireg_t val) argument
[all...]
H A Di80312_pci.c152 i80312_pci_decompose_tag(void *v, pcitag_t tag, int *bp, int *dp, int *fp) argument
156 *bp = (tag >> 16) & 0xff;
158 *dp = (tag >> 11) & 0x1f;
160 *fp = (tag >> 8) & 0x7;
173 i80312_pci_conf_setup(struct i80312_softc *sc, pcitag_t tag, int offset, argument
179 i80312_pci_decompose_tag(sc, tag, &ps->ps_b, &ps->ps_d, &ps->ps_f);
213 /* The tag is already in the correct format. */
214 ps->ps_addr_val = tag | offset | 1;
221 i80312_pci_conf_read(void *v, pcitag_t tag, int offset) argument
229 if (i80312_pci_conf_setup(sc, tag, offse
258 i80312_pci_conf_write(void *v, pcitag_t tag, int offset, pcireg_t val) argument
[all...]
H A Di80321_pci.c161 i80321_pci_decompose_tag(void *v, pcitag_t tag, int *bp, int *dp, int *fp) argument
165 *bp = (tag >> 16) & 0xff;
167 *dp = (tag >> 11) & 0x1f;
169 *fp = (tag >> 8) & 0x7;
179 i80321_pci_conf_setup(struct i80321_softc *sc, pcitag_t tag, int offset, argument
184 i80321_pci_decompose_tag(sc, tag, &ps->ps_b, &ps->ps_d, &ps->ps_f);
213 /* The tag is already in the correct format. */
214 ps->ps_addr_val = tag | offset | 1;
221 i80321_pci_conf_read(void *v, pcitag_t tag, int offset) argument
230 if (i80321_pci_conf_setup(sc, tag, offse
257 i80321_pci_conf_write(void *v, pcitag_t tag, int offset, pcireg_t val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/
H A Ddst_parse.c84 const char *tag; member in struct:parse_map
140 for (i = 0; map[i].tag != NULL; i++) {
141 if (strcasecmp(s, map[i].tag) == 0 &&
153 if (map[i].tag == NULL)
156 return (map[i].tag);
193 if (priv->elements[j].tag == TAG(DST_ALG_RSAMD5, i))
227 if (priv->elements[j].tag == TAG(DST_ALG_DH, i))
242 if (priv->elements[j].tag == TAG(DST_ALG_DSA, i))
254 if (priv->elements[0].tag != TAG(DST_ALG_ECCGOST, 0))
263 if (priv->elements[0].tag !
460 int tag; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hpcsh/include/
H A Dbus_util.h13 PREFIX##_read_##BYTES(void *tag, bus_space_handle_t bsh, \
25 PREFIX##_read_multi_##BYTES(void *tag, bus_space_handle_t bsh, \
40 PREFIX##_read_region_##BYTES(void *tag, bus_space_handle_t bsh, \
55 PREFIX##_write_##BYTES(void *tag, bus_space_handle_t bsh, \
67 PREFIX##_write_multi_##BYTES(void *tag, bus_space_handle_t bsh, \
83 PREFIX##_write_region_##BYTES(void *tag, bus_space_handle_t bsh, \
99 PREFIX##_set_multi_##BYTES(void *tag, bus_space_handle_t bsh, \

Completed in 460 milliseconds

1234567891011>>