Searched refs:tag (Results 51 - 75 of 1163) sorted by relevance

1234567891011>>

/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.c62 char *tag = "dtrace test"; local
79 args.tag.utf8string_len = strlen(tag);
80 args.tag.utf8string_val = tag;
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DMemoryTagMap.cpp16 assert(m_manager && "valid tag manager required to construct a MemoryTagMap");
23 for (auto tag : tags) {
24 m_addr_to_tag[addr] = tag;
45 std::optional<lldb::addr_t> tag = GetTag(addr); local
46 tags.push_back(tag);
47 if (tag)
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dciphercommon_gcm_hw.c39 int ossl_gcm_cipher_final(PROV_GCM_CTX *ctx, unsigned char *tag) argument
42 CRYPTO_gcm128_tag(&ctx->gcm, tag, GCM_TAG_MAX_SIZE);
45 if (CRYPTO_gcm128_finish(&ctx->gcm, tag, ctx->taglen) != 0)
53 unsigned char *out, unsigned char *tag, size_t tag_len)
63 if (!ctx->hw->cipherfinal(ctx, tag))
51 ossl_gcm_one_shot(PROV_GCM_CTX *ctx, unsigned char *aad, size_t aad_len, const unsigned char *in, size_t in_len, unsigned char *out, unsigned char *tag, size_t tag_len) argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.h31 Entry(dw_tag_t t, const char *n) : tag(t), name(n) {}
42 explicit operator bool() const { return tag != 0; }
44 dw_tag_t tag = llvm::dwarf::DW_TAG_null; member in struct:lldb_private::plugin::dwarf::DWARFDeclContext::Entry
50 void AppendDeclContext(dw_tag_t tag, const char *name) { argument
51 m_entries.push_back(Entry(tag, name));
/freebsd-current/sys/dev/ice/
H A Dice_osdep.c195 return bus_space_read_4(sc->bar0.tag, sc->bar0.handle, reg);
215 data = bus_space_read_8(sc->bar0.tag, sc->bar0.handle, reg);
221 data = bus_space_read_4(sc->bar0.tag, sc->bar0.handle, reg);
222 data |= ((uint64_t)bus_space_read_4(sc->bar0.tag, sc->bar0.handle, reg + 4)) << 32;
241 bus_space_write_4(sc->bar0.tag, sc->bar0.handle, reg, val);
261 bus_space_write_8(sc->bar0.tag, sc->bar0.handle, reg, val);
271 bus_space_write_4(sc->bar0.tag, sc->bar0.handle, reg, lo_val);
272 bus_space_write_4(sc->bar0.tag, sc->bar0.handle, reg + 4, hi_val);
365 * track this memory using a bus DMA tag and map.
386 &mem->tag);
[all...]
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Drrwlock.c102 rrn_add(rrwlock_t *rrl, const void *tag) argument
109 rn->rn_tag = tag;
118 rrn_find_and_remove(rrwlock_t *rrl, const void *tag) argument
127 if (rn->rn_rrl == rrl && rn->rn_tag == tag) {
163 rrw_enter_read_impl(rrwlock_t *rrl, boolean_t prio, const void *tag) argument
185 rrn_add(rrl, tag);
186 (void) zfs_refcount_add(&rrl->rr_linked_rcount, tag);
188 (void) zfs_refcount_add(&rrl->rr_anon_rcount, tag);
195 rrw_enter_read(rrwlock_t *rrl, const void *tag) argument
197 rrw_enter_read_impl(rrl, B_FALSE, tag);
207 rrw_enter_read_prio(rrwlock_t *rrl, const void *tag) argument
231 rrw_enter(rrwlock_t *rrl, krw_t rw, const void *tag) argument
240 rrw_exit(rrwlock_t *rrl, const void *tag) argument
342 rrm_enter(rrmlock_t *rrl, krw_t rw, const void *tag) argument
361 rrm_enter_read(rrmlock_t *rrl, const void *tag) argument
376 rrm_exit(rrmlock_t *rrl, const void *tag) argument
[all...]
/freebsd-current/sys/dev/iommu/
H A Dbusdma_iommu.c299 res = (bus_dma_tag_t)ctx->tag;
381 CTR4(KTR_BUSDMA, "%s returned tag %p tag flags 0x%x error %d",
408 if (dmat == dmat->ctx->tag)
414 CTR3(KTR_BUSDMA, "%s tag %p error %d", __func__, dmat, error);
428 struct bus_dma_tag_iommu *tag; local
431 tag = (struct bus_dma_tag_iommu *)dmat;
433 DOMAINSET_PREF(tag->common.domain), M_NOWAIT | M_ZERO);
438 if (tag->segments == NULL) {
439 tag
462 struct bus_dma_tag_iommu *tag; local
485 struct bus_dma_tag_iommu *tag; local
525 struct bus_dma_tag_iommu *tag; local
545 iommu_bus_dmamap_load_something1(struct bus_dma_tag_iommu *tag, struct bus_dmamap_iommu *map, vm_page_t *ma, int offset, bus_size_t buflen, int flags, bus_dma_segment_t *segs, int *segp, struct iommu_map_entries_tailq *entries) argument
632 iommu_bus_dmamap_load_something(struct bus_dma_tag_iommu *tag, struct bus_dmamap_iommu *map, vm_page_t *ma, int offset, bus_size_t buflen, int flags, bus_dma_segment_t *segs, int *segp) argument
678 struct bus_dma_tag_iommu *tag; local
692 struct bus_dma_tag_iommu *tag; local
743 struct bus_dma_tag_iommu *tag; local
810 struct bus_dma_tag_iommu *tag; local
846 struct bus_dma_tag_iommu *tag; local
923 struct bus_dma_tag_iommu *tag; local
996 struct bus_dma_tag_iommu *tag; local
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbSymUid.cpp17 uint64_t tag : 4; member in struct:__anon2964::GenericIdRepr
22 uint64_t tag : 4; member in struct:__anon2964::CompilandIdRepr
28 uint64_t tag : 4; member in struct:__anon2964::CompilandSymIdRepr
35 uint64_t tag : 4; member in struct:__anon2964::GlobalSymIdRepr
42 uint64_t tag : 4; member in struct:__anon2964::TypeSymIdRepr
49 uint64_t tag : 4; member in struct:__anon2964::FieldListMemberIdRepr
72 repr.tag = static_cast<uint64_t>(PdbSymUidKind::Compiland);
81 repr.tag = static_cast<uint64_t>(PdbSymUidKind::CompilandSym);
90 repr.tag = static_cast<uint64_t>(PdbSymUidKind::GlobalSym);
99 repr.tag
[all...]
/freebsd-current/contrib/tcp_wrappers/
H A Ddiag.c32 static void tcpd_diag(int severity, char *tag, char *format, va_list ap) argument
38 tag, tcpd_context.file, tcpd_context.line, format);
40 sprintf(fmt, "%s: %s", tag, format);
/freebsd-current/bin/setfacl/
H A Dmask.c41 acl_tag_t tag; local
82 if (acl_get_tag_type(entry, &tag) == -1)
86 if (tag == ACL_MASK) {
/freebsd-current/sys/arm64/arm64/
H A Dofw_machdep.c38 OF_decode_addr(phandle_t dev, int regno, bus_space_tag_t *tag, argument
50 *tag = &memmap_bus;
60 return (bus_space_map(*tag, addr, size, flags, handle));
/freebsd-current/sys/crypto/openssl/
H A Dossl_aes_gcm.h45 int (*finish)(struct ossl_gcm_context *ctx, const unsigned char *tag,
47 void (*tag)(struct ossl_gcm_context *ctx, unsigned char *tag, member in struct:ossl_aes_gcm_ops
/freebsd-current/contrib/less/
H A Dtags.c47 static enum tag_result findctag(char *tag);
48 static enum tag_result findgtag(char *tag, int type);
53 static int getentry(char *buf, char **tag, char **file, char **line);
64 struct tag *tl_first;
65 struct tag *tl_last;
67 struct tag { struct
68 struct tag *next, *prev; /* List links */
69 char *tag_file; /* Source file containing the tag */
71 char *tag_pattern; /* Pattern used to find the tag */
74 #define TAG_END ((struct tag *)
166 findtag(char *tag) argument
253 findctag(char *tag) argument
484 findgtag(char *tag, int type) argument
709 getentry(char *buf, char **tag, char **file, char **line) argument
[all...]
/freebsd-current/contrib/ntp/sntp/libevent/
H A Devent_tagging.c66 #include "event2/tag.h"
82 with the high bit clear. The integer value of the tag is taken
84 the tag 0x66 is encoded as [66], whereas the tag 0x166 is encoded as
101 int evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag);
178 evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag) argument
185 ev_uint8_t lower = tag & 0x7f;
186 tag >>= 7;
188 if (tag)
192 } while (tag);
261 evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data, ev_uint32_t len) argument
270 evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag, struct evbuffer *data) argument
281 evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag, ev_uint32_t integer) argument
292 evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag, ev_uint64_t integer) argument
304 evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag, const char *string) argument
311 evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag, struct timeval *tv) argument
492 ev_uint32_t tag; local
518 ev_uint32_t tag; local
546 ev_uint32_t tag; local
565 ev_uint32_t tag; local
587 ev_uint32_t tag; local
[all...]
/freebsd-current/contrib/libevent/
H A Devent_tagging.c66 #include "event2/tag.h"
82 with the high bit clear. The integer value of the tag is taken
84 the tag 0x66 is encoded as [66], whereas the tag 0x166 is encoded as
101 int evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag);
178 evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag) argument
185 ev_uint8_t lower = tag & 0x7f;
186 tag >>= 7;
188 if (tag)
192 } while (tag);
261 evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data, ev_uint32_t len) argument
270 evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag, struct evbuffer *data) argument
281 evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag, ev_uint32_t integer) argument
292 evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag, ev_uint64_t integer) argument
304 evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag, const char *string) argument
311 evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag, struct timeval *tv) argument
492 ev_uint32_t tag; local
518 ev_uint32_t tag; local
546 ev_uint32_t tag; local
565 ev_uint32_t tag; local
587 ev_uint32_t tag; local
[all...]
/freebsd-current/contrib/libevent/include/event2/
H A Dtag.h30 /** @file event2/tag.h
68 @param ptag a pointer in which the tag id is being stored
75 void evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data,
78 void evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag,
97 void evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag,
100 void evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag,
104 void evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag,
108 void evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag,
/freebsd-current/contrib/ntp/sntp/libevent/include/event2/
H A Dtag.h30 /** @file event2/tag.h
68 @param ptag a pointer in which the tag id is being stored
75 void evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data,
78 void evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag,
97 void evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag,
100 void evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag,
104 void evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag,
108 void evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag,
/freebsd-current/crypto/openssl/util/
H A Dcavs-to-evptest.pl22 my $tag = "";
73 $tag = substr($2, $taglen * -2);
100 print " $tag";
117 $tag = "";
/freebsd-current/contrib/lib9p/pytest/
H A Dp9conn.py386 "get next available tag ID"
389 tag = 65535
391 tag = self.tagalloc.alloc()
392 if tag is None:
394 self.tagstate[tag] = True # ie, in use, still waiting
395 return tag
397 def set_tag(self, tag, reply):
398 "set the reply info for the given tag"
399 assert tag >= 0 and tag < 6553
[all...]
/freebsd-current/contrib/netbsd-tests/net/npf/
H A Dt_npf.sh59 while read tag desc
61 add_test "${tag}" "${desc}"
/freebsd-current/contrib/mandoc/
H A Dtag.c1 /* $Id: tag.c,v 1.36 2020/04/19 16:36:16 schwarze Exp $ */
17 * Functions to tag syntax tree nodes.
36 #include "tag.h"
157 * In addition, a tag with priority TAG_FALLBACK
158 * is only used if the tag occurs exactly once.
165 free(nold->tag);
166 nold->tag = NULL;
185 assert(n->tag == NULL);
186 n->tag = mandoc_strndup(s, len);
191 tag_exists(const char *tag) argument
263 tag_move_href(struct roff_man *man, struct roff_node *n, const char *tag) argument
[all...]
/freebsd-current/sys/dev/cxgb/sys/
H A Dmvec.h34 int busdma_map_sg_collapse(bus_dma_tag_t tag, bus_dmamap_t map,
36 void busdma_map_sg_vec(bus_dma_tag_t tag, bus_dmamap_t map,
/freebsd-current/sys/dev/proto/
H A Dproto_dev.h64 } tag; member in union:proto_ioc_busdma::__anon4231
66 unsigned long tag; member in struct:proto_ioc_busdma::__anon4231::__anon4233
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7996/
H A Dmcu.h47 __le16 tag; member in struct:mt7996_mcu_rdd_report
103 __le16 tag; member in struct:mt7996_mcu_background_chain_ctrl
131 __le16 tag; member in struct:mt7996_mcu_eeprom
150 __le16 tag; member in struct:mt7996_mcu_mib
164 __le16 tag; member in struct:edca
216 __le16 tag; member in struct:bss_rate_tlv
228 __le16 tag; member in struct:bss_ra_tlv
242 __le16 tag; member in struct:bss_rlm_tlv
257 __le16 tag; member in struct:bss_color_tlv
265 __le16 tag; member in struct:bss_inband_discovery_tlv
278 __le16 tag; member in struct:bss_bcn_content_tlv
291 __le16 tag; member in struct:bss_bcn_cntdwn_tlv
298 __le16 tag; member in struct:bss_bcn_mbss_tlv
306 __le16 tag; member in struct:bss_txcmd_tlv
313 __le16 tag; member in struct:bss_sec_tlv
321 __le16 tag; member in struct:bss_ifs_time_tlv
337 __le16 tag; member in struct:bss_power_save
344 __le16 tag; member in struct:bss_mld_tlv
354 __le16 tag; member in struct:sta_rec_ba_uni
367 __le16 tag; member in struct:sta_rec_eht
393 __le16 tag; member in struct:sta_rec_sec_uni
403 __le16 tag; member in struct:sta_rec_hdrt
410 __le16 tag; member in struct:sta_rec_hdr_trans
419 __le16 tag; member in struct:hdr_trans_en
428 __le16 tag; member in struct:hdr_trans_vlan
437 __le16 tag; member in struct:hdr_trans_blacklist
449 __le16 tag; member in struct:vow_rx_airtime
458 __le16 tag; member in struct:bf_sounding_on
469 __le16 tag; member in struct:bf_hw_en_status_update
478 __le16 tag; member in struct:bf_mod_en_ctrl
509 __le16 tag; member in struct:ra_fixed_rate
[all...]
/freebsd-current/sys/contrib/openzfs/include/os/linux/zfs/sys/
H A Dzfs_znode_impl.h103 zfs_enter(zfsvfs_t *zfsvfs, const char *tag) argument
105 ZFS_TEARDOWN_ENTER_READ(zfsvfs, tag);
107 ZFS_TEARDOWN_EXIT_READ(zfsvfs, tag);
115 zfs_exit(zfsvfs_t *zfsvfs, const char *tag) argument
118 ZFS_TEARDOWN_EXIT_READ(zfsvfs, tag);
122 zpl_enter(zfsvfs_t *zfsvfs, const char *tag) argument
124 return (-zfs_enter(zfsvfs, tag));
128 zpl_exit(zfsvfs_t *zfsvfs, const char *tag) argument
130 ZFS_TEARDOWN_EXIT_READ(zfsvfs, tag);
135 #define zpl_enter_verify_zp(zfsvfs, zp, tag) \
[all...]

Completed in 329 milliseconds

1234567891011>>