Home
last modified time | relevance | path

Searched defs:_p (Results 1 – 25 of 65) sorted by relevance

123

/openbmc/linux/drivers/net/ethernet/freescale/fs_enet/
H A Dmac-fcc.c52 #define W32(_p, _m, _v) out_be32(&(_p)->_m, (_v)) argument
53 #define R32(_p, _m) in_be32(&(_p)->_m) argument
54 #define S32(_p, _m, _v) W32(_p, _m, R32(_p, _m) | (_v)) argument
55 #define C32(_p, _m, _v) W32(_p, _m, R32(_p, _m) & ~(_v)) argument
57 #define W16(_p, _m, _v) out_be16(&(_p)->_m, (_v)) argument
58 #define R16(_p, _m) in_be16(&(_p)->_m) argument
59 #define S16(_p, _m, _v) W16(_p, _m, R16(_p, _m) | (_v)) argument
60 #define C16(_p, _m, _v) W16(_p, _m, R16(_p, _m) & ~(_v)) argument
62 #define W8(_p, _m, _v) out_8(&(_p)->_m, (_v)) argument
63 #define R8(_p, _m) in_8(&(_p)->_m) argument
[all …]
H A Dmac-scc.c61 #define W32(_p, _m, _v) __fs_out32(&(_p)->_m, (_v)) argument
62 #define R32(_p, _m) __fs_in32(&(_p)->_m) argument
63 #define S32(_p, _m, _v) W32(_p, _m, R32(_p, _m) | (_v)) argument
64 #define C32(_p, _m, _v) W32(_p, _m, R32(_p, _m) & ~(_v)) argument
66 #define W16(_p, _m, _v) __fs_out16(&(_p)->_m, (_v)) argument
67 #define R16(_p, _m) __fs_in16(&(_p)->_m) argument
68 #define S16(_p, _m, _v) W16(_p, _m, R16(_p, _m) | (_v)) argument
69 #define C16(_p, _m, _v) W16(_p, _m, R16(_p, _m) & ~(_v)) argument
71 #define W8(_p, _m, _v) __fs_out8(&(_p)->_m, (_v)) argument
72 #define R8(_p, _m) __fs_in8(&(_p)->_m) argument
[all …]
/openbmc/linux/drivers/clk/samsung/
H A Dclk-pll.h43 #define PLL_RATE(_fin, _m, _p, _s, _k, _ks) \ argument
45 #define PLL_VALID_RATE(_fin, _fout, _m, _p, _s, _k, _ks) ((_fout) + \ argument
48 #define PLL_35XX_RATE(_fin, _rate, _m, _p, _s) \ argument
57 #define PLL_36XX_RATE(_fin, _rate, _m, _p, _s, _k) \ argument
67 #define PLL_4508_RATE(_fin, _rate, _m, _p, _s, _afc) \ argument
77 #define PLL_4600_RATE(_fin, _rate, _m, _p, _s, _k, _vsel) \ argument
88 #define PLL_4650_RATE(_fin, _rate, _m, _p, _s, _k, _mfr, _mrr, _vsel) \ argument
/openbmc/linux/drivers/net/ethernet/8390/
H A D8390p.c7 #define ei_inb(_p) inb(_p) argument
8 #define ei_outb(_v, _p) outb(_v, _p) argument
9 #define ei_inb_p(_p) inb_p(_p) argument
10 #define ei_outb_p(_v, _p) outb_p(_v, _p) argument
H A Detherh.c51 #define ei_inb(_p) readb((void __iomem *)_p) argument
52 #define ei_outb(_v,_p) writeb(_v,(void __iomem *)_p) argument
53 #define ei_inb_p(_p) readb((void __iomem *)_p) argument
54 #define ei_outb_p(_v,_p) writeb(_v,(void __iomem *)_p) argument
H A D8390.h157 #define ei_inb(_p) inb(_p) argument
158 #define ei_outb(_v, _p) outb(_v, _p) argument
159 #define ei_inb_p(_p) inb(_p) argument
160 #define ei_outb_p(_v, _p) outb(_v, _p) argument
/openbmc/u-boot/arch/riscv/include/asm/
H A Dstring.h29 #define memset(_p, _v, _n) \ argument
43 #define memzero(_p, _n) \ argument
/openbmc/linux/lib/
H A Dcrc64.c55 const unsigned char *_p = p; in crc64_be() local
75 const unsigned char *_p = p; in crc64_rocksoft_generic() local
H A Dbch.c79 #define GF_M(_p) (CONFIG_BCH_CONST_M) argument
80 #define GF_T(_p) (CONFIG_BCH_CONST_T) argument
81 #define GF_N(_p) ((1 << (CONFIG_BCH_CONST_M))-1) argument
85 #define GF_M(_p) ((_p)->m) argument
86 #define GF_T(_p) ((_p)->t) argument
87 #define GF_N(_p) ((_p)->n) argument
92 #define BCH_ECC_WORDS(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 32) argument
93 #define BCH_ECC_BYTES(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 8) argument
974 #define find_poly_roots(_p, _k, _elp, _loc) chien_search(_p, len, _elp, _loc) argument
/openbmc/linux/security/keys/
H A Dproc.c155 struct rb_node *_p = v; in proc_keys_show() local
277 struct rb_node *_p; in proc_key_users_start() local
305 struct rb_node *_p = v; in proc_key_users_show() local
/openbmc/u-boot/lib/
H A Dbch.c92 #define GF_M(_p) (CONFIG_BCH_CONST_M) argument
93 #define GF_T(_p) (CONFIG_BCH_CONST_T) argument
94 #define GF_N(_p) ((1 << (CONFIG_BCH_CONST_M))-1) argument
96 #define GF_M(_p) ((_p)->m) argument
97 #define GF_T(_p) ((_p)->t) argument
98 #define GF_N(_p) ((_p)->n) argument
101 #define BCH_ECC_WORDS(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 32) argument
102 #define BCH_ECC_BYTES(_p) DIV_ROUND_UP(GF_M(_p)*GF_T(_p), 8) argument
987 #define find_poly_roots(_p, _k, _elp, _loc) chien_search(_p, len, _elp, _loc) argument
/openbmc/linux/drivers/net/ethernet/sfc/
H A Def100_rx.c25 #define PREFIX_WORD(_p, _f) le32_to_cpu((__force __le32)(_p)[PREFIX_OFFSET_W(_f)]) argument
26 #define PREFIX_FIELD(_p, _f) ((PREFIX_WORD(_p, _f) >> PREFIX_OFFSET_B(_f)) & \ argument
/openbmc/linux/include/linux/
H A Dsh_clk.h126 #define SH_CLK_MSTP32(_p, _r, _b, _f) \ argument
129 #define SH_CLK_MSTP32_STS(_p, _r, _b, _s, _f) \ argument
132 #define SH_CLK_MSTP16(_p, _r, _b, _f) \ argument
135 #define SH_CLK_MSTP8(_p, _r, _b, _f) \ argument
H A Dgeneric-radix-tree.h206 #define genradix_for_each_from(_radix, _iter, _p, _start) \ argument
220 #define genradix_for_each(_radix, _iter, _p) \ argument
/openbmc/phosphor-hwmon/
H A Dhwmonio.hpp133 std::string _p; member in hwmonio::HwmonIO
/openbmc/linux/drivers/irqchip/
H A Dirq-mscc-ocelot.c15 #define ICPU_CFG_INTR_DST_INTR_IDENT(_p, x) ((_p)->reg_off_ident + 0x4 * (x)) argument
16 #define ICPU_CFG_INTR_INTR_TRIGGER(_p, x) ((_p)->reg_off_trigger + 0x4 * (x)) argument
/openbmc/linux/fs/proc/
H A Dtask_nommu.c173 static int show_map(struct seq_file *m, void *_p) in show_map()
240 static void *m_next(struct seq_file *m, void *_p, loff_t *ppos) in m_next()
H A Dnommu.c72 static int nommu_region_list_show(struct seq_file *m, void *_p) in nommu_region_list_show()
/openbmc/linux/drivers/iio/potentiometer/
H A Dx9250.c32 #define X9250_CMD_RD_WCR(_p) (0x90 | (_p)) argument
33 #define X9250_CMD_WR_WCR(_p) (0xa0 | (_p)) argument
/openbmc/linux/net/rxrpc/
H A Dconn_object.c379 struct rxrpc_connection *conn, *_p; in rxrpc_service_connection_reaper() local
458 struct rxrpc_connection *conn, *_p; in rxrpc_destroy_all_connections() local
/openbmc/linux/drivers/clk/sunxi-ng/
H A Dccu_mp.c19 unsigned int _m, _p; in ccu_mp_find_best() local
51 unsigned int _m, _p, div; in ccu_mp_find_best_with_parent_adj() local
/openbmc/linux/fs/afs/
H A Dflock.c92 struct file_lock *p, *_p; in afs_grant_locks() local
113 struct file_lock *p, *_p, *next = NULL; in afs_next_locker() local
/openbmc/linux/tools/perf/util/
H A Dperf_event_attr_fprintf.c262 #define PRINT_ATTRn(_n, _f, _p, _a) \ argument
270 #define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p, false) argument
/openbmc/linux/arch/powerpc/platforms/pseries/
H A Dcmm.c39 #define KB2PAGES(_p) ((_p)>>(PAGE_SHIFT-10)) argument
40 #define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10)) argument
/openbmc/linux/drivers/clk/sunxi/
H A Dclk-sun9i-core.c156 u32 _p; in sun9i_a80_get_ahb_factors() local

123