Searched refs:tag (Results 76 - 100 of 808) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/dev/drm/
H A Dati_pcigart.c74 ret = bus_dma_tag_create(NULL, PAGE_SIZE, 0, /* tag, align, boundary */
80 &dmah->tag);
90 ret = bus_dmamem_alloc(dmah->tag, &dmah->vaddr, flags, &dmah->map);
92 bus_dma_tag_destroy(dmah->tag);
98 ret = bus_dmamap_load(dmah->tag, dmah->map, dmah->vaddr,
102 bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
103 bus_dma_tag_destroy(dmah->tag);
119 bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
120 bus_dma_tag_destroy(dmah->tag);
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_error.h40 extern void xfs_error_report(char *tag, int level, struct xfs_mount *mp,
42 extern void xfs_corruption_error(char *tag, int level, struct xfs_mount *mp,
83 * but each tag should have its own unique number
143 #define XFS_TEST_ERROR(expr, mp, tag, rf) \
145 xfs_error_test((tag), (mp)->m_fixedfsid, #expr, __LINE__, __FILE__, \
148 #define XFS_TEST_ERROR(expr, mp, tag, rf) \
150 xfs_error_test((tag), (mp)->m_fixedfsid, "expr", __LINE__, __FILE__, \
159 #define XFS_TEST_ERROR(expr, mp, tag, rf) (expr)
160 #define xfs_errortag_add(tag, mp) (ENOSYS)
/freebsd-9.3-release/sys/sparc64/include/
H A Dbus_private.h39 int sparc64_bus_mem_map(bus_space_tag_t tag, bus_addr_t addr, bus_size_t size,
41 int sparc64_bus_mem_unmap(bus_space_tag_t tag, bus_space_handle_t handle,
/freebsd-9.3-release/contrib/gcc/
H A Dvarray.h68 tag ("VARRAY_DATA_C"))) vdt_c[1];
70 tag ("VARRAY_DATA_UC"))) vdt_uc[1];
72 tag ("VARRAY_DATA_S"))) vdt_s[1];
74 tag ("VARRAY_DATA_US"))) vdt_us[1];
76 tag ("VARRAY_DATA_I"))) vdt_i[1];
78 tag ("VARRAY_DATA_U"))) vdt_u[1];
80 tag ("VARRAY_DATA_L"))) vdt_l[1];
82 tag ("VARRAY_DATA_UL"))) vdt_ul[1];
84 tag ("VARRAY_DATA_HINT"))) vdt_hint[1];
86 tag ("VARRAY_DATA_UHIN
[all...]
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-l2c.c353 uint64_t tag = addr >> shift; local
366 if (l2c_tadx_tag.s.valid && l2c_tadx_tag.s.tag == tag)
512 int assoc; cvmx_l2c_tag_t tag; local
524 tag = cvmx_l2c_get_tag(assoc, index);
526 if (tag.s.V && (tag.s.addr == tag_addr))
529 return tag.s.L;
536 cvmx_l2c_tag_t tag; local
541 /* Compute portion of address that is stored in tag */
693 cvmx_l2c_tag_t tag; local
[all...]
/freebsd-9.3-release/contrib/dialog/samples/
H A Dinputmenu43 tag="${value%:*}"
46 case "$tag" in
/freebsd-9.3-release/sys/netinet/
H A Dip_options.h45 struct m_tag tag; /* m_tag */ member in struct:ipopt_tag
/freebsd-9.3-release/sys/sparc64/sparc64/
H A Dcounter.c72 sparc64_counter_init(const char *name, bus_space_tag_t tag, argument
84 bus_space_write_8(tag, handle, offset + CTR_CT0 + CTR_LIMIT,
86 bus_space_write_8(tag, handle, offset + CTR_CT1 + CTR_LIMIT,
91 sc->sc_tag = tag;
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dasn1_lib.c100 int tag, xclass, inf; local
108 if (i == V_ASN1_PRIMITIVE_TAG) { /* high-tag */
123 tag = (int)l;
127 tag = i;
132 *ptag = tag;
201 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, argument
209 if (tag < 31)
210 *(p++) = i | (tag & V_ASN1_PRIMITIVE_TAG);
213 for (i = 0, ttag = tag; ttag > 0; i++)
217 p[i] = tag
261 ASN1_object_size(int constructed, int length, int tag) argument
[all...]
/freebsd-9.3-release/contrib/cvs/src/
H A Dadd.c40 List * entries, const char *tag));
204 char *tag; local
251 ParseTag (&tag, &date, &nonbranch);
256 Create_Admin (p, argv[j], rcsdir, tag, date,
266 if (tag)
267 free (tag);
353 sticky branch tag, and there is already an RCS file which
354 does not have that tag, then the head revision is
409 "cannot add file on non-branch tag %s",
410 vers->tag);
746 char *tag, *date; local
[all...]
H A Dcreate_adm.c30 Create_Admin (dir, update_dir, repository, tag, date, nonbranch, warn,
35 const char *tag;
50 dir, update_dir, repository, tag ? tag : "",
169 WriteTag (dir, tag, date, nonbranch, update_dir, repository);
H A Drcs.h207 int RCS_exist_tag PROTO((RCSNode *rcs, char *tag));
208 char *RCS_tag2rev PROTO((RCSNode *rcs, char *tag));
209 char *RCS_getversion PROTO((RCSNode * rcs, const char *tag, const char *date,
213 int RCS_nodeisbranch PROTO((RCSNode *rcs, const char *tag));
214 char *RCS_whatbranch PROTO((RCSNode *rcs, const char *tag));
220 void RCS_check_tag PROTO((const char *tag));
224 char *RCS_getbranch PROTO((RCSNode * rcs, const char *tag,
/freebsd-9.3-release/sys/dev/usb/
H A Dusb_busdma.c345 * usb_dma_tag_create - allocate a DMA tag
347 * NOTE: If the "align" parameter has a value of 1 the DMA-tag will
354 bus_dma_tag_t tag; local
357 ( /* parent */ udt->tag_parent->tag,
372 &tag)) {
373 tag = NULL;
375 udt->tag = tag;
379 * usb_dma_tag_free - free a DMA tag
384 bus_dma_tag_destroy(udt->tag);
[all...]
/freebsd-9.3-release/contrib/libstdc++/libsupc++/
H A DMakefile.am104 LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared --mode=compile $(CC) \
123 # 2) In general, libtool expects an argument such as `--tag=CXX' when
132 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
136 # We have to put --tag disable-shared after --tag CXX lest things
138 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared \
150 CXXLINK = $(LIBTOOL) --tag CXX --tag disabl
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dumac.h68 int umac_final(struct umac_ctx *ctx, u_char tag[], const u_char nonce[8]);
69 /* Incorporate any pending data and the ctr value, and return tag.
78 long len, u_char tag[],
122 int umac128_final(struct umac_ctx *ctx, u_char tag[], const u_char nonce[8]);
/freebsd-9.3-release/lib/libc/posix1e/
H A Dacl_support.h55 int _posix1e_acl_id_to_name(acl_tag_t tag, uid_t id, ssize_t buf_len,
60 int _posix1e_acl_add_entry(acl_t acl, acl_tag_t tag, uid_t id,
64 int _acl_name_to_id(acl_tag_t tag, char *name, uid_t *id);
/freebsd-9.3-release/sys/dev/isp/
H A Disp_target.h60 void * nt_hba; /* HBA tag */
66 uint64_t nt_tagval; /* tag value */
79 #define MATCH_TMD(tmd, iid, lun, tag) \
84 (tag == TAG_ANY || tag == tmd->cd_tagval) \
/freebsd-9.3-release/sys/dev/uart/
H A Duart_subr.c121 int tag; local
124 tag = UART_TAG_BR;
128 tag = UART_TAG_CH;
132 tag = UART_TAG_DB;
136 tag = UART_TAG_DT;
140 tag = UART_TAG_IO;
144 tag = UART_TAG_MM;
148 tag = UART_TAG_PA;
152 tag = UART_TAG_RS;
156 tag
[all...]
/freebsd-9.3-release/usr.bin/logger/
H A Dlogger.c89 char *tag, *host, buf[1024]; local
92 tag = NULL;
131 case 't': /* tag */
132 tag = optarg;
141 if (tag == NULL)
142 tag = getlogin();
145 openlog(tag, logflags, 0);
156 logmessage(pri, tag, host, svcname, buf);
160 logmessage(pri, tag, host, svcname, *argv++);
169 logmessage(pri, tag, hos
180 logmessage(int pri, const char *tag, const char *host, const char *svcname, const char *buf) argument
[all...]
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-bootp.c371 register u_int16_t tag; local
386 /* Loop while we there is a tag left in the buffer */
388 tag = *bp++;
389 if (tag == TAG_PAD && vflag < 3)
391 if (tag == TAG_END && vflag < 3)
393 if (tag == TAG_EXTENDED_OPTION) {
395 tag = EXTRACT_16BITS(bp + 1);
398 * If not, we need to offset tag after this step.
400 cp = tok2str(xtag2str, "?xT%u", tag);
402 cp = tok2str(tag2str, "?T%u", tag);
[all...]
/freebsd-9.3-release/contrib/texinfo/makeinfo/
H A Dhtml.c406 /* Save current tag. */
408 push_tag (char *tag, char *attribs)
412 newstack->tag = tag;
418 /* Get last tag. */
426 line_error (_("[unexpected] no html tag to pop"));
436 /* Check if tag is an empty or a whitespace only element.
439 rollback_empty_tag (char *tag)
442 int taglen = strlen (tag);
451 /* Find the end of the previous tag
404 push_tag(char *tag, char *attribs) argument
435 rollback_empty_tag(char *tag) argument
494 insert_html_tag_with_attribute(int start_or_end, char *tag, char *format, ...) argument
573 insert_html_tag(int start_or_end, char *tag) argument
[all...]
/freebsd-9.3-release/sys/mips/nlm/
H A Dbus_space_rmi.c178 rmi_bus_space_barrier(void *tag __unused, bus_space_handle_t bsh __unused,
357 /* generic bus_space tag */
397 * described by tag/handle/offset.
401 rmi_bus_space_read_1(void *tag, bus_space_handle_t handle, argument
408 rmi_bus_space_read_2(void *tag, bus_space_handle_t handle, argument
415 rmi_bus_space_read_4(void *tag, bus_space_handle_t handle, argument
424 * described by tag/handle/offset and copy into buffer provided.
427 rmi_bus_space_read_multi_1(void *tag, bus_space_handle_t handle, argument
434 rmi_bus_space_read_multi_2(void *tag, bus_space_handle_t handle, argument
441 rmi_bus_space_read_multi_4(void *tag, bus_space_handle_ argument
453 rmi_bus_space_write_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t value) argument
460 rmi_bus_space_write_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t value) argument
467 rmi_bus_space_write_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t value) argument
481 rmi_bus_space_write_multi_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t *addr, size_t count) argument
488 rmi_bus_space_write_multi_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t *addr, size_t count) argument
495 rmi_bus_space_write_multi_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t *addr, size_t count) argument
570 rmi_bus_space_read_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t *addr, size_t count) argument
577 rmi_bus_space_read_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t *addr, size_t count) argument
584 rmi_bus_space_read_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t *addr, size_t count) argument
647 rmi_bus_space_write_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t *addr, size_t count) argument
654 rmi_bus_space_write_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t *addr, size_t count) argument
661 rmi_bus_space_write_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t *addr, size_t count) argument
[all...]
/freebsd-9.3-release/sys/mips/rmi/
H A Dbus_space_rmi.c176 rmi_bus_space_barrier(void *tag __unused, bus_space_handle_t bsh __unused,
355 /* generic bus_space tag */
395 * described by tag/handle/offset.
399 rmi_bus_space_read_1(void *tag, bus_space_handle_t handle, argument
406 rmi_bus_space_read_2(void *tag, bus_space_handle_t handle, argument
413 rmi_bus_space_read_4(void *tag, bus_space_handle_t handle, argument
422 * described by tag/handle/offset and copy into buffer provided.
425 rmi_bus_space_read_multi_1(void *tag, bus_space_handle_t handle, argument
432 rmi_bus_space_read_multi_2(void *tag, bus_space_handle_t handle, argument
439 rmi_bus_space_read_multi_4(void *tag, bus_space_handle_ argument
451 rmi_bus_space_write_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t value) argument
458 rmi_bus_space_write_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t value) argument
465 rmi_bus_space_write_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t value) argument
479 rmi_bus_space_write_multi_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t * addr, size_t count) argument
486 rmi_bus_space_write_multi_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t * addr, size_t count) argument
493 rmi_bus_space_write_multi_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t * addr, size_t count) argument
568 rmi_bus_space_read_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t * addr, size_t count) argument
575 rmi_bus_space_read_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t * addr, size_t count) argument
582 rmi_bus_space_read_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t * addr, size_t count) argument
645 rmi_bus_space_write_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t * addr, size_t count) argument
652 rmi_bus_space_write_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t * addr, size_t count) argument
659 rmi_bus_space_write_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t * addr, size_t count) argument
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Ddst_parse.c82 const char *tag; member in struct:parse_map
138 for (i = 0; map[i].tag != NULL; i++) {
139 if (strcasecmp(s, map[i].tag) == 0 &&
151 if (map[i].tag == NULL)
154 return (map[i].tag);
195 if (priv->elements[j].tag == TAG(DST_ALG_RSAMD5, i))
229 if (priv->elements[j].tag == TAG(DST_ALG_DH, i))
249 if (priv->elements[j].tag == TAG(DST_ALG_DSA, i))
265 if (priv->elements[0].tag != TAG(DST_ALG_ECCGOST, 0))
278 if (priv->elements[0].tag !
476 int tag; local
[all...]
/freebsd-9.3-release/contrib/dtc/
H A Dftdump.c81 uint32_t tag; local
122 while ((tag = fdt32_to_cpu(GET_CELL(p))) != FDT_END) {
124 /* printf("tag: 0x%08x (%d)\n", tag, p - p_struct); */
126 if (tag == FDT_BEGIN_NODE) {
139 if (tag == FDT_END_NODE) {
146 if (tag == FDT_NOP) {
151 if (tag != FDT_PROP) {
152 fprintf(stderr, "%*s ** Unknown tag 0x%08x\n", depth * shift, "", tag);
[all...]

Completed in 173 milliseconds

1234567891011>>