Searched refs:tag (Results 276 - 300 of 1112) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_pci.c97 &dmah->tag);
103 ret = bus_dmamem_alloc(dmah->tag, &dmah->vaddr,
106 bus_dma_tag_destroy(dmah->tag);
111 ret = bus_dmamap_load(dmah->tag, dmah->map, dmah->vaddr, size,
114 bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
115 bus_dma_tag_destroy(dmah->tag);
135 bus_dmamap_unload(dmah->tag, dmah->map);
136 bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
137 bus_dma_tag_destroy(dmah->tag);
/freebsd-11-stable/contrib/dtc/libfdt/
H A Dfdt_sw.c181 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
238 prop->tag = cpu_to_fdt32(FDT_PROP);
250 uint32_t tag; local
269 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
270 if (tag == FDT_PROP) {
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dgen_length.c48 length_tag(unsigned int tag) argument
52 if(tag <= 30)
54 while(tag) {
55 tag /= 128;
253 (unsigned long)length_tag(t->tag.tagvalue));
/freebsd-11-stable/tools/tools/net80211/wlanstats/
H A Dmain.c53 const char *tag; member in struct:__anon13716
71 getfmt(const char *tag) argument
75 if (strcasecmp(tags[i].tag, tag) == 0)
77 return tag;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzap_impl.h203 krw_t lti, boolean_t fatreader, boolean_t adding, void *tag, zap_t **zapp);
204 void zap_unlockdir(zap_t *zap, void *tag);
221 const void *val, void *tag, dmu_tx_t *tx);
224 void *tag, dmu_tx_t *tx);
234 const void *val, uint32_t cd, void *tag, dmu_tx_t *tx);
/freebsd-11-stable/sys/contrib/libfdt/
H A Dfdt_sw.c181 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
238 prop->tag = cpu_to_fdt32(FDT_PROP);
262 uint32_t tag; local
281 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
282 if (tag == FDT_PROP) {
/freebsd-11-stable/tests/sys/opencrypto/
H A Dcryptotest.py97 tag = data['Tag'].decode('hex')
113 rtag = rtag[:len(tag)]
117 self.assertEqual(rtag, tag, `data`)
119 if len(tag) != 16:
121 args = (ct, iv, aad, tag)
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_itt.h166 #define INSERT_SSC_MARK(tag) __SSC_MARK(tag)
168 #define INSERT_SSC_MARK(tag) \
169 __asm__ __volatile__("movl %0, %%ebx; .byte 0x64, 0x67, 0x90 " ::"i"(tag) \
173 #define INSERT_SSC_MARK(tag) ((void)0)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common.cpp151 // chunks. Marks those chunks with |tag| and adds them to |frontier|.
153 // (|tag| = kReachable) and finding indirectly leaked chunks
154 // (|tag| = kIndirectlyLeaked). In the second case, there's no flood fill,
158 const char *region_type, ChunkTag tag) {
159 CHECK(tag == kReachable || tag == kIndirectlyLeaked);
170 // Pointers to self don't count. This matters when tag == kIndirectlyLeaked.
173 if (m.tag() == kReachable || m.tag() == kIgnored) continue;
184 m.set_tag(tag);
156 ScanRangeForPointers(uptr begin, uptr end, Frontier *frontier, const char *region_type, ChunkTag tag) argument
344 FloodFillTag(Frontier *frontier, ChunkTag tag) argument
666 AddLeakedChunk(uptr chunk, u32 stack_trace_id, uptr leaked_size, ChunkTag tag) argument
[all...]
H A Dlsan_common.h102 ChunkTag tag);
138 const char *region_type, ChunkTag tag);
246 ChunkTag tag() const;
H A Dlsan_allocator.cpp64 m->tag = DisabledInThisThread() ? kIgnored : kDirectlyLeaked;
278 ChunkTag LsanMetadata::tag() const { function in class:__lsan::LsanMetadata
279 return reinterpret_cast<ChunkMetadata *>(metadata_)->tag;
283 reinterpret_cast<ChunkMetadata *>(metadata_)->tag = value;
304 if (m->tag == kIgnored)
306 m->tag = kIgnored;
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_abbrev.c33 _dwarf_abbrev_add(Dwarf_CU cu, uint64_t entry, uint64_t tag, uint8_t children, argument
48 ab->ab_tag = tag;
109 uint64_t tag; local
132 tag = _dwarf_read_uleb128(ds->ds_data, offset);
134 if ((ret = _dwarf_abbrev_add(cu, entry, tag, children, aboff,
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A DMakefile.in167 libhx509_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
194 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
198 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
989 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhx509_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhx509_la-ca.lo -MD -MP -MF $(DEPDIR)/libhx509_la-ca.Tpo -c -o libhx509_la-ca.lo `test -f 'ca.c' || echo '$(srcdir)/'`ca.c
993 @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhx509_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhx509_la-ca.lo `test -f 'ca.c' || echo '$(srcdir)/'`ca.c
996 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhx509_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhx509_la-cert.lo -MD -MP -MF $(DEPDIR)/libhx509_la-cert.Tpo -c -o libhx509_la-cert.lo `test -f 'cert.c' || echo '$(srcdir)/'`cert.c
1000 @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhx509_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhx509_la-cert.lo `test -f 'cert.c' || echo '$(srcdir)/'`cert.c
1003 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhx509_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhx509_la-cms.lo -MD -MP -MF $(DEPDIR)/libhx509_la-cms.Tpo -c -o libhx509_la-cms.lo `test -f 'cms.c' || echo '$(srcdir)/'`cms.c
1007 @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhx509_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhx509_la-cms.lo `test -f 'cms.c' || echo '$(srcdir)/'`cms.c
1010 @am__fastdepCC_TRUE@ $(LIBTOOL) --tag
[all...]
/freebsd-11-stable/sys/dev/sfxge/common/
H A Def10_nvram.c47 uint32_t *end; /* End tag position */
83 uint32_t dword, tag; local
86 tag = __LE_TO_CPU_32(dword);
88 return (tag);
127 * TLV item DWORD length is tag + length + value (rounded up to DWORD)
155 /* No more tags after END tag */
201 __in uint32_t tag)
207 if (tlv_tag(cursor) == tag)
232 /* Check current item has space for tag and length */
239 /* Check we have value data for current item and another tag */
199 tlv_find( __inout tlv_cursor_t *cursor, __in uint32_t tag) argument
380 tlv_write( __in tlv_cursor_t *cursor, __in uint32_t tag, __in_bcount(size) uint8_t *data, __in size_t size) argument
405 tlv_insert( __inout tlv_cursor_t *cursor, __in uint32_t tag, __in_bcount(size) uint8_t *data, __in size_t size) argument
503 tlv_modify( __inout tlv_cursor_t *cursor, __in uint32_t tag, __in_bcount(size) uint8_t *data, __in size_t size) argument
964 uint32_t tag; local
1276 ef10_nvram_buf_read_tlv( __in efx_nic_t *enp, __in_bcount(max_seg_size) caddr_t seg_data, __in size_t max_seg_size, __in uint32_t tag, __deref_out_bcount_opt(*sizep) caddr_t *datap, __out size_t *sizep) argument
1341 ef10_nvram_partn_read_tlv( __in efx_nic_t *enp, __in uint32_t partn, __in uint32_t tag, __deref_out_bcount_opt(*seg_sizep) caddr_t *seg_datap, __out size_t *seg_sizep) argument
1650 ef10_nvram_partn_write_tlv( __in efx_nic_t *enp, __in uint32_t partn, __in uint32_t tag, __in_bcount(size) caddr_t data, __in size_t size) argument
1666 ef10_nvram_segment_write_tlv( __in efx_nic_t *enp, __in uint32_t partn, __in uint32_t tag, __in_bcount(size) caddr_t data, __in size_t size, __inout caddr_t *seg_datap, __inout size_t *partn_offsetp, __inout size_t *src_remain_lenp, __inout size_t *dest_remain_lenp, __in boolean_t write) argument
1758 ef10_nvram_partn_write_segment_tlv( __in efx_nic_t *enp, __in uint32_t partn, __in uint32_t tag, __in_bcount(size) caddr_t data, __in size_t size, __in boolean_t all_segments) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dlibgcov.c237 gcov_unsigned_t tag, length; local
320 tag = gcov_read_unsigned ();
321 if (tag)
324 if (tag != GCOV_DATA_MAGIC)
344 tag = gcov_read_unsigned ();
348 if (tag != GCOV_TAG_FUNCTION
371 tag = gcov_read_unsigned ();
373 if (tag != GCOV_TAG_FOR_COUNTER (t_ix)
391 tag = gcov_read_unsigned ();
392 if (!tag)
[all...]
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dupnp_xml.c39 * with an opening tag <label> and ending with a closing tag </label> with
40 * matching label. (There is also a self-closing tag <label/> which is supposed
62 * xml_next_tag - Advance to next tag
64 * @out: OUT: start of tag just after '<'
65 * @out_tagname: OUT: start of name of tag, skipping namespace
66 * @end: OUT: one after tag
69 * A tag has form:
72 * makes the tag an ending tag), the
161 xml_add_tagged_data(struct wpabuf *buf, const char *tag, const char *data) argument
194 const char *tag, *tagname, *end; local
[all...]
/freebsd-11-stable/lib/libc/posix1e/
H A Dacl_from_text_nfs4.c49 * Parse the tag field of ACL entry passed as "str". If qualifier
74 warnx("malformed ACL: invalid \"tag\" field");
90 acl_tag_t tag; local
102 error = acl_get_tag_type(entry, &tag);
106 error = _acl_name_to_id(tag, str, &id);
/freebsd-11-stable/tools/kerneldoc/subsys/
H A DMakefile51 ${target}: mfiles ${.OBJDIR}/${target}/${target}.tag
53 ${.OBJDIR}/${target}/${target}.tag:
67 pdf-${target}: ${.OBJDIR}/${target}/${target}.tag
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-medsa.c91 u_char tag = TAG(medsa); local
94 tok2str(tag_values, "Unknown (%u)", tag)));
96 switch (tag) {
/freebsd-11-stable/contrib/mdocml/
H A Dman_html.c142 struct tag *t;
191 struct tag *t;
274 t = h->tag;
278 t = h->tag;
307 t = h->tag;
344 struct tag *pre;
347 for (pre = h->tag; pre != NULL; pre = pre->next)
348 if (pre->tag == TAG_PRE)
373 struct tag *t, *tt;
401 struct tag *
[all...]
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Daes-gcm.c256 const u8 *aad, size_t aad_len, u8 *crypt, u8 *tag)
275 aes_gctr(aes, J0, S, sizeof(S), tag);
290 const u8 *aad, size_t aad_len, const u8 *tag, u8 *plain)
313 if (os_memcmp_const(tag, T, 16) != 0) {
323 const u8 *aad, size_t aad_len, u8 *tag)
326 tag);
254 aes_gcm_ae(const u8 *key, size_t key_len, const u8 *iv, size_t iv_len, const u8 *plain, size_t plain_len, const u8 *aad, size_t aad_len, u8 *crypt, u8 *tag) argument
288 aes_gcm_ad(const u8 *key, size_t key_len, const u8 *iv, size_t iv_len, const u8 *crypt, size_t crypt_len, const u8 *aad, size_t aad_len, const u8 *tag, u8 *plain) argument
322 aes_gmac(const u8 *key, size_t key_len, const u8 *iv, size_t iv_len, const u8 *aad, size_t aad_len, u8 *tag) argument
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Demit1.c75 * enum tag e T tag_or_typename
76 * struct tag s T tag_or_typename
77 * union tag u T tag_or_typename
79 * tag_or_typename 0 no tag or type name
80 * 1 n tag Tag
181 * write the name of a tag or typename
183 * if the tag is named, the name of the
184 * tag is written, otherwise, if a typename exists which
185 * refers to this tag, this typename is written
188 outtt(sym_t *tag, sym_ argument
[all...]
/freebsd-11-stable/contrib/wpa/src/tls/
H A Drsa.c40 hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_INTEGER) {
42 "tag 0x%x", hdr.class, hdr.tag);
89 hdr.tag != ASN1_TAG_SEQUENCE) {
91 "(public key) - found class %d tag 0x%x",
92 hdr.class, hdr.tag);
196 hdr.tag != ASN1_TAG_SEQUENCE) {
198 "(public key) - found class %d tag 0x%x",
199 hdr.class, hdr.tag);
/freebsd-11-stable/sys/dev/netmap/
H A Dif_ixl_netmap.h180 bus_dmamap_sync(txr->dma.tag, txr->dma.map,
195 * even when (as in this case) the tag is 0, so do only
233 netmap_reload_map(na, txr->dma.tag, txbuf->map, addr);
247 bus_dmamap_sync(txr->dma.tag, txbuf->map,
256 bus_dmamap_sync(txr->dma.tag, txr->dma.map,
314 bus_dmamap_sync(rxr->dma.tag, rxr->dma.map,
402 bus_dmamap_sync(rxr->dma.tag, rxr->dma.map,
/freebsd-11-stable/sys/net/
H A Dethernet.h91 #define EVL_VLANOFTAG(tag) ((tag) & EVL_VLID_MASK)
92 #define EVL_PRIOFTAG(tag) (((tag) >> 13) & 7)
93 #define EVL_CFIOFTAG(tag) (((tag) >> 12) & 1)
390 * offload for VLAN tag processing. It will check the mbuf to see if it has

Completed in 323 milliseconds

<<11121314151617181920>>