Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 251) sorted by relevance

1234567891011

/linux-4.19.296/include/uapi/asm-generic/
DKbuild.asm4 mandatory-y += auxvec.h
5 mandatory-y += bitsperlong.h
6 mandatory-y += byteorder.h
7 mandatory-y += errno.h
8 mandatory-y += fcntl.h
9 mandatory-y += ioctl.h
10 mandatory-y += ioctls.h
11 mandatory-y += ipcbuf.h
12 mandatory-y += mman.h
13 mandatory-y += msgbuf.h
[all …]
/linux-4.19.296/drivers/media/dvb-core/
Ddvb_net.c327 static int dvb_net_ule_new_ts_cell(struct dvb_net_ule_handle *h) in dvb_net_ule_new_ts_cell() argument
334 memcpy(ule_where, h->ts, TS_SZ); in dvb_net_ule_new_ts_cell()
346 if ((h->ts[0] != TS_SYNC) || (h->ts[1] & TS_TEI) || in dvb_net_ule_new_ts_cell()
347 ((h->ts[3] & TS_SC) != 0)) { in dvb_net_ule_new_ts_cell()
349 h->priv->ts_count, h->ts[0], in dvb_net_ule_new_ts_cell()
350 (h->ts[1] & TS_TEI) >> 7, in dvb_net_ule_new_ts_cell()
351 (h->ts[3] & TS_SC) >> 6); in dvb_net_ule_new_ts_cell()
354 if (h->priv->ule_skb) { in dvb_net_ule_new_ts_cell()
355 dev_kfree_skb(h->priv->ule_skb); in dvb_net_ule_new_ts_cell()
357 h->dev->stats.rx_errors++; in dvb_net_ule_new_ts_cell()
[all …]
/linux-4.19.296/fs/reiserfs/
Dibalance.c29 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 …]
Dfix_node.c51 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-4.19.296/lib/
Dsha256.c50 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local
64 e = state[4]; f = state[5]; g = state[6]; h = state[7]; in sha256_transform()
67 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0]; in sha256_transform()
68 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha256_transform()
70 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha256_transform()
72 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha256_transform()
74 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha256_transform()
76 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha256_transform()
77 t1 = c + e1(h) + Ch(h, a, b) + 0x59f111f1 + W[5]; in sha256_transform()
79 t1 = b + e1(g) + Ch(g, h, a) + 0x923f82a4 + W[6]; in sha256_transform()
[all …]
/linux-4.19.296/crypto/
Dsha256_generic.c73 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local
87 e=state[4]; f=state[5]; g=state[6]; h=state[7]; in sha256_transform()
90 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0]; in sha256_transform()
91 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha256_transform()
93 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha256_transform()
95 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha256_transform()
97 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha256_transform()
99 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha256_transform()
100 t1 = c + e1(h) + Ch(h,a,b) + 0x59f111f1 + W[ 5]; in sha256_transform()
102 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6]; in sha256_transform()
[all …]
/linux-4.19.296/include/linux/spi/
Dmxs-spi.h62 #define HW_SSP_TIMING(h) (ssp_is_old(h) ? 0x050 : 0x070) argument
73 #define HW_SSP_CTRL1(h) (ssp_is_old(h) ? 0x060 : 0x080) argument
109 #define HW_SSP_DATA(h) (ssp_is_old(h) ? 0x070 : 0x090) argument
111 #define HW_SSP_SDRESP0(h) (ssp_is_old(h) ? 0x080 : 0x0a0) argument
112 #define HW_SSP_SDRESP1(h) (ssp_is_old(h) ? 0x090 : 0x0b0) argument
113 #define HW_SSP_SDRESP2(h) (ssp_is_old(h) ? 0x0a0 : 0x0c0) argument
114 #define HW_SSP_SDRESP3(h) (ssp_is_old(h) ? 0x0b0 : 0x0d0) argument
115 #define HW_SSP_STATUS(h) (ssp_is_old(h) ? 0x0c0 : 0x100) argument
/linux-4.19.296/include/linux/platform_data/
Ddma-atmel.h38 #define ATC_PER_MSB(h) ((0x30U & (h)) >> 4) /* Extract most significant bits of a handshaking ident… argument
40 #define ATC_SRC_PER(h) (0xFU & (h)) /* Channel src rq associated with periph handshaking ifc h */ argument
41 #define ATC_DST_PER(h) ((0xFU & (h)) << 4) /* Channel dst rq associated with periph handshaking i… argument
46 #define ATC_SRC_PER_MSB(h) (ATC_PER_MSB(h) << 10) /* Channel src rq (most significant bits) */ argument
51 #define ATC_DST_PER_MSB(h) (ATC_PER_MSB(h) << 14) /* Channel dst rq (most significant bits) */ argument
/linux-4.19.296/fs/nls/
Dnls_euc-jp.c19 #define IS_SJIS_JISX0208(h, l) ((((0x81 <= (h)) && ((h) <= 0x9F)) \ argument
20 || ((0xE0 <= (h)) && ((h) <= 0xEA))) \
23 #define IS_SJIS_UDC_LOW(h, l) (((0xF0 <= (h)) && ((h) <= 0xF4)) \ argument
25 #define IS_SJIS_UDC_HI(h, l) (((0xF5 <= (h)) && ((h) <= 0xF9)) \ argument
27 #define IS_SJIS_IBM(h, l) (((0xFA <= (h)) && ((h) <= 0xFC)) \ argument
29 #define IS_SJIS_NECIBM(h, l) (((0xED <= (h)) && ((h) <= 0xEE)) \ argument
44 #define IS_EUC_JISX0208(h, l) (IS_EUC_BYTE(h) && IS_EUC_BYTE(l)) argument
45 #define IS_EUC_JISX0201KANA(h, l) (((h) == SS2) && (0xA1 <= (l) && (l) <= 0xDF)) argument
46 #define IS_EUC_UDC_LOW(h, l) (((0xF5 <= (h)) && ((h) <= 0xFE)) \ argument
48 #define IS_EUC_UDC_HI(h, l) IS_EUC_UDC_LOW(h, l) /* G3 block */ argument
[all …]
/linux-4.19.296/include/linux/
Dhugetlb.h74 #define for_each_hstate(h) \ argument
75 for ((h) = hstates; (h) < &hstates[hugetlb_max_hstate]; (h)++)
77 struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
127 u32 hugetlb_fault_mutex_hash(struct hstate *h, struct address_space *mapping,
368 struct page *alloc_huge_page_node(struct hstate *h, int nid);
369 struct page *alloc_huge_page_nodemask(struct hstate *h, int preferred_nid,
371 struct page *alloc_huge_page_vma(struct hstate *h, struct vm_area_struct *vma,
377 int __init __alloc_bootmem_huge_page(struct hstate *h);
378 int __init alloc_bootmem_huge_page(struct hstate *h);
419 static inline unsigned long huge_page_size(struct hstate *h) in huge_page_size() argument
[all …]
Dlist_bl.h44 static inline void INIT_HLIST_BL_NODE(struct hlist_bl_node *h) in INIT_HLIST_BL_NODE() argument
46 h->next = NULL; in INIT_HLIST_BL_NODE()
47 h->pprev = NULL; in INIT_HLIST_BL_NODE()
52 static inline bool hlist_bl_unhashed(const struct hlist_bl_node *h) in hlist_bl_unhashed() argument
54 return !h->pprev; in hlist_bl_unhashed()
57 static inline struct hlist_bl_node *hlist_bl_first(struct hlist_bl_head *h) in hlist_bl_first() argument
60 ((unsigned long)h->first & ~LIST_BL_LOCKMASK); in hlist_bl_first()
63 static inline void hlist_bl_set_first(struct hlist_bl_head *h, in hlist_bl_set_first() argument
67 LIST_BL_BUG_ON(((unsigned long)h->first & LIST_BL_LOCKMASK) != in hlist_bl_set_first()
69 h->first = (struct hlist_bl_node *)((unsigned long)n | LIST_BL_LOCKMASK); in hlist_bl_set_first()
[all …]
Dbtree-type.h11 struct btree_head h; variable
17 btree_init_mempool(&head->h, mempool); in BTREE_FN()
22 return btree_init(&head->h); in BTREE_FN()
27 btree_destroy(&head->h); in BTREE_FN()
34 return btree_merge(&target->h, &victim->h, BTREE_TYPE_GEO, gfp); in BTREE_FN()
41 return btree_lookup(&head->h, BTREE_TYPE_GEO, &_key); in BTREE_FN()
48 return btree_insert(&head->h, BTREE_TYPE_GEO, &_key, val, gfp); in BTREE_FN()
55 return btree_update(&head->h, BTREE_TYPE_GEO, &_key, val); in BTREE_FN()
61 return btree_remove(&head->h, BTREE_TYPE_GEO, &_key); in BTREE_FN()
67 void *val = btree_last(&head->h, BTREE_TYPE_GEO, &_key); in BTREE_FN()
[all …]
Drculist_bl.h11 static inline void hlist_bl_set_first_rcu(struct hlist_bl_head *h, in hlist_bl_set_first_rcu() argument
15 LIST_BL_BUG_ON(((unsigned long)h->first & LIST_BL_LOCKMASK) != in hlist_bl_set_first_rcu()
17 rcu_assign_pointer(h->first, in hlist_bl_set_first_rcu()
21 static inline struct hlist_bl_node *hlist_bl_first_rcu(struct hlist_bl_head *h) in hlist_bl_first_rcu() argument
24 ((unsigned long)rcu_dereference_check(h->first, hlist_bl_is_locked(h)) & ~LIST_BL_LOCKMASK); in hlist_bl_first_rcu()
100 struct hlist_bl_head *h) in hlist_bl_add_head_rcu() argument
105 first = hlist_bl_first(h); in hlist_bl_add_head_rcu()
110 n->pprev = &h->first; in hlist_bl_add_head_rcu()
113 hlist_bl_set_first_rcu(h, n); in hlist_bl_add_head_rcu()
Dbtree-128.h4 struct btree_head128 { struct btree_head h; }; member
9 btree_init_mempool(&head->h, mempool); in btree_init_mempool128()
14 return btree_init(&head->h); in btree_init128()
19 btree_destroy(&head->h); in btree_destroy128()
25 return btree_lookup(&head->h, &btree_geo128, (unsigned long *)&key); in btree_lookup128()
34 val = btree_get_prev(&head->h, &btree_geo128, in btree_get_prev128()
45 return btree_insert(&head->h, &btree_geo128, in btree_insert128()
53 return btree_update(&head->h, &btree_geo128, in btree_update128()
60 return btree_remove(&head->h, &btree_geo128, (unsigned long *)&key); in btree_remove128()
68 val = btree_last(&head->h, &btree_geo128, (unsigned long *)&key[0]); in btree_last128()
[all …]
/linux-4.19.296/drivers/sh/intc/
Daccess.c75 static unsigned long test_8(unsigned long addr, unsigned long h, in test_8() argument
79 return intc_get_field_from_handle(__raw_readb(ptr), h); in test_8()
82 static unsigned long test_16(unsigned long addr, unsigned long h, in test_16() argument
86 return intc_get_field_from_handle(__raw_readw(ptr), h); in test_16()
89 static unsigned long test_32(unsigned long addr, unsigned long h, in test_32() argument
93 return intc_get_field_from_handle(__raw_readl(ptr), h); in test_32()
96 static unsigned long write_8(unsigned long addr, unsigned long h, in write_8() argument
100 __raw_writeb(intc_set_field_from_handle(0, data, h), ptr); in write_8()
105 static unsigned long write_16(unsigned long addr, unsigned long h, in write_16() argument
109 __raw_writew(intc_set_field_from_handle(0, data, h), ptr); in write_16()
[all …]
Dinternals.h15 #define _INTC_SHIFT(h) (h & 0x1f) argument
16 #define _INTC_WIDTH(h) ((h >> 5) & 0xf) argument
17 #define _INTC_FN(h) ((h >> 9) & 0xf) argument
18 #define _INTC_MODE(h) ((h >> 13) & 0x7) argument
19 #define _INTC_ADDR_E(h) ((h >> 16) & 0xff) argument
20 #define _INTC_ADDR_D(h) ((h >> 24) & 0xff) argument
116 (*intc_reg_fns[])(unsigned long addr, unsigned long h, unsigned long data);
/linux-4.19.296/fs/nfs/
Ddns_resolve.c61 struct cache_head h; member
77 new = container_of(cnew, struct nfs_dns_ent, h); in nfs_dns_ent_update()
78 key = container_of(ckey, struct nfs_dns_ent, h); in nfs_dns_ent_update()
90 new = container_of(cnew, struct nfs_dns_ent, h); in nfs_dns_ent_init()
91 key = container_of(ckey, struct nfs_dns_ent, h); in nfs_dns_ent_init()
108 item = container_of(ref, struct nfs_dns_ent, h.ref); in nfs_dns_ent_put()
121 return &item->h; in nfs_dns_ent_alloc()
135 struct nfs_dns_ent *key = container_of(ch, struct nfs_dns_ent, h); in nfs_dns_request()
144 struct nfs_dns_ent *key = container_of(ch, struct nfs_dns_ent, h); in nfs_dns_upcall()
159 a = container_of(ca, struct nfs_dns_ent, h); in nfs_dns_match()
[all …]
/linux-4.19.296/fs/nfsd/
Dnfs4idmap.c63 struct cache_head h; member
78 struct ent *new = container_of(cnew, struct ent, h); in ent_init()
79 struct ent *itm = container_of(citm, struct ent, h); in ent_init()
91 struct ent *map = container_of(ref, struct ent, h.ref); in ent_put()
100 return &e->h; in ent_alloc()
128 struct ent *ent = container_of(ch, struct ent, h); in idtoname_request()
142 struct ent *a = container_of(ca, struct ent, h); in idtoname_match()
143 struct ent *b = container_of(cb, struct ent, h); in idtoname_match()
150 idtoname_show(struct seq_file *m, struct cache_detail *cd, struct cache_head *h) in idtoname_show() argument
154 if (h == NULL) { in idtoname_show()
[all …]
/linux-4.19.296/drivers/media/common/videobuf2/
Dvideobuf2-memops.c96 struct vb2_vmarea_handler *h = vma->vm_private_data; in vb2_common_vm_open() local
99 __func__, h, refcount_read(h->refcount), vma->vm_start, in vb2_common_vm_open()
102 refcount_inc(h->refcount); in vb2_common_vm_open()
114 struct vb2_vmarea_handler *h = vma->vm_private_data; in vb2_common_vm_close() local
117 __func__, h, refcount_read(h->refcount), vma->vm_start, in vb2_common_vm_close()
120 h->put(h->arg); in vb2_common_vm_close()
/linux-4.19.296/drivers/message/fusion/lsi/
Dmpi_history.txt15 mpi.h 01.05.16 01.05.15
16 mpi_ioc.h 01.05.16 01.05.15
17 mpi_cnfg.h 01.05.18 01.05.17
18 mpi_init.h 01.05.09 01.05.09
19 mpi_targ.h 01.05.06 01.05.06
20 mpi_fc.h 01.05.01 01.05.01
21 mpi_lan.h 01.05.01 01.05.01
22 mpi_raid.h 01.05.05 01.05.05
23 mpi_tool.h 01.05.03 01.05.03
24 mpi_inb.h 01.05.01 01.05.01
[all …]
/linux-4.19.296/include/linux/sunrpc/
Dcache.h87 struct cache_head *h);
178 sunrpc_cache_pipe_upcall(struct cache_detail *detail, struct cache_head *h);
183 static inline struct cache_head *cache_get(struct cache_head *h) in cache_get() argument
185 kref_get(&h->ref); in cache_get()
186 return h; in cache_get()
190 static inline void cache_put(struct cache_head *h, struct cache_detail *cd) in cache_put() argument
192 if (kref_read(&h->ref) <= 2 && in cache_put()
193 h->expiry_time < cd->nextcheck) in cache_put()
194 cd->nextcheck = h->expiry_time; in cache_put()
195 kref_put(&h->ref, cd->cache_put); in cache_put()
[all …]
/linux-4.19.296/crypto/asymmetric_keys/
DMakefile26 $(obj)/x509.asn1.h \
27 $(obj)/x509_akid.asn1.h
29 $(obj)/x509.asn1.o: $(obj)/x509.asn1.c $(obj)/x509.asn1.h
30 $(obj)/x509_akid.asn1.o: $(obj)/x509_akid.asn1.c $(obj)/x509_akid.asn1.h
42 $(obj)/pkcs7_parser.o: $(obj)/pkcs7.asn1.h
43 $(obj)/pkcs7.asn1.o: $(obj)/pkcs7.asn1.c $(obj)/pkcs7.asn1.h
62 $(obj)/mscode_parser.o: $(obj)/mscode.asn1.h $(obj)/mscode.asn1.h
63 $(obj)/mscode.asn1.o: $(obj)/mscode.asn1.c $(obj)/mscode.asn1.h
/linux-4.19.296/fs/adfs/
Ddir_fplus.c18 struct adfs_bigdirheader *h; in adfs_fplus_read() local
40 h = (struct adfs_bigdirheader *)dir->bh_fplus[0]->b_data; in adfs_fplus_read()
41 size = le32_to_cpu(h->bigdirsize); in adfs_fplus_read()
49 if (h->bigdirversion[0] != 0 || h->bigdirversion[1] != 0 || in adfs_fplus_read()
50 h->bigdirversion[2] != 0 || size & 2047 || in adfs_fplus_read()
51 h->bigdirstartname != cpu_to_le32(BIGDIRSTARTNAME)) { in adfs_fplus_read()
95 t->bigdirendmasseq != h->startmasseq || in adfs_fplus_read()
102 dir->parent_id = le32_to_cpu(h->bigdirparent); in adfs_fplus_read()
125 struct adfs_bigdirheader *h = in adfs_fplus_setpos() local
129 if (fpos <= le32_to_cpu(h->bigdirentries)) { in adfs_fplus_setpos()
[all …]
/linux-4.19.296/include/uapi/linux/
DKbuild3 ifeq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/uapi/asm/a.out.h),)
4 no-export-headers += a.out.h
7 ifeq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/uapi/asm/kvm.h),)
8 no-export-headers += kvm.h
11 ifeq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/uapi/asm/kvm_para.h),)
12 no-export-headers += kvm_para.h
/linux-4.19.296/drivers/hid/intel-ish-hid/ishtp/
Ddma-if.c35 dma_addr_t h; in ishtp_cl_alloc_dma_buf() local
46 &h, GFP_KERNEL); in ishtp_cl_alloc_dma_buf()
48 dev->ishtp_host_dma_tx_buf_phys = h; in ishtp_cl_alloc_dma_buf()
61 &h, GFP_KERNEL); in ishtp_cl_alloc_dma_buf()
64 dev->ishtp_host_dma_rx_buf_phys = h; in ishtp_cl_alloc_dma_buf()
77 dma_addr_t h; in ishtp_cl_free_dma_buf() local
80 h = dev->ishtp_host_dma_tx_buf_phys; in ishtp_cl_free_dma_buf()
82 dev->ishtp_host_dma_tx_buf, h); in ishtp_cl_free_dma_buf()
86 h = dev->ishtp_host_dma_rx_buf_phys; in ishtp_cl_free_dma_buf()
88 dev->ishtp_host_dma_rx_buf, h); in ishtp_cl_free_dma_buf()

1234567891011