Home
last modified time | relevance | path

Searched refs:zp (Results 1 – 8 of 8) sorted by relevance

/linux/mm/
H A Dzpdesc.h51 #define ZPDESC_MATCH(pg, zp) \ argument
52 static_assert(offsetof(struct page, pg) == offsetof(struct zpdesc, zp))
74 #define zpdesc_page(zp) (_Generic((zp), \ argument
75 const struct zpdesc *: (const struct page *)(zp), \
76 struct zpdesc *: (struct page *)(zp)))
91 #define zpdesc_folio(zp) (_Generic((zp), \ argument
92 const struct zpdesc *: (const struct folio *)(zp), \
93 struct zpdesc *: (struct folio *)(zp)))
/linux/fs/ubifs/
H A Dtnc.c651 struct ubifs_znode *zp; in tnc_next() local
653 zp = znode->parent; in tnc_next()
654 if (!zp) in tnc_next()
657 znode = zp; in tnc_next()
695 struct ubifs_znode *zp; in tnc_prev() local
697 zp = znode->parent; in tnc_prev()
698 if (!zp) in tnc_prev()
701 znode = zp; in tnc_prev()
1130 struct ubifs_znode *zp; in dirty_cow_bottom_up() local
1149 zp = znode->parent; in dirty_cow_bottom_up()
[all …]
H A Dtnc_commit.c28 struct ubifs_znode *zp; in make_idx_node() local
64 zp = znode->parent; in make_idx_node()
65 if (zp) { in make_idx_node()
68 zbr = &zp->zbranch[znode->iip]; in make_idx_node()
431 struct ubifs_znode *znode, *cnext, *zp; in layout_in_empty_space() local
476 zp = znode->parent; in layout_in_empty_space()
477 if (zp) { in layout_in_empty_space()
482 zbr = &zp->zbranch[i]; in layout_in_empty_space()
H A Ddebug.c1291 struct ubifs_znode *zp = znode->parent; in dbg_check_znode() local
1321 if (zp && !ubifs_zn_dirty(zp)) { in dbg_check_znode()
1336 if (zp) { in dbg_check_znode()
1339 if (znode->level != zp->level - 1) { in dbg_check_znode()
1345 err = ubifs_search_zbranch(c, zp, &zbr->key, &n); in dbg_check_znode()
1352 if (znode->iip >= zp->child_cnt) { in dbg_check_znode()
1359 if (keys_cmp(c, &zp->zbranch[n].key, in dbg_check_znode()
1360 &zp->zbranch[znode->iip].key)) { in dbg_check_znode()
1378 if (n + 1 < zp->child_cnt) { in dbg_check_znode()
1379 max = &zp->zbranch[n + 1].key; in dbg_check_znode()
[all …]
/linux/drivers/isdn/hardware/mISDN/
H A Dhfcpci.c400 struct zt *zp; in hfcpci_empty_bfifo() local
404 zp = &bz->za[bz->f2]; /* point to Z-Regs */ in hfcpci_empty_bfifo()
405 new_z2 = le16_to_cpu(zp->z2) + count; /* new position in fifo */ in hfcpci_empty_bfifo()
410 (*(bdata + (le16_to_cpu(zp->z1) - B_SUB_VAL)))) { in hfcpci_empty_bfifo()
428 if (le16_to_cpu(zp->z2) + count <= B_FIFO_SIZE + B_SUB_VAL) in hfcpci_empty_bfifo()
432 le16_to_cpu(zp->z2); /* maximum */ in hfcpci_empty_bfifo()
434 ptr1 = bdata + (le16_to_cpu(zp->z2) - B_SUB_VAL); in hfcpci_empty_bfifo()
462 struct zt *zp; in receive_dmsg() local
466 zp = &df->za[df->f2 & D_FREG_MASK]; in receive_dmsg()
467 rcnt = le16_to_cpu(zp->z1) - le16_to_cpu(zp->z2); in receive_dmsg()
[all …]
/linux/net/rds/
H A Dcong.c142 unsigned long zp; in rds_cong_from_addr() local
155 zp = get_zeroed_page(GFP_KERNEL); in rds_cong_from_addr()
156 if (zp == 0) in rds_cong_from_addr()
158 map->m_page_addrs[i] = zp; in rds_cong_from_addr()
/linux/fs/netfs/
H A Dbuffered_read.c240 unsigned long long zp = umin(ictx->zero_point, rreq->i_size); in netfs_read_to_pagecache() local
244 zp = rreq->i_size; in netfs_read_to_pagecache()
245 if (subreq->start >= zp) { in netfs_read_to_pagecache()
250 if (len > zp - subreq->start) in netfs_read_to_pagecache()
251 len = zp - subreq->start; in netfs_read_to_pagecache()
/linux/arch/x86/kernel/cpu/microcode/
H A Damd.c864 union zen_patch_rev zp, zn; in patch_newer() local
866 zp.ucode_rev = p->patch_id; in patch_newer()
869 if (zn.stepping != zp.stepping) in patch_newer()
872 return zn.rev > zp.rev; in patch_newer()