/Linux-v5.10/sound/parisc/ |
D | harmony.c | 95 harmony_read(struct snd_harmony *h, unsigned r) in harmony_read() argument 97 return __raw_readl(h->iobase + r); in harmony_read() 101 harmony_write(struct snd_harmony *h, unsigned r, unsigned long v) in harmony_write() argument 103 __raw_writel(v, h->iobase + r); in harmony_write() 107 harmony_wait_for_control(struct snd_harmony *h) in harmony_wait_for_control() argument 109 while (harmony_read(h, HARMONY_CNTL) & HARMONY_CNTL_C) ; in harmony_wait_for_control() 113 harmony_reset(struct snd_harmony *h) in harmony_reset() argument 115 harmony_write(h, HARMONY_RESET, 1); in harmony_reset() 117 harmony_write(h, HARMONY_RESET, 0); in harmony_reset() 121 harmony_disable_interrupts(struct snd_harmony *h) in harmony_disable_interrupts() argument [all …]
|
/Linux-v5.10/net/dccp/ccids/lib/ |
D | packet_history.c | 110 void tfrc_rx_hist_add_packet(struct tfrc_rx_hist *h, in tfrc_rx_hist_add_packet() argument 114 struct tfrc_rx_hist_entry *entry = tfrc_rx_hist_last_rcv(h); in tfrc_rx_hist_add_packet() 120 int tfrc_rx_hist_duplicate(struct tfrc_rx_hist *h, struct sk_buff *skb) in tfrc_rx_hist_duplicate() argument 125 if (dccp_delta_seqno(tfrc_rx_hist_loss_prev(h)->tfrchrx_seqno, seq) <= 0) in tfrc_rx_hist_duplicate() 128 for (i = 1; i <= h->loss_count; i++) in tfrc_rx_hist_duplicate() 129 if (tfrc_rx_hist_entry(h, i)->tfrchrx_seqno == seq) in tfrc_rx_hist_duplicate() 135 static void tfrc_rx_hist_swap(struct tfrc_rx_hist *h, const u8 a, const u8 b) in tfrc_rx_hist_swap() argument 137 const u8 idx_a = tfrc_rx_hist_index(h, a), in tfrc_rx_hist_swap() 138 idx_b = tfrc_rx_hist_index(h, b); in tfrc_rx_hist_swap() 140 swap(h->ring[idx_a], h->ring[idx_b]); in tfrc_rx_hist_swap() [all …]
|
D | packet_history.h | 91 static inline u8 tfrc_rx_hist_index(const struct tfrc_rx_hist *h, const u8 n) in tfrc_rx_hist_index() argument 93 return (h->loss_start + n) & TFRC_NDUPACK; in tfrc_rx_hist_index() 100 tfrc_rx_hist_last_rcv(const struct tfrc_rx_hist *h) in tfrc_rx_hist_last_rcv() argument 102 return h->ring[tfrc_rx_hist_index(h, h->loss_count)]; in tfrc_rx_hist_last_rcv() 109 tfrc_rx_hist_entry(const struct tfrc_rx_hist *h, const u8 n) in tfrc_rx_hist_entry() argument 111 return h->ring[tfrc_rx_hist_index(h, n)]; in tfrc_rx_hist_entry() 118 tfrc_rx_hist_loss_prev(const struct tfrc_rx_hist *h) in tfrc_rx_hist_loss_prev() argument 120 return h->ring[h->loss_start]; in tfrc_rx_hist_loss_prev() 124 static inline bool tfrc_rx_hist_loss_pending(const struct tfrc_rx_hist *h) in tfrc_rx_hist_loss_pending() argument 126 return h->loss_count > 0; in tfrc_rx_hist_loss_pending() [all …]
|
/Linux-v5.10/include/asm-generic/ |
D | Kbuild | 7 mandatory-y += atomic.h 8 mandatory-y += barrier.h 9 mandatory-y += bitops.h 10 mandatory-y += bug.h 11 mandatory-y += bugs.h 12 mandatory-y += cacheflush.h 13 mandatory-y += checksum.h 14 mandatory-y += compat.h 15 mandatory-y += current.h 16 mandatory-y += delay.h [all …]
|
/Linux-v5.10/drivers/scsi/ |
D | hpsa.c | 239 static int hpsa_add_sas_host(struct ctlr_info *h); 240 static void hpsa_delete_sas_host(struct ctlr_info *h); 245 *hpsa_find_device_by_sas_rphy(struct ctlr_info *h, 258 static int hpsa_passthru_ioctl(struct ctlr_info *h, 260 static int hpsa_big_passthru_ioctl(struct ctlr_info *h, 268 static void cmd_free(struct ctlr_info *h, struct CommandList *c); 269 static struct CommandList *cmd_alloc(struct ctlr_info *h); 270 static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c); 271 static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h, 273 static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h, [all …]
|
D | hpsa.h | 31 void (*submit_command)(struct ctlr_info *h, 33 void (*set_intr_mask)(struct ctlr_info *h, unsigned long val); 34 bool (*intr_pending)(struct ctlr_info *h); 35 unsigned long (*command_completed)(struct ctlr_info *h, u8 q); 420 static void SA5_submit_command(struct ctlr_info *h, in SA5_submit_command() argument 423 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET); in SA5_submit_command() 424 (void) readl(h->vaddr + SA5_SCRATCHPAD_OFFSET); in SA5_submit_command() 427 static void SA5_submit_command_no_read(struct ctlr_info *h, in SA5_submit_command_no_read() argument 430 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET); in SA5_submit_command_no_read() 433 static void SA5_submit_command_ioaccel2(struct ctlr_info *h, in SA5_submit_command_ioaccel2() argument [all …]
|
/Linux-v5.10/Documentation/hwmon/ |
D | w83795.rst | 40 13 VSEN1 (VCORE1) 10h in0 41 14 VSEN2 (VCORE2) 11h in1 42 15 VSEN3 (VCORE3) 12h in2 43 16 VSEN4 13h in3 44 17 VSEN5 14h in4 45 18 VSEN6 15h in5 46 19 VSEN7 16h in6 47 20 VSEN8 17h in7 48 21 VSEN9 18h in8 49 22 VSEN10 19h in9 [all …]
|
/Linux-v5.10/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | vpstate.c | 42 nvbios_vpstate_parse(struct nvkm_bios *b, struct nvbios_vpstate_header *h) in nvbios_vpstate_parse() argument 44 if (!h) in nvbios_vpstate_parse() 47 h->offset = nvbios_vpstate_offset(b); in nvbios_vpstate_parse() 48 if (!h->offset) in nvbios_vpstate_parse() 51 h->version = nvbios_rd08(b, h->offset); in nvbios_vpstate_parse() 52 switch (h->version) { in nvbios_vpstate_parse() 54 h->hlen = nvbios_rd08(b, h->offset + 0x1); in nvbios_vpstate_parse() 55 h->elen = nvbios_rd08(b, h->offset + 0x2); in nvbios_vpstate_parse() 56 h->slen = nvbios_rd08(b, h->offset + 0x3); in nvbios_vpstate_parse() 57 h->scount = nvbios_rd08(b, h->offset + 0x4); in nvbios_vpstate_parse() [all …]
|
/Linux-v5.10/drivers/media/dvb-core/ |
D | dvb_net.c | 315 static int dvb_net_ule_new_ts_cell(struct dvb_net_ule_handle *h) in dvb_net_ule_new_ts_cell() argument 322 memcpy(ule_where, h->ts, TS_SZ); in dvb_net_ule_new_ts_cell() 334 if ((h->ts[0] != TS_SYNC) || (h->ts[1] & TS_TEI) || in dvb_net_ule_new_ts_cell() 335 ((h->ts[3] & TS_SC) != 0)) { in dvb_net_ule_new_ts_cell() 337 h->priv->ts_count, h->ts[0], in dvb_net_ule_new_ts_cell() 338 (h->ts[1] & TS_TEI) >> 7, in dvb_net_ule_new_ts_cell() 339 (h->ts[3] & TS_SC) >> 6); in dvb_net_ule_new_ts_cell() 342 if (h->priv->ule_skb) { in dvb_net_ule_new_ts_cell() 343 dev_kfree_skb(h->priv->ule_skb); in dvb_net_ule_new_ts_cell() 345 h->dev->stats.rx_errors++; in dvb_net_ule_new_ts_cell() [all …]
|
/Linux-v5.10/usr/include/ |
D | Makefile | 23 no-header-test += asm/shmbuf.h 24 no-header-test += asm/signal.h 25 no-header-test += asm/ucontext.h 26 no-header-test += drm/vmwgfx_drm.h 27 no-header-test += linux/am437x-vpfe.h 28 no-header-test += linux/android/binder.h 29 no-header-test += linux/android/binderfs.h 30 no-header-test += linux/coda.h 31 no-header-test += linux/errqueue.h 32 no-header-test += linux/fsmap.h [all …]
|
/Linux-v5.10/Documentation/userspace-api/ioctl/ |
D | ioctl-number.rst | 11 macros defined in <linux/ioctl.h>: 73 0x00 00-1F linux/fs.h conflict! 74 0x00 00-1F scsi/scsi_ioctl.h conflict! 75 0x00 00-1F linux/fb.h conflict! 76 0x00 00-1F linux/wavefront.h conflict! 77 0x02 all linux/fd.h 78 0x03 all linux/hdreg.h 79 0x04 D2-DC linux/umsdos_fs.h Dead since 2.6.11, but don't r… 80 0x06 all linux/lp.h 81 0x09 all linux/raid/md_u.h [all …]
|
/Linux-v5.10/fs/reiserfs/ |
D | ibalance.c | 29 int h, in internal_define_dest_src_infos() argument 42 src_bi->bi_bh = PATH_H_PBUFFER(tb->tb_path, h); in internal_define_dest_src_infos() 43 src_bi->bi_parent = PATH_H_PPARENT(tb->tb_path, h); in internal_define_dest_src_infos() 44 src_bi->bi_position = PATH_H_POSITION(tb->tb_path, h + 1); in internal_define_dest_src_infos() 46 dest_bi->bi_bh = tb->L[h]; in internal_define_dest_src_infos() 47 dest_bi->bi_parent = tb->FL[h]; in internal_define_dest_src_infos() 48 dest_bi->bi_position = get_left_neighbor_position(tb, h); in internal_define_dest_src_infos() 49 *d_key = tb->lkey[h]; in internal_define_dest_src_infos() 50 *cf = tb->CFL[h]; in internal_define_dest_src_infos() 54 src_bi->bi_bh = tb->L[h]; in internal_define_dest_src_infos() [all …]
|
D | fix_node.c | 51 static void create_virtual_node(struct tree_balance *tb, int h) in create_virtual_node() argument 58 Sh = PATH_H_PBUFFER(tb->tb_path, h); in create_virtual_node() 62 MAX_CHILD_SIZE(Sh) - B_FREE_SPACE(Sh) + tb->insert_size[h]; in create_virtual_node() 65 if (h) { in create_virtual_node() 194 static void check_left(struct tree_balance *tb, int h, int cur_free) in check_left() argument 204 if (h > 0) { in check_left() 205 tb->lnum[h] = cur_free / (DC_SIZE + KEY_SIZE); in check_left() 213 tb->lnum[h] = 0; in check_left() 280 static void check_right(struct tree_balance *tb, int h, int cur_free) in check_right() argument 290 if (h > 0) { in check_right() [all …]
|
/Linux-v5.10/Documentation/userspace-api/media/ |
D | Makefile | 10 FILES = audio.h.rst ca.h.rst dmx.h.rst frontend.h.rst net.h.rst video.h.rst \ 11 videodev2.h.rst media.h.rst cec.h.rst lirc.h.rst 24 $(BUILDDIR)/audio.h.rst: ${UAPI}/dvb/audio.h ${PARSER} $(SRC_DIR)/audio.h.rst.exceptions 27 $(BUILDDIR)/ca.h.rst: ${UAPI}/dvb/ca.h ${PARSER} $(SRC_DIR)/ca.h.rst.exceptions 30 $(BUILDDIR)/dmx.h.rst: ${UAPI}/dvb/dmx.h ${PARSER} $(SRC_DIR)/dmx.h.rst.exceptions 33 $(BUILDDIR)/frontend.h.rst: ${UAPI}/dvb/frontend.h ${PARSER} $(SRC_DIR)/frontend.h.rst.exceptions 36 $(BUILDDIR)/net.h.rst: ${UAPI}/dvb/net.h ${PARSER} $(SRC_DIR)/net.h.rst.exceptions 39 $(BUILDDIR)/video.h.rst: ${UAPI}/dvb/video.h ${PARSER} $(SRC_DIR)/video.h.rst.exceptions 42 $(BUILDDIR)/videodev2.h.rst: ${UAPI}/videodev2.h ${PARSER} $(SRC_DIR)/videodev2.h.rst.exceptions 45 $(BUILDDIR)/media.h.rst: ${UAPI}/media.h ${PARSER} $(SRC_DIR)/media.h.rst.exceptions [all …]
|
/Linux-v5.10/include/uapi/asm-generic/ |
D | Kbuild | 6 mandatory-y += auxvec.h 7 mandatory-y += bitsperlong.h 8 mandatory-y += bpf_perf_event.h 9 mandatory-y += byteorder.h 10 mandatory-y += errno.h 11 mandatory-y += fcntl.h 12 mandatory-y += ioctl.h 13 mandatory-y += ioctls.h 14 mandatory-y += ipcbuf.h 15 mandatory-y += mman.h [all …]
|
/Linux-v5.10/arch/um/include/asm/ |
D | Kbuild | 2 generic-y += bpf_perf_event.h 3 generic-y += bug.h 4 generic-y += compat.h 5 generic-y += current.h 6 generic-y += device.h 7 generic-y += emergency-restart.h 8 generic-y += exec.h 9 generic-y += extable.h 10 generic-y += ftrace.h 11 generic-y += futex.h [all …]
|
/Linux-v5.10/drivers/staging/media/zoran/ |
D | videocodec.c | 59 struct codec_list *h = codeclist_top; in videocodec_attach() local 72 if (!h) { in videocodec_attach() 77 while (h) { in videocodec_attach() 80 if ((master->flags & h->codec->flags) == master->flags) { in videocodec_attach() 81 dprintk(4, "%s: try '%s'\n", __func__, h->codec->name); in videocodec_attach() 83 if (!try_module_get(h->codec->owner)) in videocodec_attach() 86 codec = kmemdup(h->codec, sizeof(struct videocodec), GFP_KERNEL); in videocodec_attach() 91 snprintf(codec->name + res, sizeof(codec->name) - res, "[%d]", h->attached); in videocodec_attach() 101 a = h->list; in videocodec_attach() 103 h->list = ptr; in videocodec_attach() [all …]
|
/Linux-v5.10/Documentation/ |
D | dontdiff | 53 *.tab.h 67 53c700_d.h 82 af_names.h 83 aic7*reg.h* 85 aic7*seq.h* 87 aicdb.h* 89 asm-offsets.h 90 asm_offsets.h 91 autoconf.h* 92 av_permissions.h [all …]
|
/Linux-v5.10/tools/perf/util/ |
D | srccode.c | 92 struct srcfile *h; in find_srcfile() local 97 hlist_for_each_entry (h, &srcfile_htab[hval], hash_nd) { in find_srcfile() 98 if (!strcmp(fn, h->fn)) { in find_srcfile() 100 list_del(&h->nd); in find_srcfile() 101 list_add(&h->nd, &srcfile_list); in find_srcfile() 102 return h; in find_srcfile() 110 h = list_entry(srcfile_list.prev, struct srcfile, nd); in find_srcfile() 111 free_srcfile(h); in find_srcfile() 120 h = malloc(sizeof(struct srcfile)); in find_srcfile() 121 if (!h) in find_srcfile() [all …]
|
/Linux-v5.10/drivers/net/ethernet/hisilicon/hns3/ |
D | hns3_debugfs.c | 15 static int hns3_dbg_queue_info(struct hnae3_handle *h, in hns3_dbg_queue_info() argument 18 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(h->pdev); in hns3_dbg_queue_info() 19 struct hns3_nic_priv *priv = h->priv; in hns3_dbg_queue_info() 27 dev_err(&h->pdev->dev, "priv->ring is NULL\n"); in hns3_dbg_queue_info() 31 queue_max = h->kinfo.num_tqps; in hns3_dbg_queue_info() 38 dev_info(&h->pdev->dev, "queue info\n"); in hns3_dbg_queue_info() 40 if (queue_num >= h->kinfo.num_tqps) { in hns3_dbg_queue_info() 41 dev_err(&h->pdev->dev, in hns3_dbg_queue_info() 43 h->kinfo.num_tqps - 1); in hns3_dbg_queue_info() 56 ring = &priv->ring[(u32)(i + h->kinfo.num_tqps)]; in hns3_dbg_queue_info() [all …]
|
D | hns3_dcbnl.c | 9 struct hnae3_handle *h = hns3_get_handle(ndev); in hns3_dcbnl_ieee_getets() local 14 if (h->kinfo.dcb_ops->ieee_getets) in hns3_dcbnl_ieee_getets() 15 return h->kinfo.dcb_ops->ieee_getets(h, ets); in hns3_dcbnl_ieee_getets() 22 struct hnae3_handle *h = hns3_get_handle(ndev); in hns3_dcbnl_ieee_setets() local 27 if (h->kinfo.dcb_ops->ieee_setets) in hns3_dcbnl_ieee_setets() 28 return h->kinfo.dcb_ops->ieee_setets(h, ets); in hns3_dcbnl_ieee_setets() 35 struct hnae3_handle *h = hns3_get_handle(ndev); in hns3_dcbnl_ieee_getpfc() local 40 if (h->kinfo.dcb_ops->ieee_getpfc) in hns3_dcbnl_ieee_getpfc() 41 return h->kinfo.dcb_ops->ieee_getpfc(h, pfc); in hns3_dcbnl_ieee_getpfc() 48 struct hnae3_handle *h = hns3_get_handle(ndev); in hns3_dcbnl_ieee_setpfc() local [all …]
|
D | hns3_ethtool.c | 79 struct hnae3_handle *h = hns3_get_handle(ndev); in hns3_lp_setup() local 80 struct hnae3_ae_dev *ae_dev = pci_get_drvdata(h->pdev); in hns3_lp_setup() 84 if (!h->ae_algo->ops->set_loopback || in hns3_lp_setup() 85 !h->ae_algo->ops->set_promisc_mode) in hns3_lp_setup() 93 ret = h->ae_algo->ops->set_loopback(h, loop, en); in hns3_lp_setup() 104 h->ae_algo->ops->set_promisc_mode(h, true, true); in hns3_lp_setup() 107 hns3_request_update_promisc_mode(h); in hns3_lp_setup() 117 struct hnae3_handle *h = hns3_get_handle(ndev); in hns3_lp_up() local 120 ret = hns3_nic_reset_all_ring(h); in hns3_lp_up() 205 struct hnae3_handle *h = priv->ae_handle; in hns3_lb_check_rx_ring() local [all …]
|
/Linux-v5.10/mm/ |
D | hugetlb.c | 83 static int hugetlb_acct_memory(struct hstate *h, long delta); 102 struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages, in hugepage_new_subpool() argument 114 spool->hstate = h; in hugepage_new_subpool() 117 if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) { in hugepage_new_subpool() 264 struct hstate *h, in record_hugetlb_cgroup_uncharge_info() argument 271 &h_cg->rsvd_hugepage[hstate_index(h)]; in record_hugetlb_cgroup_uncharge_info() 274 resv->pages_per_hpage = pages_per_huge_page(h); in record_hugetlb_cgroup_uncharge_info() 278 VM_BUG_ON(resv->pages_per_hpage != pages_per_huge_page(h)); in record_hugetlb_cgroup_uncharge_info() 334 struct hstate *h, long *regions_needed) in add_reservation_in_range() argument 373 record_hugetlb_cgroup_uncharge_info(h_cg, h, in add_reservation_in_range() [all …]
|
/Linux-v5.10/drivers/clk/qcom/ |
D | clk-hfpll.c | 22 struct clk_hfpll *h = to_clk_hfpll(hw); in __clk_hfpll_init_once() local 23 struct hfpll_data const *hd = h->d; in __clk_hfpll_init_once() 24 struct regmap *regmap = h->clkr.regmap; in __clk_hfpll_init_once() 26 if (likely(h->init_done)) in __clk_hfpll_init_once() 50 h->init_done = true; in __clk_hfpll_init_once() 55 struct clk_hfpll *h = to_clk_hfpll(hw); in __clk_hfpll_enable() local 56 struct hfpll_data const *hd = h->d; in __clk_hfpll_enable() 57 struct regmap *regmap = h->clkr.regmap; in __clk_hfpll_enable() 91 struct clk_hfpll *h = to_clk_hfpll(hw); in clk_hfpll_enable() local 92 struct hfpll_data const *hd = h->d; in clk_hfpll_enable() [all …]
|
/Linux-v5.10/tools/lib/subcmd/ |
D | parse-options.h | 122 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument 123 #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) } argument 124 …ne OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value =… argument 125 …PT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value =… argument 126 …EAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value … argument 127 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument 129 .value = check_vtype(v, bool *), .help = (h), \ 131 …e OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value =… argument 132 …_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = che… argument 133 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument [all …]
|