Searched refs:tag (Results 326 - 350 of 953) sorted by relevance

<<11121314151617181920>>

/freebsd-10.3-release/contrib/binutils/binutils/
H A Dprdbg.c621 pr_enum_type (void *p, const char *tag, const char **names,
630 if (tag != NULL)
632 if (! append_type (info, tag)
1014 pr_start_struct_type (void *p, const char *tag, unsigned int id,
1023 if (tag != NULL)
1025 if (! append_type (info, tag))
1039 if (size != 0 || tag != NULL)
1052 if (tag != NULL)
1188 pr_start_class_type (void *p, const char *tag, unsigned int id,
1206 if (tag !
616 pr_enum_type(void *p, const char *tag, const char **names, bfd_signed_vma *values) argument
1009 pr_start_struct_type(void *p, const char *tag, unsigned int id, bfd_boolean structp, unsigned int size) argument
1183 pr_start_class_type(void *p, const char *tag, unsigned int id, bfd_boolean structp, unsigned int size, bfd_boolean vptr, bfd_boolean ownvptr) argument
1572 const char *t, *tag; local
1960 tg_enum_type(void *p, const char *tag, const char **names, bfd_signed_vma *values) argument
1994 tg_start_struct_type(void *p, const char *tag, unsigned int id, bfd_boolean structp, unsigned int size ATTRIBUTE_UNUSED) argument
2082 tg_start_class_type(void *p, const char *tag, unsigned int id, bfd_boolean structp, unsigned int size, bfd_boolean vptr, bfd_boolean ownvptr) argument
2392 const char *t, *tag; local
[all...]
/freebsd-10.3-release/sbin/sunlabel/
H A Dsunlabel.c122 static const char *flagname(unsigned int tag);
123 static const char *tagname(unsigned int tag);
127 const char *tag);
279 warnx("partition c must have tag \"backup\"");
296 "tag \"backup\"");
541 char tag[32]; local
667 &part, size, offset, tag, flag);
682 if (parse_tag(&sl1, part - 'a', tag))
837 "# size offset tag flag\n"
896 * Return VTOC tag an
899 tagname(unsigned int tag) argument
935 parse_tag(struct sun_disklabel *sl, int part, const char *tag) argument
[all...]
/freebsd-10.3-release/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h201 typedef typename std::iterator_traits<IteratorT>::iterator_category tag; typedef
202 return join_impl(Begin, End, Separator, tag());
/freebsd-10.3-release/contrib/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h62 unsigned Tag; // unique tag for current contents.
80 /// getTag - Return an opaque tag representing the current state of the union.
83 /// changedSince - Return true if the union change since getTag returned tag.
84 bool changedSince(unsigned tag) const { return tag != Tag; }
/freebsd-10.3-release/contrib/llvm/include/llvm/IR/
H A DUse.h84 Use(PrevPtrTag tag) : Val(0) { argument
85 Prev.setInt(tag);
/freebsd-10.3-release/contrib/ntp/lib/isc/include/isc/
H A Dlog.h758 isc_log_settag(isc_logconfig_t *lcfg, const char *tag);
766 *\li If this function has not set the tag to a non-NULL, non-empty value,
769 * the tag in order to get it logged. It is not implicitly derived from
772 *\li Setting the tag to NULL or the empty string will also cause the
773 * #ISC_LOG_PRINTTAG channel flag to not print anything. If tag equals the
780 * XXXDCL when creating a new isc_logconfig_t, it might be nice if the tag
797 * will observe that (currently) a tag of length greater than zero
805 isc_log_opensyslog(const char *tag, int options, int facility);
816 * tag: The string to use in the position of the program
818 * will use basename(argv[0]) if tag i
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.cpp26 DWARFAbbreviationDeclaration::DWARFAbbreviationDeclaration(dw_tag_t tag, uint8_t has_children) : argument
28 m_tag (tag),
H A DDWARFAbbreviationDeclaration.h25 DWARFAbbreviationDeclaration(dw_tag_t tag, uint8_t has_children);
H A DDWARFDefines.h32 DW_TAG_CategoryEnum get_tag_category (uint16_t tag);
/freebsd-10.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-srio.h274 tag order, atomic tag order). */
275 uint64_t tag : 32; /**< Created by the hardware from a CSR member in struct:__anon7597::__anon7600::__anon7601
283 the work (no constraints, tag order, atomic
284 tag order). */
286 uint64_t tag : 32;
/freebsd-10.3-release/sys/dev/aic7xxx/
H A Dahc_pci.c122 printf("ahc_pci_attach: Could not allocate DMA tag "
174 ahc->tag = rman_get_bustag(regs);
201 ahc->tag = rman_get_bustag(regs);
/freebsd-10.3-release/contrib/dialog/
H A Dtrace.c37 dlg_trace_time(const char *tag) argument
40 fprintf(myFP, "%s %s", tag, ctime(&now));
/freebsd-10.3-release/sys/netpfil/ipfw/
H A Dip_dn_io.c228 * Packets processed by dummynet have an mbuf tag associated with
245 * Return the mbuf tag holding the dummynet state (it should
255 ("packet on dummynet queue w/o dummynet tag!"));
640 struct m_tag *tag; local
645 tag = m_tag_first(m);
646 if (tag == NULL) { /* should not happen */
650 /* extract the dummynet info, rename the tag
655 tag->m_tag_cookie = MTAG_IPFW_RULE;
656 tag->m_tag_id = 0;
763 /* we could actually tag outsid
828 struct m_tag *tag = m_tag_first(m); local
[all...]
/freebsd-10.3-release/usr.sbin/bsdconfig/timezone/
H A Dtimezone319 tag=1
356 tag=$( eval $DIALOG \
368 f_dialog_data_sanitize tag
369 defaultctry="$tag"
378 f_continent $cont tlc_$tag tlc
/freebsd-10.3-release/usr.sbin/mfiutil/
H A Dmfiutil.c179 display_firmware(struct mfi_info_component *comp, const char *tag) argument
184 fw_time_width, comp->build_time, tag);
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.h171 void HandleLastUse(unsigned Reg, unsigned KillIdx, const char *tag,
/freebsd-10.3-release/contrib/pf/libevent/
H A Devent.h302 void evtag_marshal(struct evbuffer *evbuf, u_int8_t tag, const void *data,
307 void evtag_marshal_int(struct evbuffer *evbuf, u_int8_t tag,
310 void evtag_marshal_string(struct evbuffer *buf, u_int8_t tag,
313 void evtag_marshal_timeval(struct evbuffer *evbuf, u_int8_t tag,
/freebsd-10.3-release/contrib/sendmail/include/sm/
H A Dheap.h48 # define sm_heap_checkptr_tagged(ptr, tag, num) ((void)0)
/freebsd-10.3-release/sys/dev/nmdm/
H A Dnmdm.c424 static eventhandler_tag tag; local
428 tag = EVENTHANDLER_REGISTER(dev_clone, nmdm_clone, 0, 1000);
429 if (tag == NULL)
439 EVENTHANDLER_DEREGISTER(dev_clone, tag);
/freebsd-10.3-release/sys/cam/ctl/
H A Dctl_error.h65 void ctl_set_overlapped_tag(struct ctl_scsiio *ctsio, uint8_t tag);
/freebsd-10.3-release/contrib/gcc/
H A Dgcov.c705 unsigned tag;
733 while ((tag = gcov_read_unsigned ()))
738 if (tag == GCOV_TAG_FUNCTION)
760 current_tag = tag;
777 else if (fn && tag == GCOV_TAG_BLOCKS)
792 else if (fn && tag == GCOV_TAG_ARCS)
850 else if (fn && tag == GCOV_TAG_LINES)
889 else if (current_tag && !GCOV_TAG_IS_SUBTAG (current_tag, tag))
966 unsigned tag;
995 tag
704 unsigned tag; local
965 unsigned tag; local
[all...]
/freebsd-10.3-release/contrib/byacc/
H A Dsymtab.c45 bp->tag = 0;
/freebsd-10.3-release/sys/dev/siba/
H A Dsiba_pcib.c259 bus_space_tag_t tag;
264 tag = 0;
273 tag = &sc->sc_pci_memt;
285 rman_set_bustag(rv, tag);
365 * The configuration tag on the broadcom is weird.
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspa_misc.c425 spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw) argument
435 spa_config_exit(spa, locks ^ (1 << i), tag);
442 spa_config_exit(spa, locks ^ (1 << i), tag);
447 (void) refcount_add(&scl->scl_count, tag);
454 spa_config_enter(spa_t *spa, int locks, void *tag, krw_t rw) argument
480 (void) refcount_add(&scl->scl_count, tag);
487 spa_config_exit(spa_t *spa, int locks, void *tag) argument
495 if (refcount_remove(&scl->scl_count, tag) == 0) {
824 spa_open_ref(spa_t *spa, void *tag) argument
828 (void) refcount_add(&spa->spa_refcount, tag);
836 spa_close(spa_t *spa, void *tag) argument
852 spa_async_close(spa_t *spa, void *tag) argument
1140 spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag) argument
[all...]
/freebsd-10.3-release/usr.bin/csup/
H A Drcsparse.c118 char *branch, *comment, *expand, *head, *id, *revnum, *tag, *tmp; local
158 tag = duptext(sp, NULL);
162 rcsfile_importtag(rf, tag, revnum);
163 free(tag);

Completed in 398 milliseconds

<<11121314151617181920>>