Home
last modified time | relevance | path

Searched refs:common (Results 1 – 25 of 2518) sorted by relevance

12345678910>>...101

/src/cddl/usr.sbin/dtrace/tests/tools/
H A Dexclude.sh45 exclude EXFAIL common/aggs/tst.subr.d
46 exclude EXFAIL common/dtraceUtil/tst.ELFGenerationOut.d.ksh
47 exclude EXFAIL common/dtraceUtil/tst.ELFGenerationWithO.d.ksh
48 exclude EXFAIL common/funcs/tst.copyin.d
49 exclude EXFAIL common/funcs/tst.copyinto.d
50 exclude EXFAIL common/funcs/tst.ddi_pathname.d
51 exclude EXFAIL common/io/tst.fds.d
52 exclude EXFAIL common/mdb/tst.dtracedcmd.ksh
53 exclude EXFAIL common/misc/tst.dofmax.ksh
54 exclude EXFAIL common/misc/tst.include.ksh
[all …]
/src/sys/contrib/dev/athk/
H A Dkey.c25 #define REG_READ (common->ops->read)
26 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg)
28 if (common->ops->enable_write_buffer) \
29 common->ops->enable_write_buffer((_ah));
32 if (common->ops->write_flush) \
33 common->ops->write_flush((_ah));
42 bool ath_hw_keyreset(struct ath_common *common, u16 entry) in ath_hw_keyreset() argument
45 void *ah = common->ah; in ath_hw_keyreset()
47 if (entry >= common->keymax) { in ath_hw_keyreset()
48 ath_err(common, "keyreset: keycache entry %u out of range\n", in ath_hw_keyreset()
[all …]
H A Dath.h146 void (*wakeup)(struct ath_common *common);
147 void (*restore)(struct ath_common *common);
196 static inline const struct ath_ps_ops *ath_ps_ops(struct ath_common *common) in ath_ps_ops() argument
198 return common->ps_ops; in ath_ps_ops()
201 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
204 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr);
206 void ath_hw_setbssidmask(struct ath_common *common);
207 void ath_key_delete(struct ath_common *common, u8 hw_key_idx);
208 int ath_key_config(struct ath_common *common,
212 bool ath_hw_keyreset(struct ath_common *common, u16 entry);
[all …]
H A Dhw.c23 #define REG_READ (common->ops->read)
24 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg)
118 void ath_hw_setbssidmask(struct ath_common *common) in ath_hw_setbssidmask() argument
120 void *ah = common->ah; in ath_hw_setbssidmask()
123 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr)); in ath_hw_setbssidmask()
125 id1 |= get_unaligned_le16(common->macaddr + 4); in ath_hw_setbssidmask()
128 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(common->bssidmask)); in ath_hw_setbssidmask()
129 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(common->bssidmask + 4)); in ath_hw_setbssidmask()
142 void ath_hw_cycle_counters_update(struct ath_common *common) in ath_hw_cycle_counters_update() argument
145 void *ah = common->ah; in ath_hw_cycle_counters_update()
[all …]
H A Dmain.c35 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, in ath_rxbuf_alloc() argument
55 skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask); in ath_rxbuf_alloc()
57 off = ((unsigned long) skb->data) % common->cachelsz; in ath_rxbuf_alloc()
59 skb_reserve(skb, common->cachelsz - off); in ath_rxbuf_alloc()
69 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr) in ath_is_mybeacon() argument
72 !is_zero_ether_addr(common->curbssid) && in ath_is_mybeacon()
73 ether_addr_equal_64bits(hdr->addr3, common->curbssid); in ath_is_mybeacon()
77 void ath_printk(const char *level, const struct ath_common* common, in ath_printk() argument
88 if (common && common->hw && common->hw->wiphy) { in ath_printk()
90 level, wiphy_name(common->hw->wiphy), &vaf); in ath_printk()
[all …]
/src/sys/x86/x86/
H A Dbusdma_machdep.c64 struct bus_dma_tag_common *common; in common_bus_dma_tag_create() local
82 common = newtag; in common_bus_dma_tag_create()
83 common->impl = &bus_dma_bounce_impl; in common_bus_dma_tag_create()
84 common->alignment = alignment; in common_bus_dma_tag_create()
85 common->boundary = boundary; in common_bus_dma_tag_create()
86 common->lowaddr = trunc_page((vm_paddr_t)lowaddr) + (PAGE_SIZE - 1); in common_bus_dma_tag_create()
87 common->highaddr = trunc_page((vm_paddr_t)highaddr) + (PAGE_SIZE - 1); in common_bus_dma_tag_create()
88 common->maxsize = maxsize; in common_bus_dma_tag_create()
89 common->nsegments = nsegments; in common_bus_dma_tag_create()
90 common->maxsegsz = maxsegsz; in common_bus_dma_tag_create()
[all …]
H A Dbusdma_bounce.c74 struct bus_dma_tag_common common; member
110 #define dmat_alignment(dmat) ((dmat)->common.alignment)
112 #define dmat_boundary(dmat) ((dmat)->common.boundary)
113 #define dmat_domain(dmat) ((dmat)->common.domain)
114 #define dmat_flags(dmat) ((dmat)->common.flags)
115 #define dmat_highaddr(dmat) ((dmat)->common.highaddr)
116 #define dmat_lowaddr(dmat) ((dmat)->common.lowaddr)
117 #define dmat_lockfunc(dmat) ((dmat)->common.lockfunc)
118 #define dmat_lockfuncarg(dmat) ((dmat)->common.lockfuncarg)
119 #define dmat_maxsegsz(dmat) ((dmat)->common.maxsegsz)
[all …]
/src/sys/arm64/arm64/
H A Dbusdma_machdep.c60 struct bus_dma_tag_common *common; in common_bus_dma_tag_create() local
78 common = newtag; in common_bus_dma_tag_create()
79 common->impl = &bus_dma_bounce_impl; in common_bus_dma_tag_create()
80 common->alignment = alignment; in common_bus_dma_tag_create()
81 common->boundary = boundary; in common_bus_dma_tag_create()
82 common->lowaddr = trunc_page((vm_paddr_t)lowaddr) + (PAGE_SIZE - 1); in common_bus_dma_tag_create()
83 common->highaddr = trunc_page((vm_paddr_t)highaddr) + (PAGE_SIZE - 1); in common_bus_dma_tag_create()
84 common->maxsize = maxsize; in common_bus_dma_tag_create()
85 common->nsegments = nsegments; in common_bus_dma_tag_create()
86 common->maxsegsz = maxsegsz; in common_bus_dma_tag_create()
[all …]
H A Dbusdma_bounce.c76 struct bus_dma_tag_common common; member
125 #define dmat_alignment(dmat) ((dmat)->common.alignment)
127 #define dmat_boundary(dmat) ((dmat)->common.boundary)
128 #define dmat_domain(dmat) ((dmat)->common.domain)
129 #define dmat_flags(dmat) ((dmat)->common.flags)
130 #define dmat_highaddr(dmat) ((dmat)->common.highaddr)
131 #define dmat_lowaddr(dmat) ((dmat)->common.lowaddr)
132 #define dmat_lockfunc(dmat) ((dmat)->common.lockfunc)
133 #define dmat_lockfuncarg(dmat) ((dmat)->common.lockfuncarg)
134 #define dmat_maxsegsz(dmat) ((dmat)->common.maxsegsz)
[all …]
/src/sys/modules/qat/qat_api/
H A DMakefile8 SRCS+= common/compression/dc_datapath.c
9 SRCS+= common/compression/dc_header_footer.c
10 SRCS+= common/compression/dc_session.c
11 SRCS+= common/compression/dc_stats.c
12 SRCS+= common/compression/dc_buffers.c
13 SRCS+= common/compression/dc_dp.c
14 SRCS+= common/compression/icp_sal_dc_err.c
15 SRCS+= common/compression/dc_chain.c
16 SRCS+= common/compression/dc_ns_datapath.c
17 SRCS+= common/compression/dc_ns_header_footer.c
[all …]
/src/sys/riscv/riscv/
H A Dbusdma_machdep.c59 struct bus_dma_tag_common *common; in common_bus_dma_tag_create() local
77 common = newtag; in common_bus_dma_tag_create()
78 common->impl = &bus_dma_bounce_impl; in common_bus_dma_tag_create()
79 common->alignment = alignment; in common_bus_dma_tag_create()
80 common->boundary = boundary; in common_bus_dma_tag_create()
81 common->lowaddr = trunc_page((vm_paddr_t)lowaddr) + (PAGE_SIZE - 1); in common_bus_dma_tag_create()
82 common->highaddr = trunc_page((vm_paddr_t)highaddr) + (PAGE_SIZE - 1); in common_bus_dma_tag_create()
83 common->maxsize = maxsize; in common_bus_dma_tag_create()
84 common->nsegments = nsegments; in common_bus_dma_tag_create()
85 common->maxsegsz = maxsegsz; in common_bus_dma_tag_create()
[all …]
H A Dbusdma_bounce.c72 struct bus_dma_tag_common common; member
113 #define dmat_alignment(dmat) ((dmat)->common.alignment)
115 #define dmat_boundary(dmat) ((dmat)->common.boundary)
116 #define dmat_flags(dmat) ((dmat)->common.flags)
117 #define dmat_highaddr(dmat) ((dmat)->common.highaddr)
118 #define dmat_lowaddr(dmat) ((dmat)->common.lowaddr)
119 #define dmat_lockfunc(dmat) ((dmat)->common.lockfunc)
120 #define dmat_lockfuncarg(dmat) ((dmat)->common.lockfuncarg)
121 #define dmat_maxsegsz(dmat) ((dmat)->common.maxsegsz)
122 #define dmat_nsegments(dmat) ((dmat)->common.nsegments)
[all …]
/src/crypto/krb5/src/ccapi/lib/
H A Ddeps8 $(srcdir)/../common/cci_common.h $(srcdir)/../common/cci_cred_union.h \
9 $(srcdir)/../common/cci_debugging.h $(srcdir)/../common/cci_identifier.h \
10 $(srcdir)/../common/cci_message.h $(srcdir)/../common/cci_types.h \
17 $(srcdir)/../common/cci_common.h $(srcdir)/../common/cci_cred_union.h \
18 $(srcdir)/../common/cci_debugging.h $(srcdir)/../common/cci_identifier.h \
19 $(srcdir)/../common/cci_message.h $(srcdir)/../common/cci_types.h \
26 $(srcdir)/../common/cci_common.h $(srcdir)/../common/cci_cred_union.h \
27 $(srcdir)/../common/cci_debugging.h $(srcdir)/../common/cci_identifier.h \
28 $(srcdir)/../common/cci_message.h $(srcdir)/../common/cci_types.h \
37 $(srcdir)/../common/cci_common.h $(srcdir)/../common/cci_cred_union.h \
[all …]
/src/crypto/krb5/src/ccapi/server/
H A Ddeps8 $(srcdir)/../common/cci_array_internal.h $(srcdir)/../common/cci_common.h \
9 $(srcdir)/../common/cci_cred_union.h $(srcdir)/../common/cci_debugging.h \
10 $(srcdir)/../common/cci_identifier.h $(srcdir)/../common/cci_message.h \
11 $(srcdir)/../common/cci_types.h ccs_array.c ccs_array.h \
20 $(srcdir)/../common/cci_common.h $(srcdir)/../common/cci_cred_union.h \
21 $(srcdir)/../common/cci_debugging.h $(srcdir)/../common/cci_identifier.h \
22 $(srcdir)/../common/cci_message.h $(srcdir)/../common/cci_types.h \
32 $(srcdir)/../common/cci_common.h $(srcdir)/../common/cci_cred_union.h \
33 $(srcdir)/../common/cci_debugging.h $(srcdir)/../common/cci_identifier.h \
34 $(srcdir)/../common/cci_message.h $(srcdir)/../common/cci_types.h \
[all …]
/src/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A Dexception.lst31 common/aggs/tst.neglquant.d
32 common/aggs/tst.negquant.d
35 common/printa/tst.walltimestamp.ksh
38 common/dtraceUtil/tst.ELFGenerationOut.d.ksh
39 common/dtraceUtil/tst.ELFGenerationWithO.d.ksh
42 common/dtraceUtil/tst.PreprocessorStatement.d.ksh
45 common/usdt/tst.badguess.ksh
46 common/usdt/tst.dlclose1.ksh
47 common/usdt/tst.dlclose2.ksh
48 common/usdt/tst.dlclose3.ksh
[all …]
/src/sys/contrib/zstd/lib/
H A DBUCK7 ':common',
22 deps=[':common'],
34 ':common',
47 deps=[':common'],
58 deps=[':common'],
74 deps=[':common'],
82 ('common', 'compiler.h'),
91 ('common', 'cpu.h'),
100 ('common', 'bitstream.h'),
109 ('common', 'fse.h'),
[all …]
/src/targets/pseudo/tests/
H A DMakefile.depend39 cddl/usr.sbin/dtrace/tests/common \
40 cddl/usr.sbin/dtrace/tests/common/aggs \
41 cddl/usr.sbin/dtrace/tests/common/arithmetic \
42 cddl/usr.sbin/dtrace/tests/common/arrays \
43 cddl/usr.sbin/dtrace/tests/common/assocs \
44 cddl/usr.sbin/dtrace/tests/common/begin \
45 cddl/usr.sbin/dtrace/tests/common/bitfields \
46 cddl/usr.sbin/dtrace/tests/common/buffering \
47 cddl/usr.sbin/dtrace/tests/common/builtinvar \
48 cddl/usr.sbin/dtrace/tests/common/cg \
[all …]
/src/contrib/wpa/src/drivers/
H A Ddriver_wired_common.c219 int driver_wired_init_common(struct driver_wired_common_data *common, in driver_wired_init_common() argument
224 os_strlcpy(common->ifname, ifname, sizeof(common->ifname)); in driver_wired_init_common()
225 common->ctx = ctx; in driver_wired_init_common()
228 common->pf_sock = socket(PF_PACKET, SOCK_DGRAM, 0); in driver_wired_init_common()
229 if (common->pf_sock < 0) in driver_wired_init_common()
232 common->pf_sock = -1; in driver_wired_init_common()
238 common->iff_up = 1; in driver_wired_init_common()
240 if (wired_multicast_membership(common->pf_sock, in driver_wired_init_common()
241 if_nametoindex(common->ifname), in driver_wired_init_common()
246 common->membership = 1; in driver_wired_init_common()
[all …]
H A Ddriver_wired.c48 struct driver_wired_common_data common; member
176 drv->common.sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_PAE)); in wired_init_sockets()
177 if (drv->common.sock < 0) { in wired_init_sockets()
183 if (eloop_register_read_sock(drv->common.sock, handle_read, in wired_init_sockets()
184 drv->common.ctx, NULL)) { in wired_init_sockets()
190 os_strlcpy(ifr.ifr_name, drv->common.ifname, sizeof(ifr.ifr_name)); in wired_init_sockets()
191 if (ioctl(drv->common.sock, SIOCGIFINDEX, &ifr) != 0) { in wired_init_sockets()
203 if (bind(drv->common.sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) in wired_init_sockets()
210 if (wired_multicast_membership(drv->common.sock, ifr.ifr_ifindex, in wired_init_sockets()
218 os_strlcpy(ifr.ifr_name, drv->common.ifname, sizeof(ifr.ifr_name)); in wired_init_sockets()
[all …]
/src/crypto/heimdal/appl/test/
H A DMakefile.am3 include $(top_srcdir)/Makefile.am.common
8 tcp_client_SOURCES = tcp_client.c common.c test_locl.h
10 tcp_server_SOURCES = tcp_server.c common.c test_locl.h
12 gssapi_server_SOURCES = gssapi_server.c gss_common.c common.c \
15 gssapi_client_SOURCES = gssapi_client.c gss_common.c common.c \
18 http_client_SOURCES = http_client.c gss_common.c common.c \
21 uu_server_SOURCES = uu_server.c common.c test_locl.h
23 uu_client_SOURCES = uu_client.c common.c test_locl.h
31 nt_gss_client_SOURCES = nt_gss_client.c nt_gss_common.c nt_gss_common.h common.c
/src/contrib/expat/lib/
H A Dxmlrole.c138 static int FASTCALL common(PROLOG_STATE *state, int tok);
168 return common(state, tok); in prolog0()
200 return common(state, tok); in prolog1()
220 return common(state, tok); in prolog2()
237 return common(state, tok); in doctype0()
263 return common(state, tok); in doctype1()
279 return common(state, tok); in doctype2()
295 return common(state, tok); in doctype3()
314 return common(state, tok); in doctype4()
330 return common(state, tok); in doctype5()
[all …]
/src/sys/contrib/dev/iwlwifi/mvm/
H A Doffloading.c48 struct iwl_proto_offload_cmd_common *common; in iwl_mvm_send_proto_offload() local
174 common = &cmd.v3s.common; in iwl_mvm_send_proto_offload()
177 common = &cmd.v4.common; in iwl_mvm_send_proto_offload()
186 hcmd.data[0] = common; in iwl_mvm_send_proto_offload()
189 common = &cmd.v2.common; in iwl_mvm_send_proto_offload()
192 common = &cmd.v1.common; in iwl_mvm_send_proto_offload()
198 common->host_ipv4_addr = vif->cfg.arp_addr_list[0]; in iwl_mvm_send_proto_offload()
199 memcpy(common->arp_mac_addr, vif->addr, ETH_ALEN); in iwl_mvm_send_proto_offload()
207 common->enabled = cpu_to_le32(enabled); in iwl_mvm_send_proto_offload()
/src/sys/contrib/zstd/examples/
H A DMakefile29 simple_compression.o: common.h
32 simple_decompression.o: common.h
35 multiple_simple_compression.o: common.h
38 dictionary_compression.o: common.h
41 dictionary_decompression.o: common.h
44 streaming_compression.o: common.h
47 multiple_streaming_compression.o: common.h
50 streaming_decompression.o: common.h
53 streaming_memory_usage.o: common.h
/src/crypto/openssl/test/recipes/
H A D04-test_pem_reading.t86 my @common = ($cmd, "x509", "-text", "-noout", "-inform", "PEM", "-in");
87 my @data = run(app([@common, data_file($input)], stderr => undef), capture => 1);
94 …my @common = ($cmd, "pkey", "-inform", "PEM", "-passin", "file:" . data_file("wellknown"), "-noout…
98 @data = run(app([@common, data_file($input)], stderr => undef), capture => 1);
105 my @common = ($cmd, "pkey", "-inform", "PEM", "-noout", "-text", "-in");
106 my @data = run(app([@common, data_file("beermug.pem")], stderr => undef), capture => 1);
110 @data = run(app([@common, $certkeycert], stderr => "outerr.txt"), capture => 1);
/src/sys/dev/ixgbe/
H A Dif_fdir.c89 union ixgbe_atr_hash_dword common = {.dword = 0}; in ixgbe_atr() local
114 common.port.dst ^= th->th_sport; in ixgbe_atr()
115 common.port.src ^= th->th_dport; in ixgbe_atr()
121 common.port.dst ^= uh->uh_sport; in ixgbe_atr()
122 common.port.src ^= uh->uh_dport; in ixgbe_atr()
131 common.flex_bytes ^= htons(ETHERTYPE_VLAN); in ixgbe_atr()
133 common.flex_bytes ^= etype; in ixgbe_atr()
134 common.ip ^= ip->ip_src.s_addr ^ ip->ip_dst.s_addr; in ixgbe_atr()
142 input, common, que->msix); in ixgbe_atr()

12345678910>>...101