/linux-4.1.27/net/sched/ |
D | cls_rsvp.h | 137 unsigned int h1, h2; in rsvp_classify() local 173 h2 = hash_src(src); in rsvp_classify() 188 for (f = rcu_dereference_bh(s->ht[h2]); f; in rsvp_classify() 232 unsigned int h2 = (h >> 8) & 0xFF; in rsvp_replace() local 236 for (ins = &s->ht[h2], pins = rtnl_dereference(*ins); ; in rsvp_replace() 258 unsigned int h2 = (handle >> 8) & 0xFF; in rsvp_get() local 260 if (h2 > 16) in rsvp_get() 265 for (f = rtnl_dereference(s->ht[h2]); f; in rsvp_get() 297 int h1, h2; in rsvp_destroy() local 317 for (h2 = 0; h2 <= 16; h2++) { in rsvp_destroy() [all …]
|
D | cls_route.c | 235 unsigned int h1, h2; in route4_get() local 244 h2 = from_hash(handle >> 16); in route4_get() 245 if (h2 > 32) in route4_get() 250 for (f = rtnl_dereference(b->ht[h2]); in route4_get() 283 int h1, h2; in route4_destroy() local 300 for (h2 = 0; h2 <= 32; h2++) { in route4_destroy() 303 while ((f = rtnl_dereference(b->ht[h2])) != NULL) { in route4_destroy() 307 RCU_INIT_POINTER(b->ht[h2], next); in route4_destroy() 439 unsigned int h2 = from_hash(nhandle >> 16); in route4_set_parms() local 442 for (fp = rtnl_dereference(b->ht[h2]); in route4_set_parms()
|
/linux-4.1.27/drivers/media/common/saa7146/ |
D | saa7146_i2c.c | 29 int h1, h2; in saa7146_i2c_msg_prepare() local 60 h1 = op_count/3; h2 = op_count%3; in saa7146_i2c_msg_prepare() 61 op[h1] |= cpu_to_le32( (u8)addr << ((3-h2)*8)); in saa7146_i2c_msg_prepare() 62 op[h1] |= cpu_to_le32(SAA7146_I2C_START << ((3-h2)*2)); in saa7146_i2c_msg_prepare() 68 h1 = op_count/3; h2 = op_count%3; in saa7146_i2c_msg_prepare() 69 op[h1] |= cpu_to_le32( (u32)((u8)m[i].buf[j]) << ((3-h2)*8)); in saa7146_i2c_msg_prepare() 70 op[h1] |= cpu_to_le32( SAA7146_I2C_CONT << ((3-h2)*2)); in saa7146_i2c_msg_prepare() 78 h1 = (op_count-1)/3; h2 = (op_count-1)%3; in saa7146_i2c_msg_prepare() 79 if ( SAA7146_I2C_CONT == (0x3 & (le32_to_cpu(op[h1]) >> ((3-h2)*2))) ) { in saa7146_i2c_msg_prepare() 80 op[h1] &= ~cpu_to_le32(0x2 << ((3-h2)*2)); in saa7146_i2c_msg_prepare() [all …]
|
/linux-4.1.27/arch/alpha/kernel/ |
D | console.c | 28 default_vga_hose_select(struct pci_controller *h1, struct pci_controller *h2) in default_vga_hose_select() argument 30 if (h2->index < h1->index) in default_vga_hose_select() 31 return h2; in default_vga_hose_select()
|
/linux-4.1.27/drivers/staging/lustre/include/linux/lnet/ |
D | types.h | 113 static inline int LNetHandleIsEqual(lnet_handle_any_t h1, lnet_handle_any_t h2) in LNetHandleIsEqual() argument 115 return h1.cookie == h2.cookie; in LNetHandleIsEqual()
|
/linux-4.1.27/arch/arm/mach-omap1/ |
D | Makefile | 31 obj-$(CONFIG_MACH_OMAP_H2) += board-h2.o board-h2-mmc.o \
|
/linux-4.1.27/include/linux/ |
D | vmw_vmci_defs.h | 144 struct vmci_handle h2) in vmci_handle_is_equal() argument 146 return h1.context == h2.context && h1.resource == h2.resource; in vmci_handle_is_equal()
|
/linux-4.1.27/net/netfilter/ |
D | nf_conntrack_core.c | 69 static void nf_conntrack_double_unlock(unsigned int h1, unsigned int h2) in nf_conntrack_double_unlock() argument 72 h2 %= CONNTRACK_LOCKS; in nf_conntrack_double_unlock() 74 if (h1 != h2) in nf_conntrack_double_unlock() 75 spin_unlock(&nf_conntrack_locks[h2]); in nf_conntrack_double_unlock() 80 unsigned int h2, unsigned int sequence) in nf_conntrack_double_lock() argument 83 h2 %= CONNTRACK_LOCKS; in nf_conntrack_double_lock() 84 if (h1 <= h2) { in nf_conntrack_double_lock() 86 if (h1 != h2) in nf_conntrack_double_lock() 87 spin_lock_nested(&nf_conntrack_locks[h2], in nf_conntrack_double_lock() 90 spin_lock(&nf_conntrack_locks[h2]); in nf_conntrack_double_lock() [all …]
|
/linux-4.1.27/net/packet/ |
D | af_packet.c | 163 struct tpacket2_hdr *h2; member 405 h.h2->tp_status = status; in __packet_set_status() 406 flush_dcache_page(pgv_to_page(&h.h2->tp_status)); in __packet_set_status() 429 flush_dcache_page(pgv_to_page(&h.h2->tp_status)); in __packet_get_status() 430 return h.h2->tp_status; in __packet_get_status() 472 h.h2->tp_sec = ts.tv_sec; in __packet_set_timestamp() 473 h.h2->tp_nsec = ts.tv_nsec; in __packet_set_timestamp() 1890 BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h.h2)) != 32); in tpacket_rcv() 2008 h.h2->tp_len = skb->len; in tpacket_rcv() 2009 h.h2->tp_snaplen = snaplen; in tpacket_rcv() [all …]
|
/linux-4.1.27/drivers/video/fbdev/matrox/ |
D | matroxfb_maven.c | 227 unsigned int* h2) { in matroxfb_PLL_mavenclock() argument 281 *h2 = besth2 = ln; in matroxfb_PLL_mavenclock() 735 uninitialized_var(h2); in maven_find_exact_clocks() 738 …nclock((m->mode == MATROXFB_OUTPUT_MODE_PAL) ? &maven_PAL : &maven_NTSC, h, vt, &a, &b, &c, &h2)) { in maven_find_exact_clocks() 739 unsigned int diff = h - h2; in maven_find_exact_clocks() 746 m->hcorr = h2 - 2; in maven_find_exact_clocks()
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 79 # r7 = {h7 h6 h5 h4 h3 h2 h1 h0} 84 # r2 = {h2 g2 f2 e2 d2 c2 b2 a2} 108 vshufps $0xEE, \r7, \r6, \r6 # r6 = {h7 h6 g7 g6 h3 h2 g3 g2} 110 vshufps $0x88, \r6, \r4, \r5 # r5 = {h6 g6 f6 e6 h2 g2 f2 e2} 115 vperm2f128 $0x02, \r1, \r5, \r2 # h2...a2
|
/linux-4.1.27/arch/mips/boot/ |
D | elf2ecoff.c | 121 const Elf32_Phdr *h2 = v2; in phcmp() local 123 if (h1->p_vaddr > h2->p_vaddr) in phcmp() 125 else if (h1->p_vaddr < h2->p_vaddr) in phcmp()
|
/linux-4.1.27/drivers/tty/serial/ |
D | ifx6x60.c | 390 u16 h2; in ifx_spi_decode_spi_header() local 394 h2 = *(in_buffer+1); in ifx_spi_decode_spi_header() 396 if (h1 == 0 && h2 == 0) { in ifx_spi_decode_spi_header() 399 } else if (h1 == 0xffff && h2 == 0xffff) { in ifx_spi_decode_spi_header()
|
/linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
D | dm365_resizer.c | 366 unsigned int h2; in resizer_calculate_down_scale_f_div_param() local 398 h2 = output_width - h1; in resizer_calculate_down_scale_f_div_param() 409 param->f_div.pass[1].o_hsz = h2 - 1; in resizer_calculate_down_scale_f_div_param() 621 unsigned int h2; in resizer_calculate_normal_f_div_param() local 644 h2 = output_width - h1; in resizer_calculate_normal_f_div_param() 655 param->f_div.pass[1].o_hsz = h2 - 1; in resizer_calculate_normal_f_div_param()
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_fimc.c | 595 u32 cfg, h1, h2, v1, v2; in fimc_set_window() local 599 h2 = sz->hsize - pos->w - pos->x; in fimc_set_window() 605 DRM_DEBUG_KMS("h1[%d]h2[%d]v1[%d]v2[%d]\n", h1, h2, v1, v2); in fimc_set_window() 619 cfg = (EXYNOS_CIWDOFST2_WINHOROFST2(h2) | in fimc_set_window()
|
/linux-4.1.27/security/keys/ |
D | trusted.c | 125 unsigned char *h2, unsigned char h3, ...) in TSS_authhmac() argument 165 TPM_NONCE_SIZE, h2, 1, &c, 0, 0); in TSS_authhmac()
|
/linux-4.1.27/Documentation/trace/ |
D | ftrace.txt | 1141 bash-1994 1d.h2 14us : ktime_get_update_offsets <-hrtimer_interrupt 1325 ls-2269 3d.h2 9us : exit_idle <-do_IRQ 1328 ls-2269 3d.h2 20us : irq_exit <-do_IRQ 1329 ls-2269 3d.h2 21us : sub_preempt_count <-irq_exit
|