/freebsd/cddl/usr.sbin/dtrace/tests/tools/ |
H A D | exclude.sh | 45 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 …]
|
/freebsd/sys/contrib/dev/athk/ |
H A D | key.c | 25 #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 D | ath.h | 146 void (*wakeup)(struct ath_common *common); 147 void (*restore)(struct ath_common *common); 194 static inline const struct ath_ps_ops *ath_ps_ops(struct ath_common *common) in ath_ps_ops() argument 196 return common->ps_ops; in ath_ps_ops() 199 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, 202 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr); 204 void ath_hw_setbssidmask(struct ath_common *common); 205 void ath_key_delete(struct ath_common *common, u8 hw_key_idx); 206 int ath_key_config(struct ath_common *common, 210 bool ath_hw_keyreset(struct ath_common *common, u16 entry); [all …]
|
H A D | hw.c | 23 #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 D | main.c | 34 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, in ath_rxbuf_alloc() argument 54 skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask); in ath_rxbuf_alloc() 56 off = ((unsigned long) skb->data) % common->cachelsz; in ath_rxbuf_alloc() 58 skb_reserve(skb, common->cachelsz - off); in ath_rxbuf_alloc() 68 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr) in ath_is_mybeacon() argument 71 !is_zero_ether_addr(common->curbssid) && in ath_is_mybeacon() 72 ether_addr_equal_64bits(hdr->addr3, common->curbssid); in ath_is_mybeacon() 76 void ath_printk(const char *level, const struct ath_common* common, in ath_printk() argument 87 if (common && common->hw && common->hw->wiphy) { in ath_printk() 89 level, wiphy_name(common->hw->wiphy), &vaf); in ath_printk() [all …]
|
/freebsd/sys/x86/x86/ |
H A D | busdma_machdep.c | 64 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 D | busdma_bounce.c | 74 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 [all...] |
/freebsd/sys/arm64/arm64/ |
H A D | busdma_machdep.c | 60 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 D | busdma_bounce.c | 76 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 …]
|
/freebsd/sys/modules/qat/qat_api/ |
H A D | Makefile | 8 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 …]
|
/freebsd/sys/riscv/riscv/ |
H A D | busdma_machdep.c | 59 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 D | busdma_bounce.c | 72 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 [all...] |
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/ |
H A D | exception.lst | 31 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 …]
|
/freebsd/sys/contrib/zstd/lib/ |
H A D | BUCK | 7 ':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 …]
|
/freebsd/targets/pseudo/tests/ |
H A D | Makefile.depend | 39 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 …]
|
/freebsd/contrib/wpa/src/drivers/ |
H A D | driver_wired_common.c | 219 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 D | driver_wired.c | 48 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 …]
|
/freebsd/sys/contrib/openzfs/scripts/ |
H A D | zol2zfs-patch.sed | 4 s:include/libzfs.h:usr/src/lib/libzfs/common/libzfs.h:g 5 s:include/libzfs_core.h:usr/src/lib/libzfs_core/common/libzfs_core.h:g 6 s:include/sys:lib/libzpool/common/sys:g 7 s:include/sys:usr/src/uts/common/fs/zfs/sys:g 8 s:include/sys:usr/src/uts/common/sys:g 9 s:include/zfs_fletcher.h:usr/src/common/zfs/zfs_fletcher.h:g 10 s:include:usr/src/common/zfs:g 11 s:lib/libzfs:usr/src/lib/libzfs/common:g 12 s:lib/libzfs_core:usr/src/lib/libzfs_core/common:g 13 s:lib/libzpool:lib/libzpool/common:g [all …]
|
H A D | zfs2zol-patch.sed | 3 s:usr/src/uts/common/fs/zfs/sys:include/sys:g 4 s:usr/src/uts/common/fs/zfs:module/zfs:g 7 s:usr/src/common/nvpair:module/nvpair:g 8 s:usr/src/lib/libzfs/common/libzfs.h:include/libzfs.h:g 10 s:usr/src/uts/common/sys:include/sys:g 11 s:usr/src/lib/libzfs_core/common/libzfs_core.h:include/libzfs_core.h:g 12 s:usr/src/lib/libzfs/common:lib/libzfs:g 13 s:usr/src/lib/libzfs_core/common:lib/libzfs_core:g 14 s:lib/libzpool/common/sys:include/sys:g 15 s:lib/libzpool/common:lib/libzpool:g [all …]
|
/freebsd/crypto/heimdal/appl/test/ |
H A D | Makefile.am | 3 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
|
/freebsd/contrib/expat/lib/ |
H A D | xmlrole.c | 138 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 …]
|
/freebsd/sys/contrib/dev/iwlwifi/mvm/ |
H A D | offloading.c | 48 struct iwl_proto_offload_cmd_common *common; in iwl_mvm_send_proto_offload() 174 common = &cmd.v3s.common; in iwl_mvm_send_proto_offload() 177 common = &cmd.v4.common; in iwl_mvm_send_proto_offload() 183 * common part. 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 in iwl_mvm_send_proto_offload() 47 struct iwl_proto_offload_cmd_common *common; iwl_mvm_send_proto_offload() local [all...] |
/freebsd/contrib/nvi/ |
H A D | CMakeLists.txt | 47 cl/extern.h common/extern.h ex/extern.h vi/extern.h 48 common/options_def.h ex/ex_def.h ex/version.h) 54 common/conv.c common/cut.c common/delete.c common/encoding.c common/exf.c 55 common/key.c common/line.c common/log.c common/main.c common/mark.c 56 common/msg.c common/options.c common/options_f.c common/put.c 57 common/recover.c common/screen.c common/search.c common/seq.c 58 common/util.c) 94 add_custom_command(OUTPUT common/extern.h 95 COMMAND ${extract_protos} ${COMMON_SRCS} > common/extern.h 106 add_custom_command(OUTPUT common/options_def.h [all …]
|
/freebsd/sys/contrib/zstd/examples/ |
H A D | Makefile | 29 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
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 04-test_pem_reading.t | 86 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);
|