Searched refs:h1 (Results 1 - 45 of 45) sorted by relevance

/linux-4.4.14/crypto/
H A Dpoly1305_generic.c110 u32 h0, h1, h2, h3, h4; poly1305_blocks() local
132 h1 = dctx->h[1]; poly1305_blocks()
141 h1 += (le32_to_cpuvp(src + 3) >> 2) & 0x3ffffff; poly1305_blocks()
147 d0 = mlt(h0, r0) + mlt(h1, s4) + mlt(h2, s3) + poly1305_blocks()
149 d1 = mlt(h0, r1) + mlt(h1, r0) + mlt(h2, s4) + poly1305_blocks()
151 d2 = mlt(h0, r2) + mlt(h1, r1) + mlt(h2, r0) + poly1305_blocks()
153 d3 = mlt(h0, r3) + mlt(h1, r2) + mlt(h2, r1) + poly1305_blocks()
155 d4 = mlt(h0, r4) + mlt(h1, r3) + mlt(h2, r2) + poly1305_blocks()
160 d2 += sr(d1, 26); h1 = and(d1, 0x3ffffff); poly1305_blocks()
164 h1 += h0 >> 26; h0 = h0 & 0x3ffffff; poly1305_blocks()
171 dctx->h[1] = h1; poly1305_blocks()
218 u32 h0, h1, h2, h3, h4; crypto_poly1305_final() local
235 h1 = dctx->h[1]; crypto_poly1305_final()
240 h2 += (h1 >> 26); h1 = h1 & 0x3ffffff; crypto_poly1305_final()
244 h1 += (h0 >> 26); h0 = h0 & 0x3ffffff; crypto_poly1305_final()
248 g1 = h1 + (g0 >> 26); g0 &= 0x3ffffff; crypto_poly1305_final()
262 h1 = (h1 & mask) | g1; crypto_poly1305_final()
268 h0 = (h0 >> 0) | (h1 << 26); crypto_poly1305_final()
269 h1 = (h1 >> 6) | (h2 << 20); crypto_poly1305_final()
275 f = (f >> 32) + h1 + dctx->s[1]; mac[1] = cpu_to_le32(f); crypto_poly1305_final()
/linux-4.4.14/fs/reiserfs/
H A Dhashes.c23 /* a, b, c, d - data; h0, h1 - accumulated hash */
31 b1 = h1; \
41 h1 += b1; \
48 u32 h0 = k[0], h1 = k[1]; keyed_hash() local
121 return h0 ^ h1; keyed_hash()
/linux-4.4.14/net/sched/
H A Dcls_route.c235 unsigned int h1, h2; route4_get() local
240 h1 = to_hash(handle); route4_get()
241 if (h1 > 256) route4_get()
248 b = rtnl_dereference(head->table[h1]); route4_get()
283 int h1, h2; route4_destroy() local
289 for (h1 = 0; h1 <= 256; h1++) { route4_destroy()
290 if (rcu_access_pointer(head->table[h1])) route4_destroy()
295 for (h1 = 0; h1 <= 256; h1++) { route4_destroy()
298 b = rtnl_dereference(head->table[h1]); route4_destroy()
312 RCU_INIT_POINTER(head->table[h1], NULL); route4_destroy()
389 unsigned int h1; route4_set_parms() local
429 h1 = to_hash(nhandle); route4_set_parms()
430 b = rtnl_dereference(head->table[h1]); route4_set_parms()
437 rcu_assign_pointer(head->table[h1], b); route4_set_parms()
567 unsigned int h, h1; route4_walk() local
579 for (h1 = 0; h1 <= 32; h1++) { route4_walk()
582 for (f = rtnl_dereference(b->ht[h1]); route4_walk()
H A Dcls_rsvp.h137 unsigned int h1, h2; rsvp_classify() local
172 h1 = hash_dst(dst, protocol, tunnelid); rsvp_classify()
175 for (s = rcu_dereference_bh(head->ht[h1]); s; rsvp_classify()
231 unsigned int h1 = h & 0xFF; rsvp_replace() local
234 for (s = rtnl_dereference(head->ht[h1]); s; rsvp_replace()
257 unsigned int h1 = handle & 0xFF; rsvp_get() local
263 for (s = rtnl_dereference(head->ht[h1]); s; rsvp_get()
307 int h1, h2; rsvp_destroy() local
313 for (h1 = 0; h1 < 256; h1++) { rsvp_destroy()
314 if (rcu_access_pointer(data->ht[h1])) rsvp_destroy()
321 for (h1 = 0; h1 < 256; h1++) { rsvp_destroy()
324 while ((s = rtnl_dereference(data->ht[h1])) != NULL) { rsvp_destroy()
325 RCU_INIT_POINTER(data->ht[h1], s->next); rsvp_destroy()
414 int h1, h2; tunnel_recycle() local
418 for (h1 = 0; h1 < 256; h1++) { tunnel_recycle()
420 for (s = rtnl_dereference(sht[h1]); s; tunnel_recycle()
479 unsigned int h1, h2; rsvp_change() local
548 h1 = hash_dst(dst, pinfo ? pinfo->protocol : 0, pinfo ? pinfo->tunnelid : 0); rsvp_change()
551 if ((f->handle = gen_handle(tp, h1 | (h2<<8))) == 0) rsvp_change()
565 for (sp = &data->ht[h1]; rsvp_change()
618 sp = &data->ht[h1]; rsvp_change()
639 unsigned int h, h1; rsvp_walk() local
649 for (h1 = 0; h1 <= 16; h1++) { rsvp_walk()
652 for (f = rtnl_dereference(s->ht[h1]); f; rsvp_walk()
/linux-4.4.14/arch/alpha/kernel/
H A Dconsole.c28 default_vga_hose_select(struct pci_controller *h1, struct pci_controller *h2) default_vga_hose_select() argument
30 if (h2->index < h1->index) default_vga_hose_select()
33 return h1; default_vga_hose_select()
/linux-4.4.14/arch/x86/crypto/
H A Dpoly1305-sse2-x86_64.S23 #define h1 0x04(%rdi) define
82 # h01 = [0, h1, 0, h0]
86 movd h1,t1
118 # t1[1] = h1 * s4 + h3 * s2
129 # t2[1] = h1 * r0 + h3 * s3
157 # t1[1] = h1 * r1 + h3 * s4
168 # t2[1] = h1 * r2 + h3 * r0
196 # t1[1] = h1 * r3 + h3 * r1
228 # h1 = d1 & 0x3ffffff
231 mov %eax,h1
261 # h1 += h0 >> 26
264 add %eax,h1
363 # hc1 = [ (m[19-22] >> 2) & 0x3ffffff, h1 + (m[3-6] >> 2) & 0x3ffffff ]
369 movd h1,t1
533 # h1 = d1 & 0x3ffffff
536 mov %eax,h1
566 # h1 += h0 >> 26
569 add %eax,h1
H A Dpoly1305-avx2-x86_64.S25 #define h1 0x04(%rdi) define
167 # (m[19-22] >> 2) & 0x3ffffff, (m[ 3- 6] >> 2) & 0x3ffffff + h1]
177 vmovd h1,t1x
336 # h1 = d1 & 0x3ffffff
339 mov %eax,h1
369 # h1 += h0 >> 26
372 add %eax,h1
/linux-4.4.14/drivers/media/common/saa7146/
H A Dsaa7146_i2c.c29 int h1, h2; saa7146_i2c_msg_prepare() local
60 h1 = op_count/3; h2 = op_count%3; saa7146_i2c_msg_prepare()
61 op[h1] |= cpu_to_le32( (u8)addr << ((3-h2)*8)); saa7146_i2c_msg_prepare()
62 op[h1] |= cpu_to_le32(SAA7146_I2C_START << ((3-h2)*2)); saa7146_i2c_msg_prepare()
68 h1 = op_count/3; h2 = op_count%3; saa7146_i2c_msg_prepare()
69 op[h1] |= cpu_to_le32( (u32)((u8)m[i].buf[j]) << ((3-h2)*8)); saa7146_i2c_msg_prepare()
70 op[h1] |= cpu_to_le32( SAA7146_I2C_CONT << ((3-h2)*2)); saa7146_i2c_msg_prepare()
78 h1 = (op_count-1)/3; h2 = (op_count-1)%3; saa7146_i2c_msg_prepare()
79 if ( SAA7146_I2C_CONT == (0x3 & (le32_to_cpu(op[h1]) >> ((3-h2)*2))) ) { saa7146_i2c_msg_prepare()
80 op[h1] &= ~cpu_to_le32(0x2 << ((3-h2)*2)); saa7146_i2c_msg_prepare()
81 op[h1] |= cpu_to_le32(SAA7146_I2C_STOP << ((3-h2)*2)); saa7146_i2c_msg_prepare()
/linux-4.4.14/tools/testing/selftests/net/
H A Dpsock_tpacket.c94 struct tpacket_hdr_v1 h1; member in struct:block_desc
470 if (__v3_prev_block_seq_num + 1 != pbd->h1.seq_num) { __v3_test_block_seq_num()
474 (uint64_t) pbd->h1.seq_num); __v3_test_block_seq_num()
478 __v3_prev_block_seq_num = pbd->h1.seq_num; __v3_test_block_seq_num()
483 if (pbd->h1.num_pkts && bytes != pbd->h1.blk_len) { __v3_test_block_len()
486 pbd->h1.num_pkts, bytes, pbd->h1.blk_len); __v3_test_block_len()
493 if ((pbd->h1.block_status & TP_STATUS_USER) == 0) { __v3_test_block_header()
503 int num_pkts = pbd->h1.num_pkts, i; __v3_walk_block()
510 pbd->h1.offset_to_first_pkt); __v3_walk_block()
535 pbd->h1.block_status = TP_STATUS_KERNEL; __v3_flush_block()
561 while ((pbd->h1.block_status & TP_STATUS_USER) == 0) walk_v3_rx()
/linux-4.4.14/drivers/mtd/
H A Dnftlmount.c40 struct nftl_uci1 h1; find_boot_record() local
94 (char *)&h1); find_boot_record()
105 if (le16_to_cpu(h1.EraseMark | h1.EraseMark1) != ERASE_MARK) { find_boot_record()
108 le16_to_cpu(h1.EraseMark), le16_to_cpu(h1.EraseMark1)); find_boot_record()
498 struct nftl_uci1 h1; check_and_mark_free_block() local
504 &retlen, (char *)&h1) < 0) check_and_mark_free_block()
507 erase_mark = le16_to_cpu ((h1.EraseMark | h1.EraseMark1)); check_and_mark_free_block()
515 h1.EraseMark = cpu_to_le16(ERASE_MARK); check_and_mark_free_block()
516 h1.EraseMark1 = cpu_to_le16(ERASE_MARK); check_and_mark_free_block()
517 h1.WearInfo = cpu_to_le32(0); check_and_mark_free_block()
520 &retlen, (char *)&h1) < 0) check_and_mark_free_block()
576 struct nftl_uci1 h1; NFTL_mount() local
608 &retlen, (char *)&h1) < 0) { NFTL_mount()
616 nb_erases = le32_to_cpu (h1.WearInfo); NFTL_mount()
617 erase_mark = le16_to_cpu ((h1.EraseMark | h1.EraseMark1)); NFTL_mount()
H A Dinftlmount.c46 struct inftl_unittail h1; find_boot_record() local
103 8, &retlen,(char *)&h1); find_boot_record()
544 struct inftl_unittail h1; INFTL_mount() local
601 (char *)&h1) < 0) { INFTL_mount()
609 erase_mark = le16_to_cpu((h1.EraseMark | h1.EraseMark1)); INFTL_mount()
/linux-4.4.14/net/netfilter/ipvs/
H A Dip_vs_nq.c71 * The comparison of h1*w2 > h2*w1 is equivalent to that of ip_vs_nq_schedule()
72 * h1/w1 > h2/w2 ip_vs_nq_schedule()
H A Dip_vs_wlc.c47 * The comparison of h1*w2 > h2*w1 is equivalent to that of ip_vs_wlc_schedule()
48 * h1/w1 > h2/w2 ip_vs_wlc_schedule()
H A Dip_vs_sed.c75 * The comparison of h1*w2 > h2*w1 is equivalent to that of ip_vs_sed_schedule()
76 * h1/w1 > h2/w2 ip_vs_sed_schedule()
H A Dip_vs_lblc.c412 * The comparison of h1*w2 > h2*w1 is equivalent to that of __ip_vs_lblc_schedule()
413 * h1/w1 > h2/w2 __ip_vs_lblc_schedule()
H A Dip_vs_lblcr.c575 * The comparison of h1*w2 > h2*w1 is equivalent to that of __ip_vs_lblcr_schedule()
576 * h1/w1 > h2/w2 __ip_vs_lblcr_schedule()
/linux-4.4.14/include/linux/sunrpc/
H A Dmsg_prot.h176 * h1.h2.h3.h4.p1.p2
178 * The prefix, "h1.h2.h3.h4", is the standard textual form for
180 * Assuming big-endian ordering, h1, h2, h3, and h4, are respectively,
/linux-4.4.14/arch/x86/crypto/sha-mb/
H A Dsha1_x8_avx2.S79 # r7 = {h7 h6 h5 h4 h3 h2 h1 h0}
83 # r1 = {h1 g1 f1 e1 d1 c1 b1 a1}
107 vshufps $0x44, \r7, \r6, \t1 # t1 = {h5 h4 g5 g4 h1 h0 g1 g0}
109 vshufps $0xDD, \t1, \r2, \r7 # r7 = {h5 g5 f5 e5 h1 g1 f1 e1}
117 vperm2f128 $0x02, \r3, \r7, \r1 # h1...a1
/linux-4.4.14/sound/usb/
H A Dcard.c243 struct uac1_ac_header_descriptor *h1 = control_header; snd_usb_create_streams() local
245 if (!h1->bInCollection) { snd_usb_create_streams()
250 if (h1->bLength < sizeof(*h1) + h1->bInCollection) { snd_usb_create_streams()
255 for (i = 0; i < h1->bInCollection; i++) snd_usb_create_streams()
256 snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]); snd_usb_create_streams()
/linux-4.4.14/scripts/
H A Dkernel-doc742 print "<h1>$section</h1>\n";
760 print "<h1>enum " . $args{'enum'} . "</h1>\n";
780 print "<h1>Constants</h1>\n";
804 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
826 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
867 print "<h1>Members</h1>\n";
898 print "<h1>" . $args{'function'} . "</h1>";
930 print "<h1>Arguments</h1>\n";
960 print "<h1>$section</h1>\n";
H A Danalyze_suspend.py2353 h1 {color:black;font: bold 30px Times;}\n\
/linux-4.4.14/include/linux/
H A Dif_vlan.h633 * @h1: Pointer to vlan header
638 * Please note that alignment of h1 & h2 are only guaranteed to be 16 bits.
640 static inline unsigned long compare_vlan_header(const struct vlan_hdr *h1, compare_vlan_header() argument
644 return *(u32 *)h1 ^ *(u32 *)h2; compare_vlan_header()
646 return ((__force u32)h1->h_vlan_TCI ^ (__force u32)h2->h_vlan_TCI) | compare_vlan_header()
647 ((__force u32)h1->h_vlan_encapsulated_proto ^ compare_vlan_header()
H A Dvmw_vmci_defs.h143 static inline bool vmci_handle_is_equal(struct vmci_handle h1, vmci_handle_is_equal() argument
146 return h1.context == h2.context && h1.resource == h2.resource; vmci_handle_is_equal()
/linux-4.4.14/net/netfilter/
H A Dnf_conntrack_core.c69 static void nf_conntrack_double_unlock(unsigned int h1, unsigned int h2) nf_conntrack_double_unlock() argument
71 h1 %= CONNTRACK_LOCKS; nf_conntrack_double_unlock()
73 spin_unlock(&nf_conntrack_locks[h1]); nf_conntrack_double_unlock()
74 if (h1 != h2) nf_conntrack_double_unlock()
79 static bool nf_conntrack_double_lock(struct net *net, unsigned int h1, nf_conntrack_double_lock() argument
82 h1 %= CONNTRACK_LOCKS; nf_conntrack_double_lock()
84 if (h1 <= h2) { nf_conntrack_double_lock()
85 spin_lock(&nf_conntrack_locks[h1]); nf_conntrack_double_lock()
86 if (h1 != h2) nf_conntrack_double_lock()
91 spin_lock_nested(&nf_conntrack_locks[h1], nf_conntrack_double_lock()
95 nf_conntrack_double_unlock(h1, h2); nf_conntrack_double_lock()
/linux-4.4.14/Documentation/DocBook/
H A DMakefile143 echo '<h1>Linux Kernel HTML Documentation</h1>' >> $(main_idx) && \
/linux-4.4.14/drivers/staging/media/davinci_vpfe/
H A Ddm365_resizer.c366 unsigned int h1; resizer_calculate_down_scale_f_div_param() local
386 h1 = val; resizer_calculate_down_scale_f_div_param()
394 h1 = val; resizer_calculate_down_scale_f_div_param()
399 h2 = output_width - h1; resizer_calculate_down_scale_f_div_param()
401 val = (h1 * rsz) - (((upper_h1 - (o - 10)) / two_power) << 8); resizer_calculate_down_scale_f_div_param()
405 param->f_div.pass[0].o_hsz = h1 - 1; resizer_calculate_down_scale_f_div_param()
621 unsigned int h1; resizer_calculate_normal_f_div_param() local
635 h1 = val; resizer_calculate_normal_f_div_param()
643 h1 = val; resizer_calculate_normal_f_div_param()
645 h2 = output_width - h1; resizer_calculate_normal_f_div_param()
647 val = (h1 * rsz) - (((input_width >> 1) - o) << 8); resizer_calculate_normal_f_div_param()
651 param->f_div.pass[0].o_hsz = h1 - 1; resizer_calculate_normal_f_div_param()
/linux-4.4.14/net/packet/
H A Daf_packet.c163 struct tpacket_hdr *h1; member in union:tpacket_uhdr
404 h.h1->tp_status = status; __packet_set_status()
405 flush_dcache_page(pgv_to_page(&h.h1->tp_status)); __packet_set_status()
429 flush_dcache_page(pgv_to_page(&h.h1->tp_status)); __packet_get_status()
430 return h.h1->tp_status; __packet_get_status()
471 h.h1->tp_sec = ts.tv_sec; __packet_set_timestamp()
472 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC; __packet_set_timestamp()
485 flush_dcache_page(pgv_to_page(&h.h1->tp_sec)); __packet_set_timestamp()
794 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1; prb_close_block() local
805 h1->ts_last_pkt.ts_sec = last_pkt->tp_sec; prb_close_block()
806 h1->ts_last_pkt.ts_nsec = last_pkt->tp_nsec; prb_close_block()
815 h1->ts_last_pkt.ts_sec = ts.tv_sec; prb_close_block()
816 h1->ts_last_pkt.ts_nsec = ts.tv_nsec; prb_close_block()
845 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1; prb_open_block() local
859 h1->ts_first_pkt.ts_sec = ts.tv_sec; prb_open_block()
860 h1->ts_first_pkt.ts_nsec = ts.tv_nsec; prb_open_block()
2220 h.h1->tp_len = skb->len; tpacket_rcv()
2221 h.h1->tp_snaplen = snaplen; tpacket_rcv()
2222 h.h1->tp_mac = macoff; tpacket_rcv()
2223 h.h1->tp_net = netoff; tpacket_rcv()
2224 h.h1->tp_sec = ts.tv_sec; tpacket_rcv()
2225 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC; tpacket_rcv()
2226 hdrlen = sizeof(*h.h1); tpacket_rcv()
2367 tp_len = ph.h1->tp_len; tpacket_fill_skb()
2388 off = ph.h1->tp_net; tpacket_fill_skb()
2397 off = ph.h1->tp_mac; tpacket_fill_skb()
/linux-4.4.14/drivers/hwmon/
H A Dthmc50.c4 * Copyright (C) 2007 Krzysztof Helt <krzysztof.h1@wp.pl>
444 MODULE_AUTHOR("Krzysztof Helt <krzysztof.h1@wp.pl>");
/linux-4.4.14/sound/isa/sb/
H A Djazz16.c4 * Copyright (C) 2009 Krzysztof Helt <krzysztof.h1@wp.pl>
34 MODULE_AUTHOR("Krzysztof Helt <krzysztof.h1@wp.pl>");
/linux-4.4.14/drivers/staging/lustre/include/linux/lnet/
H A Dtypes.h290 * Compare handles \a h1 and \a h2.
294 static inline int LNetHandleIsEqual(lnet_handle_any_t h1, lnet_handle_any_t h2) LNetHandleIsEqual() argument
296 return h1.cookie == h2.cookie; LNetHandleIsEqual()
/linux-4.4.14/arch/mips/boot/
H A Delf2ecoff.c120 const Elf32_Phdr *h1 = v1; phcmp() local
123 if (h1->p_vaddr > h2->p_vaddr) phcmp()
125 else if (h1->p_vaddr < h2->p_vaddr) phcmp()
/linux-4.4.14/drivers/tty/serial/
H A Difx6x60.c389 u16 h1; ifx_spi_decode_spi_header() local
393 h1 = *in_buffer; ifx_spi_decode_spi_header()
396 if (h1 == 0 && h2 == 0) { ifx_spi_decode_spi_header()
399 } else if (h1 == 0xffff && h2 == 0xffff) { ifx_spi_decode_spi_header()
404 *length = h1 & 0xfff; /* upper bits of byte are flags */ ifx_spi_decode_spi_header()
/linux-4.4.14/drivers/gpu/drm/exynos/
H A Dexynos_drm_fimc.c595 u32 cfg, h1, h2, v1, v2; fimc_set_window() local
598 h1 = pos->x; fimc_set_window()
605 DRM_DEBUG_KMS("h1[%d]h2[%d]v1[%d]v2[%d]\n", h1, h2, v1, v2); fimc_set_window()
614 cfg |= (EXYNOS_CIWDOFST_WINHOROFST(h1) | fimc_set_window()
/linux-4.4.14/net/ipv6/
H A Dip6_gre.c121 unsigned int h1 = HASH_KEY(key); ip6gre_tunnel_lookup() local
128 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) { ip6gre_tunnel_lookup()
153 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) { ip6gre_tunnel_lookup()
177 for_each_ip_tunnel_rcu(t, ign->tunnels_l[h1]) { ip6gre_tunnel_lookup()
203 for_each_ip_tunnel_rcu(t, ign->tunnels_wc[h1]) { ip6gre_tunnel_lookup()
H A Dsit.c97 unsigned int h1 = HASH(local); ipip6_tunnel_lookup() local
101 for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) { ipip6_tunnel_lookup()
114 for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) { ipip6_tunnel_lookup()
/linux-4.4.14/arch/arm/mach-omap2/
H A Dmux34xx.c797 _OMAP3_BALLENTRY(GPMC_A2, "h1", NULL),
1155 _OMAP3_BALLENTRY(GPMC_A8, "h1", NULL),
1492 _OMAP3_BALLENTRY(GPMC_NWP, "h1", "ab10"),
1920 _OMAP3_BALLENTRY(GPMC_NWP, "h1", "ab10"),
/linux-4.4.14/security/keys/
H A Dtrusted.c124 unsigned int keylen, unsigned char *h1, TSS_authhmac()
164 paramdigest, TPM_NONCE_SIZE, h1, TSS_authhmac()
123 TSS_authhmac(unsigned char *digest, const unsigned char *key, unsigned int keylen, unsigned char *h1, unsigned char *h2, unsigned char h3, ...) TSS_authhmac() argument
/linux-4.4.14/sound/pci/asihpi/
H A Dhpi_internal.h1174 } h1; */
1182 } h1; member in struct:hpi_response_header_v1
/linux-4.4.14/drivers/staging/octeon-usb/
H A Docteon-hcd.h604 * * 8'h1: 1 location available
613 * * 16'h1: 1 word available
650 * * 5'h1: Periodic TxFIFO 1 flush in Device mode or Periodic
1541 * * 8'h1: 1 location available
1551 * * 16'h1: 1 word available
/linux-4.4.14/sound/isa/
H A Dsc6000.c8 * Copyright (C) 2007 Krzysztof Helt <krzysztof.h1@wp.pl>
/linux-4.4.14/drivers/video/fbdev/
H A Dpm3fb.c6 * Ported to 2.6 kernel on 1 May 2007 by Krzysztof Helt <krzysztof.h1@wp.pl>
H A Dtridentfb.c5 * Copyright 2009 Krzysztof Helt <krzysztof.h1@wp.pl>
/linux-4.4.14/drivers/isdn/i4l/
H A Disdn_net.c1819 /* HDLC with UI-frame (for ispa with -h1 option) */ isdn_net_receive()
1927 /* HDLC with UI-Frames (for ispa with -h1 option) */ isdn_net_header()
/linux-4.4.14/drivers/infiniband/hw/qib/
H A Dqib_iba7322.c6112 u32 pidx, unit, port, deflt, h1; set_no_qsfp_atten() local
6153 h1 = 0; /* gcc thinks it might be used uninitted */ set_no_qsfp_atten()
6156 h1 = (u32)simple_strtoul(str, &nxt, 0); set_no_qsfp_atten()
6171 ppd->cpspec->h1_val = h1; set_no_qsfp_atten()
/linux-4.4.14/sound/sparc/
H A Ddbri.c5 * Converted to ring buffered version by Krzysztof Helt (krzysztof.h1@wp.pl)

Completed in 2171 milliseconds