/linux-4.4.14/net/netfilter/ |
D | xt_dccp.c | 40 const struct dccp_hdr *dh, in dccp_find_option() argument 45 unsigned int optoff = __dccp_hdr_len(dh); in dccp_find_option() 46 unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh); in dccp_find_option() 49 if (dh->dccph_doff * 4 < __dccp_hdr_len(dh)) in dccp_find_option() 86 match_types(const struct dccp_hdr *dh, u_int16_t typemask) in match_types() argument 88 return typemask & (1 << dh->dccph_type); in match_types() 93 const struct dccp_hdr *dh, bool *hotdrop) in match_option() argument 95 return dccp_find_option(option, skb, protoff, dh, hotdrop); in match_option() 102 const struct dccp_hdr *dh; in dccp_mt() local 108 dh = skb_header_pointer(skb, par->thoff, sizeof(_dh), &_dh); in dccp_mt() [all …]
|
D | xt_hashlimit.c | 304 struct dsthash_ent *dh; in htable_selective_cleanup() local 308 hlist_for_each_entry_safe(dh, n, &ht->hash[i], node) { in htable_selective_cleanup() 309 if ((*select)(ht, dh)) in htable_selective_cleanup() 310 dsthash_free(ht, dh); in htable_selective_cleanup() 445 static void rateinfo_recalc(struct dsthash_ent *dh, unsigned long now, u32 mode) in rateinfo_recalc() argument 447 unsigned long delta = now - dh->rateinfo.prev; in rateinfo_recalc() 453 dh->rateinfo.prev = now; in rateinfo_recalc() 456 u32 tmp = dh->rateinfo.credit; in rateinfo_recalc() 457 dh->rateinfo.credit += CREDITS_PER_JIFFY_BYTES * delta; in rateinfo_recalc() 459 if (tmp >= dh->rateinfo.credit) {/* overflow */ in rateinfo_recalc() [all …]
|
D | nf_conntrack_proto_dccp.c | 403 struct dccp_hdr _hdr, *dh; in dccp_pkt_to_tuple() local 405 dh = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr); in dccp_pkt_to_tuple() 406 if (dh == NULL) in dccp_pkt_to_tuple() 409 tuple->src.u.dccp.port = dh->dccph_sport; in dccp_pkt_to_tuple() 410 tuple->dst.u.dccp.port = dh->dccph_dport; in dccp_pkt_to_tuple() 427 struct dccp_hdr _dh, *dh; in dccp_new() local 431 dh = skb_header_pointer(skb, dataoff, sizeof(_dh), &_dh); in dccp_new() 432 BUG_ON(dh == NULL); in dccp_new() 434 state = dccp_state_table[CT_DCCP_ROLE_CLIENT][dh->dccph_type][CT_DCCP_NONE]; in dccp_new() 464 static u64 dccp_ack_seq(const struct dccp_hdr *dh) in dccp_ack_seq() argument [all …]
|
/linux-4.4.14/net/dccp/ |
D | input.c | 191 const struct dccp_hdr *dh = dccp_hdr(skb); in dccp_check_seqno() local 208 if (dh->dccph_type == DCCP_PKT_SYNC || in dccp_check_seqno() 209 dh->dccph_type == DCCP_PKT_SYNCACK) { in dccp_check_seqno() 231 if (dh->dccph_type == DCCP_PKT_CLOSEREQ || in dccp_check_seqno() 232 dh->dccph_type == DCCP_PKT_CLOSE || in dccp_check_seqno() 233 dh->dccph_type == DCCP_PKT_RESET) { in dccp_check_seqno() 243 if (dh->dccph_type != DCCP_PKT_SYNC && in dccp_check_seqno() 268 "sending SYNC...\n", dccp_packet_name(dh->dccph_type), in dccp_check_seqno() 278 if (dh->dccph_type == DCCP_PKT_RESET) in dccp_check_seqno() 288 const struct dccp_hdr *dh, const unsigned int len) in __dccp_rcv_established() argument [all …]
|
D | output.c | 52 struct dccp_hdr *dh; in dccp_transmit_skb() local 54 const u32 dccp_header_size = sizeof(*dh) + in dccp_transmit_skb() 103 dh = dccp_zeroed_hdr(skb, dccp_header_size); in dccp_transmit_skb() 104 dh->dccph_type = dcb->dccpd_type; in dccp_transmit_skb() 105 dh->dccph_sport = inet->inet_sport; in dccp_transmit_skb() 106 dh->dccph_dport = inet->inet_dport; in dccp_transmit_skb() 107 dh->dccph_doff = (dccp_header_size + dcb->dccpd_opt_len) / 4; in dccp_transmit_skb() 108 dh->dccph_ccval = dcb->dccpd_ccval; in dccp_transmit_skb() 109 dh->dccph_cscov = dp->dccps_pcslen; in dccp_transmit_skb() 111 dh->dccph_x = 1; in dccp_transmit_skb() [all …]
|
D | ipv4.c | 238 const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset); in dccp_v4_err() local 248 if (skb->len < offset + sizeof(*dh) || in dccp_v4_err() 249 skb->len < offset + __dccp_basic_hdr_len(dh)) { in dccp_v4_err() 255 iph->daddr, dh->dccph_dport, in dccp_v4_err() 256 iph->saddr, ntohs(dh->dccph_sport), in dccp_v4_err() 267 seq = dccp_hdr_seq(dh); in dccp_v4_err() 368 struct dccp_hdr *dh = dccp_hdr(skb); in dccp_v4_send_check() local 371 dh->dccph_checksum = dccp_v4_csum_finish(skb, in dccp_v4_send_check() 486 struct dccp_hdr *dh = dccp_hdr(skb); in dccp_v4_send_response() local 488 dh->dccph_checksum = dccp_v4_csum_finish(skb, ireq->ir_loc_addr, in dccp_v4_send_response() [all …]
|
D | ipv6.c | 54 struct dccp_hdr *dh = dccp_hdr(skb); in dccp_v6_send_check() local 57 dh->dccph_checksum = dccp_v6_csum_finish(skb, &np->saddr, &sk->sk_v6_daddr); in dccp_v6_send_check() 73 const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset); in dccp_v6_err() local 81 if (skb->len < offset + sizeof(*dh) || in dccp_v6_err() 82 skb->len < offset + __dccp_basic_hdr_len(dh)) { in dccp_v6_err() 89 &hdr->daddr, dh->dccph_dport, in dccp_v6_err() 90 &hdr->saddr, ntohs(dh->dccph_sport), in dccp_v6_err() 103 seq = dccp_hdr_seq(dh); in dccp_v6_err() 218 struct dccp_hdr *dh = dccp_hdr(skb); in dccp_v6_send_response() local 220 dh->dccph_checksum = dccp_v6_csum_finish(skb, in dccp_v6_send_response() [all …]
|
D | dccp.h | 210 const struct dccp_hdr* dh = dccp_hdr(skb); in dccp_csum_coverage() local 212 if (dh->dccph_cscov == 0) in dccp_csum_coverage() 214 return (dh->dccph_doff + dh->dccph_cscov - 1) * sizeof(u32); in dccp_csum_coverage() 290 struct dccp_hdr *dh, unsigned int len); 292 const struct dccp_hdr *dh, const unsigned int len); 403 static inline void dccp_hdr_set_seq(struct dccp_hdr *dh, const u64 gss) in dccp_hdr_set_seq() argument 405 struct dccp_hdr_ext *dhx = (struct dccp_hdr_ext *)((void *)dh + in dccp_hdr_set_seq() 406 sizeof(*dh)); in dccp_hdr_set_seq() 407 dh->dccph_seq2 = 0; in dccp_hdr_set_seq() 408 dh->dccph_seq = htons((gss >> 32) & 0xfffff); in dccp_hdr_set_seq()
|
D | options.c | 55 const struct dccp_hdr *dh = dccp_hdr(skb); in dccp_parse_options() local 57 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb); in dccp_parse_options() 59 const unsigned char *opt_end = (unsigned char *)dh + in dccp_parse_options() 60 (dh->dccph_doff * 4); in dccp_parse_options()
|
D | proto.c | 810 const struct dccp_hdr *dh; in dccp_recvmsg() local 828 dh = dccp_hdr(skb); in dccp_recvmsg() 830 switch (dh->dccph_type) { in dccp_recvmsg() 842 dccp_packet_name(dh->dccph_type)); in dccp_recvmsg() 847 dccp_packet_name(dh->dccph_type)); in dccp_recvmsg()
|
/linux-4.4.14/include/linux/ |
D | dccp.h | 77 static inline struct dccp_hdr_ext *dccp_hdrx(const struct dccp_hdr *dh) in dccp_hdrx() argument 79 return (struct dccp_hdr_ext *)((unsigned char *)dh + sizeof(*dh)); in dccp_hdrx() 82 static inline unsigned int __dccp_basic_hdr_len(const struct dccp_hdr *dh) in __dccp_basic_hdr_len() argument 84 return sizeof(*dh) + (dh->dccph_x ? sizeof(struct dccp_hdr_ext) : 0); in __dccp_basic_hdr_len() 89 const struct dccp_hdr *dh = dccp_hdr(skb); in dccp_basic_hdr_len() local 90 return __dccp_basic_hdr_len(dh); in dccp_basic_hdr_len() 93 static inline __u64 dccp_hdr_seq(const struct dccp_hdr *dh) in dccp_hdr_seq() argument 95 __u64 seq_nr = ntohs(dh->dccph_seq); in dccp_hdr_seq() 97 if (dh->dccph_x != 0) in dccp_hdr_seq() 98 seq_nr = (seq_nr << 32) + ntohl(dccp_hdrx(dh)->dccph_seq_low); in dccp_hdr_seq() [all …]
|
/linux-4.4.14/drivers/firmware/ |
D | dmi-sysfs.c | 33 struct dmi_header dh; member 68 const struct dmi_header *dh, 114 const struct dmi_header *dh, void *); 124 static void find_dmi_entry_helper(const struct dmi_header *dh, in find_dmi_entry_helper() argument 131 if (dh->type != entry->dh.type) in find_dmi_entry_helper() 147 data->ret = data->callback(entry, dh, data->private); in find_dmi_entry_helper() 181 static size_t dmi_entry_length(const struct dmi_header *dh) in dmi_entry_length() argument 183 const char *p = (const char *)dh; in dmi_entry_length() 185 p += dh->length; in dmi_entry_length() 190 return 2 + p - (const char *)dh; in dmi_entry_length() [all …]
|
/linux-4.4.14/fs/quota/ |
D | quota_tree.c | 80 struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf; in get_free_dqblk() local 90 info->dqi_free_blk = le32_to_cpu(dh->dqdh_next_free); in get_free_dqblk() 110 struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf; in put_free_dqblk() local 113 dh->dqdh_next_free = cpu_to_le32(info->dqi_free_blk); in put_free_dqblk() 114 dh->dqdh_prev_free = cpu_to_le32(0); in put_free_dqblk() 115 dh->dqdh_entries = cpu_to_le16(0); in put_free_dqblk() 129 struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf; in remove_free_dqentry() local 130 uint nextblk = le32_to_cpu(dh->dqdh_next_free); in remove_free_dqentry() 131 uint prevblk = le32_to_cpu(dh->dqdh_prev_free); in remove_free_dqentry() 141 dh->dqdh_prev_free; in remove_free_dqentry() [all …]
|
/linux-4.4.14/security/ |
D | lsm_audit.c | 81 struct dccp_hdr *dh = dccp_hdr(skb); in ipv4_skb_to_auditdata() local 82 if (dh == NULL) in ipv4_skb_to_auditdata() 85 ad->u.net->sport = dh->dccph_sport; in ipv4_skb_to_auditdata() 86 ad->u.net->dport = dh->dccph_dport; in ipv4_skb_to_auditdata() 159 struct dccp_hdr _dccph, *dh; in ipv6_skb_to_auditdata() local 161 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph); in ipv6_skb_to_auditdata() 162 if (dh == NULL) in ipv6_skb_to_auditdata() 165 ad->u.net->sport = dh->dccph_sport; in ipv6_skb_to_auditdata() 166 ad->u.net->dport = dh->dccph_dport; in ipv6_skb_to_auditdata()
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | overlay.c | 154 u16 dw, dh; in dss_ovl_check() local 157 dh = mgr_timings->y_res; in dss_ovl_check() 181 if (dh < info->pos_y + outh) { in dss_ovl_check() 184 ovl->id, info->pos_y, outh, dh); in dss_ovl_check()
|
D | dsi.c | 4061 u16 dw, dh; in dsi_update() local 4071 dh = dsi->timings.y_res; in dsi_update() 4074 dsi->update_bytes = dw * dh * in dsi_update()
|
/linux-4.4.14/drivers/md/ |
D | dm-snap-persistent.c | 311 struct disk_header *dh; in read_header() local 341 dh = ps->header_area; in read_header() 343 if (le32_to_cpu(dh->magic) == 0) { in read_header() 348 if (le32_to_cpu(dh->magic) != SNAP_MAGIC) { in read_header() 355 ps->valid = le32_to_cpu(dh->valid); in read_header() 356 ps->version = le32_to_cpu(dh->version); in read_header() 357 chunk_size = le32_to_cpu(dh->chunk_size); in read_header() 388 struct disk_header *dh; in write_header() local 392 dh = ps->header_area; in write_header() 393 dh->magic = cpu_to_le32(SNAP_MAGIC); in write_header() [all …]
|
/linux-4.4.14/include/drm/ |
D | drm_rect.h | 57 static inline void drm_rect_adjust_size(struct drm_rect *r, int dw, int dh) in drm_rect_adjust_size() argument 60 r->y1 -= dh >> 1; in drm_rect_adjust_size() 62 r->y2 += (dh + 1) >> 1; in drm_rect_adjust_size()
|
/linux-4.4.14/drivers/scsi/ |
D | scsi_dh.c | 110 struct scsi_device_handler *dh; in scsi_dh_lookup() local 112 dh = __scsi_dh_lookup(name); in scsi_dh_lookup() 113 if (!dh) { in scsi_dh_lookup() 115 dh = __scsi_dh_lookup(name); in scsi_dh_lookup() 118 return dh; in scsi_dh_lookup()
|
/linux-4.4.14/drivers/staging/lustre/lustre/libcfs/ |
D | hash.c | 353 struct cfs_hash_dhead *dh; in cfs_hash_dh_hnode_add() local 355 dh = container_of(cfs_hash_dh_hhead(hs, bd), in cfs_hash_dh_hnode_add() 357 if (dh->dh_tail != NULL) /* not empty */ in cfs_hash_dh_hnode_add() 358 hlist_add_behind(hnode, dh->dh_tail); in cfs_hash_dh_hnode_add() 360 hlist_add_head(hnode, &dh->dh_head); in cfs_hash_dh_hnode_add() 361 dh->dh_tail = hnode; in cfs_hash_dh_hnode_add() 369 struct cfs_hash_dhead *dh; in cfs_hash_dh_hnode_del() local 371 dh = container_of(cfs_hash_dh_hhead(hs, bd), in cfs_hash_dh_hnode_del() 374 dh->dh_tail = (hnd->pprev == &dh->dh_head.first) ? NULL : in cfs_hash_dh_hnode_del() 410 struct cfs_hash_dhead_dep *dh; in cfs_hash_dd_hnode_add() local [all …]
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-driver-hid-wiimote | 7 Contact: David Herrmann <dh.herrmann@googlemail.com> 15 Contact: David Herrmann <dh.herrmann@gmail.com> 31 Contact: David Herrmann <dh.herrmann@gmail.com> 49 Contact: David Herrmann <dh.herrmann@gmail.com> 64 Contact: David Herrmann <dh.herrmann@gmail.com>
|
/linux-4.4.14/drivers/edac/ |
D | ghes_edac.c | 69 static void ghes_edac_count_dimms(const struct dmi_header *dh, void *arg) in ghes_edac_count_dimms() argument 73 if (dh->type == DMI_ENTRY_MEM_DEVICE) in ghes_edac_count_dimms() 77 static void ghes_edac_dmidecode(const struct dmi_header *dh, void *arg) in ghes_edac_dmidecode() argument 82 if (dh->type == DMI_ENTRY_MEM_DEVICE) { in ghes_edac_dmidecode() 83 struct memdev_dmi_entry *entry = (struct memdev_dmi_entry *)dh; in ghes_edac_dmidecode()
|
D | i7core_edac.c | 1940 static void decode_dclk(const struct dmi_header *dh, void *_dclk_freq) in decode_dclk() argument 1948 if (dh->type == DMI_ENTRY_MEM_DEVICE) { in decode_dclk() 1950 (struct memdev_dmi_entry *)dh; in decode_dclk()
|
/linux-4.4.14/net/dccp/ccids/lib/ |
D | packet_history.c | 114 const struct dccp_hdr *dh = dccp_hdr(skb); in tfrc_rx_hist_entry_from_skb() local 117 entry->tfrchrx_ccval = dh->dccph_ccval; in tfrc_rx_hist_entry_from_skb() 118 entry->tfrchrx_type = dh->dccph_type; in tfrc_rx_hist_entry_from_skb()
|
/linux-4.4.14/drivers/video/fbdev/mb862xx/ |
D | mb862xxfbdrv.c | 331 if (l1_cfg->dh == 0 || l1_cfg->dw == 0) in mb862xxfb_ioctl() 333 if ((l1_cfg->sw >= l1_cfg->dw) && (l1_cfg->sh >= l1_cfg->dh)) { in mb862xxfb_ioctl() 336 pack((l1_cfg->sh << 11) / l1_cfg->dh, in mb862xxfb_ioctl() 341 (l1_cfg->sh <= l1_cfg->dh)) { in mb862xxfb_ioctl() 344 pack((l1_cfg->sh << 11) / l1_cfg->dh, in mb862xxfb_ioctl() 349 pack(l1_cfg->dw >> 1, l1_cfg->dh)); in mb862xxfb_ioctl() 378 pack(l1_cfg->dh - 1, l1_cfg->dw)); in mb862xxfb_ioctl() 534 par->l1_cfg.dh = 576; in mb862xxfb_init_fbinfo()
|
D | mb862xxfb.h | 12 unsigned short dh; member
|
/linux-4.4.14/arch/x86/boot/ |
D | video.c | 33 boot_params.screen_info.orig_y = oreg.dh; in store_cursor_position() 312 ireg.dh = saved.cury; in restore_screen()
|
D | tty.c | 82 return oreg.dh; in gettime()
|
D | edd.c | 115 ei->legacy_max_head = oreg.dh; in get_edd_info()
|
D | boot.h | 264 u8 dl, dh, edx2, edx3; member
|
/linux-4.4.14/drivers/usb/misc/sisusbvga/ |
D | sisusb_init.c | 739 unsigned short al, unsigned short dh) in SiS_WriteDAC() argument 745 d1 = dh; in SiS_WriteDAC() 752 d3 = dh; in SiS_WriteDAC() 756 d2 = dh; in SiS_WriteDAC()
|
/linux-4.4.14/drivers/video/fbdev/omap2/omapfb/ |
D | omapfb-ioctl.c | 293 u16 dw, dh; in omapfb_update_window() local 301 display->driver->get_resolution(display, &dw, &dh); in omapfb_update_window() 303 if (x + w > dw || y + h > dh) in omapfb_update_window()
|
/linux-4.4.14/fs/ncpfs/ |
D | inode.c | 809 __u8 dh; in ncp_statfs() local 831 err = ncp_dirhandle_alloc(s, ni->volNumber, ni->DosDirNum, &dh); in ncp_statfs() 835 err = ncp_get_directory_info(s, dh, &vi); in ncp_statfs() 836 ncp_dirhandle_free(s, dh); in ncp_statfs()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_nl.c | 3071 struct drbd_genlmsghdr *dh; in get_one_status() local 3134 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, in get_one_status() 3137 if (!dh) in get_one_status() 3146 dh->minor = -1U; in get_one_status() 3147 dh->ret_code = NO_ERROR; in get_one_status() 3164 dh->minor = device_to_minor(device); in get_one_status() 3165 dh->ret_code = NO_ERROR; in get_one_status() 3169 genlmsg_cancel(skb, dh); in get_one_status() 3173 genlmsg_end(skb, dh); in get_one_status() 3462 struct drbd_genlmsghdr *dh = info->userhdr; in drbd_adm_new_minor() local [all …]
|
/linux-4.4.14/drivers/media/platform/exynos4-is/ |
D | fimc-core.c | 217 int dw, int dh, int rotation) in fimc_check_scaler_ratio() argument 220 swap(dw, dh); in fimc_check_scaler_ratio() 223 return (sw == dw && sh == dh) ? 0 : -EINVAL; in fimc_check_scaler_ratio() 225 if ((sw >= SCALER_MAX_HRATIO * dw) || (sh >= SCALER_MAX_VRATIO * dh)) in fimc_check_scaler_ratio()
|
D | fimc-core.h | 634 int dw, int dh, int rotation);
|
/linux-4.4.14/arch/x86/crypto/ |
D | blowfish-x86_64-asm_64.S | 57 #define RX3bh %dh
|
D | aes-x86_64-asm_64.S | 39 #define R4H %dh
|
D | aes-i586-asm_32.S | 70 #define edxh dh
|
D | twofish-x86_64-asm_64.S | 60 #define R3H %dh
|
D | twofish-i586-asm_32.S | 62 #define R3H %dh
|
D | cast6-avx-x86_64-asm_64.S | 79 #define RGI1bh %dh
|
D | twofish-avx-x86_64-asm_64.S | 83 #define RGI1bh %dh
|
D | camellia-x86_64-asm_64.S | 75 #define RCD1bh %dh
|
D | cast5-avx-x86_64-asm_64.S | 79 #define RGI1bh %dh
|
/linux-4.4.14/drivers/media/platform/exynos-gsc/ |
D | gsc-core.c | 609 int dh, int rot, int out_path) in gsc_check_scaler_ratio() argument 619 tmp_w = dh; in gsc_check_scaler_ratio() 623 tmp_h = dh; in gsc_check_scaler_ratio()
|
D | gsc-core.h | 407 int dh, int rot, int out_path);
|
/linux-4.4.14/drivers/staging/xgifb/ |
D | vb_setmode.c | 1081 unsigned short dh, in XGI_WriteDAC() argument 1090 swap(bh, dh); in XGI_WriteDAC() 1092 swap(bl, dh); in XGI_WriteDAC() 1096 outb((unsigned short) dh, pVBInfo->P3c9); in XGI_WriteDAC() 1103 unsigned short data, data2, i, k, m, n, o, si, di, bx, dl, al, ah, dh; in XGI_LoadDAC() local 1142 dh = table[si]; in XGI_LoadDAC() 1146 XGI_WriteDAC(dl, ah, al, dh, pVBInfo); in XGI_LoadDAC() 1152 dh = table[bx]; in XGI_LoadDAC() 1156 XGI_WriteDAC(dl, ah, al, dh, pVBInfo); in XGI_LoadDAC()
|
/linux-4.4.14/security/selinux/ |
D | hooks.c | 3811 struct dccp_hdr _dccph, *dh; in selinux_parse_skb_ipv4() local 3817 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph); in selinux_parse_skb_ipv4() 3818 if (dh == NULL) in selinux_parse_skb_ipv4() 3821 ad->u.net->sport = dh->dccph_sport; in selinux_parse_skb_ipv4() 3822 ad->u.net->dport = dh->dccph_dport; in selinux_parse_skb_ipv4() 3888 struct dccp_hdr _dccph, *dh; in selinux_parse_skb_ipv6() local 3890 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph); in selinux_parse_skb_ipv6() 3891 if (dh == NULL) in selinux_parse_skb_ipv6() 3894 ad->u.net->sport = dh->dccph_sport; in selinux_parse_skb_ipv6() 3895 ad->u.net->dport = dh->dccph_dport; in selinux_parse_skb_ipv6()
|
/linux-4.4.14/Documentation/input/ |
D | gamepad.txt | 159 Written 2013 by David Herrmann <dh.herrmann@gmail.com>
|
/linux-4.4.14/drivers/video/fbdev/sis/ |
D | init.c | 2859 unsigned short dl, unsigned short ah, unsigned short al, unsigned short dh) in SiS_WriteDAC() argument 2864 case 0: d1 = dh; d2 = ah; d3 = al; break; in SiS_WriteDAC() 2865 case 1: d1 = ah; d2 = al; d3 = dh; break; in SiS_WriteDAC() 2866 default: d1 = al; d2 = dh; d3 = ah; in SiS_WriteDAC()
|
/linux-4.4.14/security/smack/ |
D | smack_lsm.c | 3874 struct dccp_hdr _dccph, *dh; in smk_skb_to_addr_ipv6() local 3903 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph); in smk_skb_to_addr_ipv6() 3904 if (dh != NULL) in smk_skb_to_addr_ipv6() 3905 sip->sin6_port = dh->dccph_sport; in smk_skb_to_addr_ipv6()
|
/linux-4.4.14/Documentation/hid/ |
D | uhid.txt | 187 Written 2012, David Herrmann <dh.herrmann@gmail.com>
|
D | hid-transport.txt | 317 Written 2013, David Herrmann <dh.herrmann@gmail.com>
|
/linux-4.4.14/arch/x86/entry/ |
D | entry_32.S | 419 mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */
|
/linux-4.4.14/drivers/net/ethernet/sun/ |
D | niu.c | 9585 dma_addr_t dh; in niu_pci_alloc_coherent() local 9588 ret = dma_alloc_coherent(dev, size, &dh, flag); in niu_pci_alloc_coherent() 9590 *handle = dh; in niu_pci_alloc_coherent()
|
/linux-4.4.14/ |
D | MAINTAINERS | 10988 M: David Herrmann <dh.herrmann@googlemail.com> 11641 M: David Herrmann <dh.herrmann@googlemail.com>
|