Home
last modified time | relevance | path

Searched defs:w (Results 1 – 200 of 723) sorted by relevance

1234

/linux-4.4.14/include/asm-generic/bitops/
Dconst_hweight.h7 #define __const_hweight8(w) \ argument
18 #define __const_hweight16(w) (__const_hweight8(w) + __const_hweight8((w) >> 8 )) argument
19 #define __const_hweight32(w) (__const_hweight16(w) + __const_hweight16((w) >> 16)) argument
20 #define __const_hweight64(w) (__const_hweight32(w) + __const_hweight32((w) >> 32)) argument
25 #define hweight8(w) (__builtin_constant_p(w) ? __const_hweight8(w) : __arch_hweight8(w)) argument
26 #define hweight16(w) (__builtin_constant_p(w) ? __const_hweight16(w) : __arch_hweight16(w)) argument
27 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w)) argument
28 #define hweight64(w) (__builtin_constant_p(w) ? __const_hweight64(w) : __arch_hweight64(w)) argument
33 #define HWEIGHT8(w) (BUILD_BUG_ON_ZERO(!__builtin_constant_p(w)) + __const_hweight8(w)) argument
34 #define HWEIGHT16(w) (BUILD_BUG_ON_ZERO(!__builtin_constant_p(w)) + __const_hweight16(w)) argument
[all …]
Darch_hweight.h6 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32()
11 static inline unsigned int __arch_hweight16(unsigned int w) in __arch_hweight16()
16 static inline unsigned int __arch_hweight8(unsigned int w) in __arch_hweight8()
21 static inline unsigned long __arch_hweight64(__u64 w) in __arch_hweight64()
/linux-4.4.14/arch/cris/include/arch-v32/arch/
Dbitops.h12 cris_swapnwbrlz(unsigned long w) in cris_swapnwbrlz()
24 cris_swapwbrlz(unsigned long w) in cris_swapwbrlz()
40 ffz(unsigned long w) in ffz()
50 __ffs(unsigned long w) in __ffs()
59 kernel_ffs(unsigned long w) in kernel_ffs()
/linux-4.4.14/arch/tile/include/asm/
Dbitops.h43 static inline int fls64(__u64 w) in fls64()
64 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32()
69 static inline unsigned int __arch_hweight16(unsigned int w) in __arch_hweight16()
74 static inline unsigned int __arch_hweight8(unsigned int w) in __arch_hweight8()
79 static inline unsigned long __arch_hweight64(__u64 w) in __arch_hweight64()
/linux-4.4.14/net/ipv4/
Dtcp_westwood.c62 struct westwood *w = inet_csk_ca(sk); in tcp_westwood_init() local
85 static void westwood_filter(struct westwood *w, u32 delta) in westwood_filter()
104 struct westwood *w = inet_csk_ca(sk); in tcp_westwood_pkts_acked() local
117 struct westwood *w = inet_csk_ca(sk); in westwood_update_window() local
146 static inline void update_rtt_min(struct westwood *w) in update_rtt_min()
164 struct westwood *w = inet_csk_ca(sk); in westwood_fast_bw() local
181 struct westwood *w = inet_csk_ca(sk); in westwood_acked_count() local
218 const struct westwood *w = inet_csk_ca(sk); in tcp_westwood_bw_rttmin() local
226 struct westwood *w = inet_csk_ca(sk); in tcp_westwood_ack() local
241 struct westwood *w = inet_csk_ca(sk); in tcp_westwood_event() local
/linux-4.4.14/arch/x86/include/asm/
Darch_hweight.h24 static __always_inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32()
35 static inline unsigned int __arch_hweight16(unsigned int w) in __arch_hweight16()
40 static inline unsigned int __arch_hweight8(unsigned int w) in __arch_hweight8()
46 static inline unsigned long __arch_hweight64(__u64 w) in __arch_hweight64()
52 static __always_inline unsigned long __arch_hweight64(__u64 w) in __arch_hweight64()
/linux-4.4.14/arch/mips/include/asm/
Darch_hweight.h14 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32()
19 static inline unsigned int __arch_hweight16(unsigned int w) in __arch_hweight16()
24 static inline unsigned int __arch_hweight8(unsigned int w) in __arch_hweight8()
29 static inline unsigned long __arch_hweight64(__u64 w) in __arch_hweight64()
/linux-4.4.14/tools/lib/
Dhweight.c11 unsigned int __sw_hweight32(unsigned int w) in __sw_hweight32()
27 unsigned int __sw_hweight16(unsigned int w) in __sw_hweight16()
35 unsigned int __sw_hweight8(unsigned int w) in __sw_hweight8()
42 unsigned long __sw_hweight64(__u64 w) in __sw_hweight64()
/linux-4.4.14/lib/
Dhweight.c12 unsigned int __sw_hweight32(unsigned int w) in __sw_hweight32()
29 unsigned int __sw_hweight16(unsigned int w) in __sw_hweight16()
38 unsigned int __sw_hweight8(unsigned int w) in __sw_hweight8()
46 unsigned long __sw_hweight64(__u64 w) in __sw_hweight64()
Donce.c11 static void once_deferred(struct work_struct *w) in once_deferred()
23 struct once_work *w; in once_disable_jump() local
Dinflate.c170 #define flush_output(w) (wp=(w),flush_window()) argument
347 register int w; /* bits before this table == (l * h) */ in huft_build() local
599 unsigned w; /* current window position */ in inflate_codes() local
707 unsigned w; /* current window position */ in inflate_stored() local
Dmd5.c10 #define MD5STEP(f, w, x, y, z, in, s) \ argument
/linux-4.4.14/kernel/locking/
Drtmutex.h16 #define debug_rt_mutex_init_waiter(w) do { } while (0) argument
17 #define debug_rt_mutex_free_waiter(w) do { } while (0) argument
24 #define debug_rt_mutex_print_deadlock(w) do { } while (0) argument
25 #define debug_rt_mutex_reset_waiter(w) do { } while (0) argument
27 static inline void rt_mutex_print_deadlock(struct rt_mutex_waiter *w) in rt_mutex_print_deadlock()
32 static inline bool debug_rt_mutex_detect_deadlock(struct rt_mutex_waiter *w, in debug_rt_mutex_detect_deadlock()
Drtmutex-debug.h27 # define debug_rt_mutex_reset_waiter(w) \ argument
36 static inline void rt_mutex_print_deadlock(struct rt_mutex_waiter *w) in rt_mutex_print_deadlock()
Drtmutex_common.h49 struct rt_mutex_waiter *w; in rt_mutex_top_waiter() local
/linux-4.4.14/arch/cris/include/arch-v10/arch/
Dbitops.h13 static inline unsigned long cris_swapnwbrlz(unsigned long w) in cris_swapnwbrlz()
29 static inline unsigned long cris_swapwbrlz(unsigned long w) in cris_swapwbrlz()
43 static inline unsigned long ffz(unsigned long w) in ffz()
68 static inline unsigned long kernel_ffs(unsigned long w) in kernel_ffs()
/linux-4.4.14/fs/xfs/libxfs/
Dxfs_trans_space.h26 #define XFS_EXTENTADD_SPACE_RES(mp,w) (XFS_BM_MAXLEVELS(mp,w) - 1) argument
27 #define XFS_NEXTENTADD_SPACE_RES(mp,b,w)\ argument
31 #define XFS_DAENTER_1B(mp,w) \ argument
33 #define XFS_DAENTER_DBS(mp,w) \ argument
35 #define XFS_DAENTER_BLOCKS(mp,w) \ argument
37 #define XFS_DAENTER_BMAP1B(mp,w) \ argument
39 #define XFS_DAENTER_BMAPS(mp,w) \ argument
41 #define XFS_DAENTER_SPACE_RES(mp,w) \ argument
43 #define XFS_DAREMOVE_SPACE_RES(mp,w) XFS_DAENTER_BMAPS(mp,w) argument
Dxfs_inode_fork.h92 #define XFS_IFORK_PTR(ip,w) \ argument
105 #define XFS_IFORK_SIZE(ip,w) \ argument
109 #define XFS_IFORK_FORMAT(ip,w) \ argument
113 #define XFS_IFORK_FMT_SET(ip,w,n) \ argument
117 #define XFS_IFORK_NEXTENTS(ip,w) \ argument
121 #define XFS_IFORK_NEXT_SET(ip,w,n) \ argument
125 #define XFS_IFORK_MAXEXT(ip, w) \ argument
Dxfs_bmap.h131 static inline int xfs_bmapi_aflag(int w) in xfs_bmapi_aflag()
186 #define XFS_BMAP_TRACE_EXLIST(ip,c,w) \ argument
189 #define XFS_BMAP_TRACE_EXLIST(ip,c,w) argument
Dxfs_bit.h62 __uint32_t w = (__uint32_t)v; in xfs_lowbit64() local
/linux-4.4.14/arch/m68k/include/asm/
Dmcf8390.h29 #define BSWAP(w) (((w) << 8) | ((w) >> 8)) argument
30 #define RSWAP(w) (w) argument
80 #define BSWAP(w) (w) argument
83 #define RSWAP(w) (((w) << 8) | ((w) >> 8)) argument
94 #define BSWAP(w) (w) argument
97 #define RSWAP(w) (((w) << 8) | ((w) >> 8)) argument
106 #define BSWAP(w) (w) argument
109 #define RSWAP(w) (((w) << 8) | ((w) >> 8)) argument
Draw_io.h44 #define out_be16(addr,w) (void)((*(__force volatile u16 *) (addr)) = (w)) argument
46 #define out_le16(addr,w) (void)((*(__force volatile __le16 *) (addr)) = cpu_to_le16(w)) argument
98 #define rom_out_be16(addr, w) \ argument
102 #define rom_out_le16(addr, w) \ argument
/linux-4.4.14/sound/soc/
Dsoc-dapm.c160 static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w) in dapm_dirty_widget()
165 static void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason) in dapm_mark_dirty()
184 struct snd_soc_dapm_widget *w, enum snd_soc_dapm_direction dir) in dapm_widget_invalidate_paths()
224 static void dapm_widget_invalidate_input_paths(struct snd_soc_dapm_widget *w) in dapm_widget_invalidate_input_paths()
241 static void dapm_widget_invalidate_output_paths(struct snd_soc_dapm_widget *w) in dapm_widget_invalidate_output_paths()
280 struct snd_soc_dapm_widget *w; in dapm_mark_endpoints_dirty() local
540 struct snd_soc_dapm_widget *w; in dapm_reset() local
593 struct snd_soc_dapm_widget *w = wcache->widget; in dapm_wcache_lookup() local
614 struct snd_soc_dapm_widget *w) in dapm_wcache_update()
690 struct snd_soc_dapm_widget *w) in dapm_connect_mux()
[all …]
Dsoc-topology.c325 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w) in soc_tplg_widget_load()
454 struct snd_soc_dapm_widget *w = in remove_widget() local
591 int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w, in snd_soc_tplg_widget_bind_event()
1371 struct snd_soc_tplg_dapm_widget *w) in soc_tplg_dapm_widget_create()
1778 void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w) in snd_soc_tplg_widget_remove()
1792 struct snd_soc_dapm_widget *w, *next_w; in snd_soc_tplg_widget_remove_all() local
/linux-4.4.14/sound/soc/intel/skylake/
Dskl-topology.c38 static int is_skl_dsp_widget_type(struct snd_soc_dapm_widget *w) in is_skl_dsp_widget_type()
227 static void skl_tplg_update_module_params(struct snd_soc_dapm_widget *w, in skl_tplg_update_module_params()
264 struct snd_soc_dapm_widget *w, struct skl_pipe *pipe) in skl_tplg_alloc_pipe_widget()
303 struct snd_soc_dapm_widget *w; in skl_tplg_init_pipe_modules() local
337 static int skl_tplg_mixer_dapm_pre_pmu_event(struct snd_soc_dapm_widget *w, in skl_tplg_mixer_dapm_pre_pmu_event()
410 static int skl_tplg_pga_dapm_pre_pmu_event(struct snd_soc_dapm_widget *w, in skl_tplg_pga_dapm_pre_pmu_event()
489 static int skl_tplg_mixer_dapm_post_pmu_event(struct snd_soc_dapm_widget *w, in skl_tplg_mixer_dapm_post_pmu_event()
552 static int skl_tplg_mixer_dapm_pre_pmd_event(struct snd_soc_dapm_widget *w, in skl_tplg_mixer_dapm_pre_pmd_event()
614 static int skl_tplg_mixer_dapm_post_pmd_event(struct snd_soc_dapm_widget *w, in skl_tplg_mixer_dapm_post_pmd_event()
653 static int skl_tplg_pga_dapm_post_pmd_event(struct snd_soc_dapm_widget *w, in skl_tplg_pga_dapm_post_pmd_event()
[all …]
/linux-4.4.14/drivers/input/joystick/
Dwalkera0701.c66 static inline void walkera0701_parse_frame(struct walkera_dev *w) in walkera0701_parse_frame()
130 struct walkera_dev *w = handler_data; in walkera0701_irq_handler() local
174 struct walkera_dev *w; in timer_handler() local
184 struct walkera_dev *w = input_get_drvdata(dev); in walkera0701_open() local
195 struct walkera_dev *w = input_get_drvdata(dev); in walkera0701_close() local
206 struct walkera_dev *w = &w_dev; in walkera0701_attach() local
286 struct walkera_dev *w = &w_dev; in walkera0701_detach() local
/linux-4.4.14/arch/tile/lib/
Dchecksum.c44 unsigned int w = *(const unsigned int *)buff; in do_csum() local
60 unsigned long w = *(const unsigned long *)buff; in do_csum() local
71 unsigned int w = *(const unsigned int *)buff; in do_csum() local
/linux-4.4.14/arch/blackfin/include/asm/
Dbitops.h114 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32()
124 static inline unsigned int __arch_hweight64(__u64 w) in __arch_hweight64()
130 static inline unsigned int __arch_hweight16(unsigned int w) in __arch_hweight16()
135 static inline unsigned int __arch_hweight8(unsigned int w) in __arch_hweight8()
/linux-4.4.14/arch/arm/mach-omap1/include/mach/
Dusb.h39 # define USB2_TRX_MODE(w) (((w)>>24)&0x07) argument
40 # define USB1_TRX_MODE(w) (((w)>>20)&0x07) argument
41 # define USB0_TRX_MODE(w) (((w)>>16)&0x07) argument
53 # define SRP_GPUVBUS(w) (((w)>>24)&0x07) argument
54 # define A_WAIT_VRISE(w) (((w)>>20)&0x07) argument
55 # define B_ASE_BRST(w) (((w)>>16)&0x07) argument
64 # define OTG_HMC(w) (((w)>>0)&0x3f) argument
/linux-4.4.14/arch/arm/mach-omap1/
Dlcd_dma.c138 u16 w; in set_b1_regs() local
287 u16 w; in lcd_dma_irq_handler() local
351 u16 w; in omap_enable_lcd_dma() local
384 u16 w; in omap_setup_lcd_dma() local
402 u16 w; in omap_stop_lcd_dma() local
426 u16 w; in omap_init_lcd_dma() local
Dusb.c111 u16 w; in omap_otg_init() local
564 u16 w; in omap_1510_usb_init() local
/linux-4.4.14/drivers/watchdog/
Drt2880_wdt.c66 static int rt288x_wdt_ping(struct watchdog_device *w) in rt288x_wdt_ping()
73 static int rt288x_wdt_start(struct watchdog_device *w) in rt288x_wdt_start()
93 static int rt288x_wdt_stop(struct watchdog_device *w) in rt288x_wdt_stop()
106 static int rt288x_wdt_set_timeout(struct watchdog_device *w, unsigned int t) in rt288x_wdt_set_timeout()
Dsoftdog.c106 static int softdog_ping(struct watchdog_device *w) in softdog_ping()
112 static int softdog_stop(struct watchdog_device *w) in softdog_stop()
118 static int softdog_set_timeout(struct watchdog_device *w, unsigned int t) in softdog_set_timeout()
Dmpc8xxx_wdt.c93 static int mpc8xxx_wdt_start(struct watchdog_device *w) in mpc8xxx_wdt_start()
113 static int mpc8xxx_wdt_ping(struct watchdog_device *w) in mpc8xxx_wdt_ping()
122 static int mpc8xxx_wdt_stop(struct watchdog_device *w) in mpc8xxx_wdt_stop()
Dbcm_kona_wdt.c39 #define SECS_TO_TICKS(x, w) ((x) << (w)->resolution) argument
40 #define TICKS_TO_SECS(x, w) ((x) >> (w)->resolution) argument
/linux-4.4.14/include/linux/mtd/
Dcfi_endian.h50 #define _cpu_to_cfi(w, s, x) (cfi_host(s)?(x):_swap_to_cfi(w, s, x)) argument
51 #define _cfi_to_cpu(w, s, x) (cfi_host(s)?(x):_swap_to_cpu(w, s, x)) argument
52 #define _swap_to_cfi(w, s, x) (cfi_be(s)?cpu_to_be##w(x):cpu_to_le##w(x)) argument
53 #define _swap_to_cpu(w, s, x) (cfi_be(s)?be##w##_to_cpu(x):le##w##_to_cpu(x)) argument
/linux-4.4.14/drivers/media/platform/s5p-mfc/
Dregs-mfc-v8.h100 #define S5P_FIMV_TMV_BUFFER_SIZE_V8(w, h) (((w) + 1) * ((h) + 1) * 8) argument
102 #define S5P_FIMV_SCRATCH_BUF_SIZE_H264_DEC_V8(w, h) (((w) * 704) + 2176) argument
103 #define S5P_FIMV_SCRATCH_BUF_SIZE_VP8_DEC_V8(w, h) \ argument
106 #define S5P_FIMV_SCRATCH_BUF_SIZE_H264_ENC_V8(w, h) \ argument
108 #define S5P_FIMV_SCRATCH_BUF_SIZE_VP8_ENC_V8(w, h) \ argument
Dregs-mfc-v7.h53 #define S5P_FIMV_SCRATCH_BUF_SIZE_MPEG4_DEC_V7(w, h) \ argument
56 #define S5P_FIMV_SCRATCH_BUF_SIZE_VP8_ENC_V7(w, h) \ argument
Dregs-mfc-v6.h380 #define S5P_FIMV_TMV_BUFFER_SIZE_V6(w, h) (((w) + 1) * ((h) + 3) * 8) argument
384 #define S5P_FIMV_SCRATCH_BUF_SIZE_H264_DEC_V6(w, h) (((w) * 192) + 64) argument
385 #define S5P_FIMV_SCRATCH_BUF_SIZE_MPEG4_DEC_V6(w, h) \ argument
387 #define S5P_FIMV_SCRATCH_BUF_SIZE_VC1_DEC_V6(w, h) \ argument
389 #define S5P_FIMV_SCRATCH_BUF_SIZE_H263_DEC_V6(w, h) ((w) * 400) argument
390 #define S5P_FIMV_SCRATCH_BUF_SIZE_VP8_DEC_V6(w, h) \ argument
392 #define S5P_FIMV_SCRATCH_BUF_SIZE_H264_ENC_V6(w, h) \ argument
394 #define S5P_FIMV_SCRATCH_BUF_SIZE_MPEG4_ENC_V6(w, h) \ argument
/linux-4.4.14/drivers/md/bcache/
Dwriteback.c105 static void dirty_init(struct keybuf_key *w) in dirty_init()
130 struct keybuf_key *w = io->bio.bi_private; in write_dirty_finish() local
171 struct keybuf_key *w = bio->bi_private; in dirty_endio() local
183 struct keybuf_key *w = io->bio.bi_private; in write_dirty() local
198 struct keybuf_key *w = bio->bi_private; in read_dirty_endio() local
219 struct keybuf_key *w; in read_dirty() local
Djournal.c552 struct journal_write *w = bio->bi_private; in journal_write_endio() local
563 struct journal_write *w = (j->cur == j->w) in journal_write_done() local
584 struct journal_write *w = c->journal.cur; in journal_write_unlocked() local
668 struct journal_write *w = c->journal.cur; in journal_try_write() local
692 struct journal_write *w = c->journal.cur; in journal_wait_for_write() local
756 struct journal_write *w; in bch_journal() local
Dbtree.c325 static void btree_complete_write(struct btree *b, struct btree_write *w) in btree_complete_write()
350 struct btree_write *w = btree_prev_write(b); in __btree_node_write_done() local
508 static void btree_node_write_work(struct work_struct *w) in btree_node_write_work()
521 struct btree_write *w = btree_current_write(b); in bch_btree_leaf_dirty() local
1678 struct keybuf_key *w, *n; in bch_btree_gc_finish() local
2378 struct keybuf_key *w; in refill_keybuf_fn() local
2431 struct keybuf_key *w; in bch_refill_keybuf() local
2445 static void __bch_keybuf_del(struct keybuf *buf, struct keybuf_key *w) in __bch_keybuf_del()
2451 void bch_keybuf_del(struct keybuf *buf, struct keybuf_key *w) in bch_keybuf_del()
2462 struct keybuf_key *p, *w, s; in bch_keybuf_check_overlapping() local
[all …]
Dmovinggc.c16 struct keybuf_key *w; member
131 struct keybuf_key *w; in read_moving() local
Dbtree.h225 static inline void rw_lock(bool w, struct btree *b, int level) in rw_lock()
233 static inline void rw_unlock(bool w, struct btree *b) in rw_unlock()
/linux-4.4.14/net/ipv6/
Dip6_fib.c51 struct fib6_walker w; member
82 #define FOR_WALKERS(w) list_for_each_entry(w, &fib6_walkers, lh) argument
84 static void fib6_walker_link(struct fib6_walker *w) in fib6_walker_link()
91 static void fib6_walker_unlink(struct fib6_walker *w) in fib6_walker_unlink()
309 static int fib6_dump_node(struct fib6_walker *w) in fib6_dump_node()
328 struct fib6_walker *w = (void *)cb->args[2]; in fib6_dump_end() local
351 struct fib6_walker *w; in fib6_dump_table() local
396 struct fib6_walker *w; in inet6_dump_fib() local
1284 struct fib6_walker *w; in fib6_repair_tree() local
1386 struct fib6_walker *w; in fib6_del_route() local
[all …]
/linux-4.4.14/drivers/staging/skein/
Dskein_base.c27 u64 w[SKEIN_256_STATE_WORDS]; in skein_256_init() member
87 u64 w[SKEIN_256_STATE_WORDS]; in skein_256_init_ext() member
251 u64 w[SKEIN_512_STATE_WORDS]; in skein_512_init() member
315 u64 w[SKEIN_512_STATE_WORDS]; in skein_512_init_ext() member
478 u64 w[SKEIN_1024_STATE_WORDS]; in skein_1024_init() member
536 u64 w[SKEIN_1024_STATE_WORDS]; in skein_1024_init_ext() member
/linux-4.4.14/drivers/block/drbd/
Ddrbd_worker.c320 static int w_e_send_csum(struct drbd_work *w, int cancel) in w_e_send_csum()
407 int w_resync_timer(struct drbd_work *w, int cancel) in w_resync_timer()
785 int w_ov_finished(struct drbd_work *w, int cancel) in w_ov_finished()
797 static int w_resync_finished(struct drbd_work *w, int cancel) in w_resync_finished()
996 int w_e_end_data_req(struct drbd_work *w, int cancel) in w_e_end_data_req()
1033 int w_e_end_rsdata_req(struct drbd_work *w, int cancel) in w_e_end_rsdata_req()
1083 int w_e_end_csum_rs_req(struct drbd_work *w, int cancel) in w_e_end_csum_rs_req()
1147 int w_e_end_ov_req(struct drbd_work *w, int cancel) in w_e_end_ov_req()
1204 int w_e_end_ov_reply(struct drbd_work *w, int cancel) in w_e_end_ov_reply()
1298 int w_send_write_hint(struct drbd_work *w, int cancel) in w_send_write_hint()
[all …]
/linux-4.4.14/drivers/xen/events/
Devents_fifo.c74 #define BM(w) (unsigned long *)((unsigned long)w & ~0x7UL) argument
75 #define EVTCHN_FIFO_BIT(b, w) \ argument
80 #define BM(w) ((unsigned long *)(w)) argument
81 #define EVTCHN_FIFO_BIT(b, w) EVTCHN_FIFO_ ##b argument
234 event_word_t new, old, w; in clear_masked() local
260 event_word_t new, old, w; in clear_linked() local
Devents_2l.c39 #define EVTCHN_FIRST_BIT(w) find_first_bit(BM(&(w)), BITS_PER_EVTCHN_WORD) argument
142 #define MASK_LSBS(w, i) (w & ((~((xen_ulong_t)0UL)) << i)) argument
/linux-4.4.14/arch/m32r/platforms/mappi/
Dio.c70 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw()
102 unsigned short w; in _inw() local
106 unsigned short w; in _inw() local
166 void _outw(unsigned short w, unsigned long port) in _outw()
199 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/drivers/usb/host/
Dxhci-mvebu.c18 #define USB3_WIN_CTRL(w) (0x0 + ((w) * 8)) argument
19 #define USB3_WIN_BASE(w) (0x4 + ((w) * 8)) argument
/linux-4.4.14/arch/xtensa/mm/
Dtlb.c26 int w, i; in __flush_itlb_all() local
39 int w, i; in __flush_dtlb_all() local
216 static int check_tlb_entry(unsigned w, unsigned e, bool dtlb) in check_tlb_entry()
261 unsigned w, e; in check_tlb_sanity() local
/linux-4.4.14/drivers/gpu/drm/omapdrm/
Dtcm-sita.c208 static s32 sita_reserve_2d(struct tcm *tcm, u16 h, u16 w, u8 align, in sita_reserve_2d()
274 static s32 scan_r2l_t2b(struct tcm *tcm, u16 w, u16 h, u16 align, in scan_r2l_t2b()
348 static s32 scan_l2r_t2b(struct tcm *tcm, u16 w, u16 h, u16 align, in scan_l2r_t2b()
502 static s32 scan_areas_and_find_fit(struct tcm *tcm, u16 w, u16 h, u16 align, in scan_areas_and_find_fit()
559 static s32 is_area_free(struct tcm_area ***map, u16 x0, u16 y0, u16 w, u16 h) in is_area_free()
602 static s32 update_candidate(struct tcm *tcm, u16 x0, u16 y0, u16 w, u16 h, in update_candidate()
Domap_dmm_tiler.c359 struct tiler_block *tiler_reserve_2d(enum tiler_fmt fmt, uint16_t w, in tiler_reserve_2d()
511 void tiler_align(enum tiler_fmt fmt, uint16_t *w, uint16_t *h) in tiler_align()
528 size_t tiler_size(enum tiler_fmt fmt, uint16_t w, uint16_t h) in tiler_size()
534 size_t tiler_vsize(enum tiler_fmt fmt, uint16_t w, uint16_t h) in tiler_vsize()
834 int w = (map_width(xdiv, x0, x1) - strlen(nice)) / 2; in text_map() local
/linux-4.4.14/drivers/spi/
Dspi-omap-uwire.c120 u16 w, val = 0; in omap_uwire_configure_mode() local
143 u16 w; in wait_uwire_csr_flag() local
166 u16 w; in uwire_set_clk1_div() local
177 u16 w; in uwire_chipselect() local
210 u16 val, w; in uwire_txrx() local
/linux-4.4.14/arch/mips/kernel/
Dcpu-bugs64.c45 static inline void mult_sh_align_mod(long *v1, long *v2, long *w, in mult_sh_align_mod()
122 long v1[8], v2[8], w[8]; in check_mult_sh() local
251 long v, w, tmp; in check_daddiu() local
/linux-4.4.14/sound/soc/davinci/
Ddavinci-vcif.c61 u32 w; in davinci_vcif_start() local
80 u32 w; in davinci_vcif_stop() local
98 u32 w; in davinci_vcif_hw_params() local
/linux-4.4.14/include/linux/ceph/
Dmdsmap.h37 ceph_mdsmap_get_addr(struct ceph_mdsmap *m, int w) in ceph_mdsmap_get_addr()
44 static inline int ceph_mdsmap_get_state(struct ceph_mdsmap *m, int w) in ceph_mdsmap_get_state()
52 static inline bool ceph_mdsmap_is_laggy(struct ceph_mdsmap *m, int w) in ceph_mdsmap_is_laggy()
/linux-4.4.14/drivers/staging/vt6655/
Dtmacro.h35 #define LOBYTE(w) ((unsigned char)(w)) argument
38 #define HIBYTE(w) ((unsigned char)(((unsigned short)(w) >> 8) & 0xFF)) argument
/linux-4.4.14/sound/soc/intel/atom/
Dsst-atom-controls.c510 static int sst_send_pipe_module_params(struct snd_soc_dapm_widget *w, in sst_send_pipe_module_params()
525 static int sst_generic_modules_event(struct snd_soc_dapm_widget *w, in sst_generic_modules_event()
611 static int sst_swm_mixer_event(struct snd_soc_dapm_widget *w, in sst_swm_mixer_event()
956 static int sst_set_be_modules(struct snd_soc_dapm_widget *w, in sst_set_be_modules()
974 static int sst_set_media_path(struct snd_soc_dapm_widget *w, in sst_set_media_path()
1011 static int sst_set_media_loop(struct snd_soc_dapm_widget *w, in sst_set_media_loop()
1267 static bool is_sst_dapm_widget(struct snd_soc_dapm_widget *w) in is_sst_dapm_widget()
1292 struct snd_soc_dapm_widget *w; in sst_send_pipe_gains() local
1353 struct snd_soc_dapm_widget *w, int type) in sst_fill_module_list()
1393 static int sst_fill_widget_module_info(struct snd_soc_dapm_widget *w, in sst_fill_widget_module_info()
[all …]
/linux-4.4.14/sound/soc/pxa/
De750_wm9705.c28 static int e750_spk_amp_event(struct snd_soc_dapm_widget *w, in e750_spk_amp_event()
39 static int e750_hp_amp_event(struct snd_soc_dapm_widget *w, in e750_hp_amp_event()
De800_wm9712.c27 static int e800_spk_amp_event(struct snd_soc_dapm_widget *w, in e800_spk_amp_event()
38 static int e800_hp_amp_event(struct snd_soc_dapm_widget *w, in e800_hp_amp_event()
De740_wm9705.c41 static int e740_mic_amp_event(struct snd_soc_dapm_widget *w, in e740_mic_amp_event()
54 static int e740_output_amp_event(struct snd_soc_dapm_widget *w, in e740_output_amp_event()
Dhx4700.c88 static int hx4700_spk_power(struct snd_soc_dapm_widget *w, in hx4700_spk_power()
95 static int hx4700_hp_power(struct snd_soc_dapm_widget *w, in hx4700_hp_power()
Dmagician.c334 static int magician_spk_power(struct snd_soc_dapm_widget *w, in magician_spk_power()
341 static int magician_hp_power(struct snd_soc_dapm_widget *w, in magician_hp_power()
348 static int magician_mic_bias(struct snd_soc_dapm_widget *w, in magician_mic_bias()
Dcorgi.c203 static int corgi_amp_event(struct snd_soc_dapm_widget *w, in corgi_amp_event()
210 static int corgi_mic_event(struct snd_soc_dapm_widget *w, in corgi_mic_event()
/linux-4.4.14/sound/soc/codecs/
Dpcm3008.c31 static int pcm3008_dac_ev(struct snd_soc_dapm_widget *w, in pcm3008_dac_ev()
44 static int pcm3008_adc_ev(struct snd_soc_dapm_widget *w, in pcm3008_adc_ev()
Dsn95031.c237 static int sn95031_vhs_event(struct snd_soc_dapm_widget *w, in sn95031_vhs_event()
256 static int sn95031_vihf_event(struct snd_soc_dapm_widget *w, in sn95031_vihf_event()
273 static int sn95031_dmic12_event(struct snd_soc_dapm_widget *w, in sn95031_dmic12_event()
291 static int sn95031_dmic34_event(struct snd_soc_dapm_widget *w, in sn95031_dmic34_event()
309 static int sn95031_dmic56_event(struct snd_soc_dapm_widget *w, in sn95031_dmic56_event()
Dwm5110.c159 static int wm5110_sysclk_ev(struct snd_soc_dapm_widget *w, in wm5110_sysclk_ev()
266 static int wm5110_hp_pre_enable(struct snd_soc_dapm_widget *w) in wm5110_hp_pre_enable()
303 static int wm5110_hp_pre_disable(struct snd_soc_dapm_widget *w) in wm5110_hp_pre_disable()
335 static int wm5110_hp_ev(struct snd_soc_dapm_widget *w, in wm5110_hp_ev()
477 static int wm5110_in_analog_ev(struct snd_soc_dapm_widget *w, in wm5110_in_analog_ev()
536 static int wm5110_in_ev(struct snd_soc_dapm_widget *w, in wm5110_in_ev()
Drt5651.c375 static int set_dmic_clk(struct snd_soc_dapm_widget *w, in set_dmic_clk()
732 static int rt5651_amp_power_event(struct snd_soc_dapm_widget *w, in rt5651_amp_power_event()
770 static int rt5651_hp_event(struct snd_soc_dapm_widget *w, in rt5651_hp_event()
814 static int rt5651_hp_post_event(struct snd_soc_dapm_widget *w, in rt5651_hp_post_event()
835 static int rt5651_bst1_event(struct snd_soc_dapm_widget *w, in rt5651_bst1_event()
858 static int rt5651_bst2_event(struct snd_soc_dapm_widget *w, in rt5651_bst2_event()
881 static int rt5651_bst3_event(struct snd_soc_dapm_widget *w, in rt5651_bst3_event()
Drt286.c432 static int rt286_spk_event(struct snd_soc_dapm_widget *w, in rt286_spk_event()
454 static int rt286_set_dmic1_event(struct snd_soc_dapm_widget *w, in rt286_set_dmic1_event()
473 static int rt286_vref_event(struct snd_soc_dapm_widget *w, in rt286_vref_event()
491 static int rt286_ldo2_event(struct snd_soc_dapm_widget *w, in rt286_ldo2_event()
510 static int rt286_mic1_event(struct snd_soc_dapm_widget *w, in rt286_mic1_event()
Dwm_hubs.c499 static int hp_supply_event(struct snd_soc_dapm_widget *w, in hp_supply_event()
541 static int hp_event(struct snd_soc_dapm_widget *w, in hp_event()
593 static int earpiece_event(struct snd_soc_dapm_widget *w, in earpiece_event()
618 static int lineout_event(struct snd_soc_dapm_widget *w, in lineout_event()
648 static int micbias_event(struct snd_soc_dapm_widget *w, in micbias_event()
Drt298.c430 static int rt298_spk_event(struct snd_soc_dapm_widget *w, in rt298_spk_event()
452 static int rt298_set_dmic1_event(struct snd_soc_dapm_widget *w, in rt298_set_dmic1_event()
471 static int rt298_adc_event(struct snd_soc_dapm_widget *w, in rt298_adc_event()
497 static int rt298_mic1_event(struct snd_soc_dapm_widget *w, in rt298_mic1_event()
522 static int rt298_vref_event(struct snd_soc_dapm_widget *w, in rt298_vref_event()
Dsirf-audio-codec.c93 static int adc_enable_delay_event(struct snd_soc_dapm_widget *w, in adc_enable_delay_event()
118 static int atlas6_codec_enable_and_reset_event(struct snd_soc_dapm_widget *w, in atlas6_codec_enable_and_reset_event()
141 static int prima2_codec_enable_and_reset_event(struct snd_soc_dapm_widget *w, in prima2_codec_enable_and_reset_event()
Drt5640.c459 static int set_dmic_clk(struct snd_soc_dapm_widget *w, in set_dmic_clk()
970 static int rt5640_hp_event(struct snd_soc_dapm_widget *w, in rt5640_hp_event()
994 static int rt5640_lout_event(struct snd_soc_dapm_widget *w, in rt5640_lout_event()
1023 static int rt5640_hp_power_event(struct snd_soc_dapm_widget *w, in rt5640_hp_power_event()
1039 static int rt5640_hp_post_event(struct snd_soc_dapm_widget *w, in rt5640_hp_post_event()
Dtwl4030.c621 static int handsfreelpga_event(struct snd_soc_dapm_widget *w, in handsfreelpga_event()
637 static int handsfreerpga_event(struct snd_soc_dapm_widget *w, in handsfreerpga_event()
653 static int vibramux_event(struct snd_soc_dapm_widget *w, in vibramux_event()
662 static int apll_event(struct snd_soc_dapm_widget *w, in apll_event()
678 static int aif_event(struct snd_soc_dapm_widget *w, in aif_event()
767 static int headsetlpga_event(struct snd_soc_dapm_widget *w, in headsetlpga_event()
792 static int headsetrpga_event(struct snd_soc_dapm_widget *w, in headsetrpga_event()
817 static int digimic_event(struct snd_soc_dapm_widget *w, in digimic_event()
Dwm8994.c808 static int clk_sys_event(struct snd_soc_dapm_widget *w, in clk_sys_event()
983 static int vmid_event(struct snd_soc_dapm_widget *w, in vmid_event()
1039 static int aif1clk_ev(struct snd_soc_dapm_widget *w, in aif1clk_ev()
1137 static int aif2clk_ev(struct snd_soc_dapm_widget *w, in aif2clk_ev()
1222 static int aif1clk_late_ev(struct snd_soc_dapm_widget *w, in aif1clk_late_ev()
1240 static int aif2clk_late_ev(struct snd_soc_dapm_widget *w, in aif2clk_late_ev()
1258 static int late_enable_ev(struct snd_soc_dapm_widget *w, in late_enable_ev()
1291 static int late_disable_ev(struct snd_soc_dapm_widget *w, in late_disable_ev()
1319 static int adc_mux_ev(struct snd_soc_dapm_widget *w, in adc_mux_ev()
1326 static int micbias_ev(struct snd_soc_dapm_widget *w, in micbias_ev()
[all …]
Dmax98088.c617 static int max98088_mic_event(struct snd_soc_dapm_widget *w, in max98088_mic_event()
647 static int max98088_line_pga(struct snd_soc_dapm_widget *w, in max98088_line_pga()
688 static int max98088_pga_ina1_event(struct snd_soc_dapm_widget *w, in max98088_pga_ina1_event()
694 static int max98088_pga_ina2_event(struct snd_soc_dapm_widget *w, in max98088_pga_ina2_event()
700 static int max98088_pga_inb1_event(struct snd_soc_dapm_widget *w, in max98088_pga_inb1_event()
706 static int max98088_pga_inb2_event(struct snd_soc_dapm_widget *w, in max98088_pga_inb2_event()
Drt5677.c913 static int set_dmic_clk(struct snd_soc_dapm_widget *w, in set_dmic_clk()
2409 static int rt5677_bst1_event(struct snd_soc_dapm_widget *w, in rt5677_bst1_event()
2433 static int rt5677_bst2_event(struct snd_soc_dapm_widget *w, in rt5677_bst2_event()
2457 static int rt5677_set_pll1_event(struct snd_soc_dapm_widget *w, in rt5677_set_pll1_event()
2479 static int rt5677_set_pll2_event(struct snd_soc_dapm_widget *w, in rt5677_set_pll2_event()
2501 static int rt5677_set_micbias1_event(struct snd_soc_dapm_widget *w, in rt5677_set_micbias1_event()
2528 static int rt5677_if1_adc_tdm_event(struct snd_soc_dapm_widget *w, in rt5677_if1_adc_tdm_event()
2551 static int rt5677_if2_adc_tdm_event(struct snd_soc_dapm_widget *w, in rt5677_if2_adc_tdm_event()
2574 static int rt5677_vref_event(struct snd_soc_dapm_widget *w, in rt5677_vref_event()
2599 static int rt5677_filter_power_event(struct snd_soc_dapm_widget *w, in rt5677_filter_power_event()
Drt5670.c680 static int set_dmic_clk(struct snd_soc_dapm_widget *w, in set_dmic_clk()
1412 static int rt5670_hp_power_event(struct snd_soc_dapm_widget *w, in rt5670_hp_power_event()
1448 static int rt5670_hp_event(struct snd_soc_dapm_widget *w, in rt5670_hp_event()
1498 static int rt5670_bst1_event(struct snd_soc_dapm_widget *w, in rt5670_bst1_event()
1521 static int rt5670_bst2_event(struct snd_soc_dapm_widget *w, in rt5670_bst2_event()
Dwm5102.c581 static int wm5102_sysclk_ev(struct snd_soc_dapm_widget *w, in wm5102_sysclk_ev()
617 static int wm5102_adsp_power_ev(struct snd_soc_dapm_widget *w, in wm5102_adsp_power_ev()
Dwm8770.c308 static int vout12supply_event(struct snd_soc_dapm_widget *w, in vout12supply_event()
325 static int vout34supply_event(struct snd_soc_dapm_widget *w, in vout34supply_event()
Dcs42l73.c490 static int cs42l73_spklo_spk_amp_event(struct snd_soc_dapm_widget *w, in cs42l73_spklo_spk_amp_event()
506 static int cs42l73_ear_amp_event(struct snd_soc_dapm_widget *w, in cs42l73_ear_amp_event()
524 static int cs42l73_hp_amp_event(struct snd_soc_dapm_widget *w, in cs42l73_hp_amp_event()
Drt5645.c664 static int set_dmic_clk(struct snd_soc_dapm_widget *w, in set_dmic_clk()
1591 static int rt5645_hp_event(struct snd_soc_dapm_widget *w, in rt5645_hp_event()
1657 static int rt5645_spk_event(struct snd_soc_dapm_widget *w, in rt5645_spk_event()
1690 static int rt5645_lout_event(struct snd_soc_dapm_widget *w, in rt5645_lout_event()
1720 static int rt5645_bst2_event(struct snd_soc_dapm_widget *w, in rt5645_bst2_event()
1743 static int rt5650_hp_event(struct snd_soc_dapm_widget *w, in rt5650_hp_event()
Dwm8961.c194 static int wm8961_hp_event(struct snd_soc_dapm_widget *w, in wm8961_hp_event()
286 static int wm8961_spk_event(struct snd_soc_dapm_widget *w, in wm8961_spk_event()
/linux-4.4.14/arch/powerpc/kvm/
Dbook3s_paired_singles.c274 int rs, ulong addr, bool w, int i) in kvmppc_emulate_psq_load()
317 int rs, ulong addr, bool w, int i) in kvmppc_emulate_psq_store()
690 bool w = inst_get_field(inst, 16, 16) ? true : false; in kvmppc_emulate_paired_single() local
700 bool w = inst_get_field(inst, 16, 16) ? true : false; in kvmppc_emulate_paired_single() local
713 bool w = inst_get_field(inst, 16, 16) ? true : false; in kvmppc_emulate_paired_single() local
723 bool w = inst_get_field(inst, 16, 16) ? true : false; in kvmppc_emulate_paired_single() local
743 bool w = inst_get_field(inst, 21, 21) ? true : false; in kvmppc_emulate_paired_single() local
757 bool w = inst_get_field(inst, 21, 21) ? true : false; in kvmppc_emulate_paired_single() local
834 bool w = inst_get_field(inst, 21, 21) ? true : false; in kvmppc_emulate_paired_single() local
844 bool w = inst_get_field(inst, 21, 21) ? true : false; in kvmppc_emulate_paired_single() local
/linux-4.4.14/drivers/isdn/hisax/
Damd7930_fn.h23 #define HIBYTE(w) ((unsigned char)((w & 0xff00) / 256)) argument
24 #define LOBYTE(w) ((unsigned char)(w & 0x00ff)) argument
/linux-4.4.14/arch/sparc/include/asm/
Dide.h49 u32 w; in __ide_insw() local
79 u32 w; in __ide_outsw() local
Dio_64.h76 static inline void __raw_writew(u16 w, const volatile void __iomem *addr) in __raw_writew()
166 static inline void writew(u16 w, volatile void __iomem *addr) in writew()
219 static inline void outw(u16 w, unsigned long addr) in outw()
307 static inline void sbus_writew(u16 w, volatile void __iomem *addr) in sbus_writew()
/linux-4.4.14/sound/soc/sirf/
Dsirf-audio.c23 static int sirf_audio_hp_event(struct snd_soc_dapm_widget *w, in sirf_audio_hp_event()
35 static int sirf_audio_spk_event(struct snd_soc_dapm_widget *w, in sirf_audio_spk_event()
/linux-4.4.14/drivers/memory/
Dmvebu-devbus.c123 struct devbus_write_params *w) in devbus_get_timing_params()
210 struct devbus_write_params *w) in devbus_orion_set_timing_params()
243 struct devbus_write_params *w) in devbus_armada_set_timing_params()
280 struct devbus_write_params w; in mvebu_devbus_probe() local
/linux-4.4.14/arch/m32r/platforms/m32700ut/
Dio.c111 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw()
152 unsigned short w; in _inw() local
211 void _outw(unsigned short w, unsigned long port) in _outw()
250 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/arch/m32r/platforms/mappi3/
Dio.c122 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw()
164 unsigned short w; in _inw() local
224 void _outw(unsigned short w, unsigned long port) in _outw()
264 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/arch/m32r/platforms/opsput/
Dio.c111 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw()
152 unsigned short w; in _inw() local
211 void _outw(unsigned short w, unsigned long port) in _outw()
250 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/arch/alpha/include/asm/
Dbitops.h405 static inline unsigned long __arch_hweight64(unsigned long w) in __arch_hweight64()
410 static inline unsigned int __arch_hweight32(unsigned int w) in __arch_hweight32()
415 static inline unsigned int __arch_hweight16(unsigned int w) in __arch_hweight16()
420 static inline unsigned int __arch_hweight8(unsigned int w) in __arch_hweight8()
/linux-4.4.14/arch/m32r/platforms/mappi2/
Dio.c107 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw()
148 unsigned short w; in _inw() local
207 void _outw(unsigned short w, unsigned long port) in _outw()
246 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/sound/soc/omap/
Domap3pandora.c79 static int omap3pandora_dac_event(struct snd_soc_dapm_widget *w, in omap3pandora_dac_event()
105 static int omap3pandora_hp_event(struct snd_soc_dapm_widget *w, in omap3pandora_hp_event()
Dmcbsp.c258 unsigned int w; in omap_st_on() local
274 unsigned int w; in omap_st_off() local
314 u16 w; in omap_st_chgain() local
635 u16 w; in omap_mcbsp_start() local
692 u16 w; in omap_mcbsp_stop() local
Dn810.c199 static int n810_spk_event(struct snd_soc_dapm_widget *w, in n810_spk_event()
210 static int n810_jack_event(struct snd_soc_dapm_widget *w, in n810_jack_event()
Drx51.c154 static int rx51_spk_event(struct snd_soc_dapm_widget *w, in rx51_spk_event()
167 static int rx51_hp_event(struct snd_soc_dapm_widget *w, in rx51_hp_event()
/linux-4.4.14/drivers/md/persistent-data/
Ddm-block-manager.c127 static void __wait(struct waiter *w) in __wait()
141 static void __wake_waiter(struct waiter *w) in __wake_waiter()
157 struct waiter *w, *tmp; in __wake_many() local
201 struct waiter w; in bl_down_read() local
264 struct waiter w; in bl_down_write() local
/linux-4.4.14/drivers/clk/samsung/
Dclk.h135 #define __MUX(_id, dname, cname, pnames, o, s, w, f, mf, a) \ argument
150 #define MUX(_id, cname, pnames, o, s, w) \ argument
153 #define MUX_A(_id, cname, pnames, o, s, w, a) \ argument
156 #define MUX_F(_id, cname, pnames, o, s, w, f, mf) \ argument
159 #define MUX_FA(_id, cname, pnames, o, s, w, f, mf, a) \ argument
188 #define __DIV(_id, dname, cname, pname, o, s, w, f, df, a, t) \ argument
203 #define DIV(_id, cname, pname, o, s, w) \ argument
206 #define DIV_A(_id, cname, pname, o, s, w, a) \ argument
209 #define DIV_F(_id, cname, pname, o, s, w, f, df) \ argument
212 #define DIV_T(_id, cname, pname, o, s, w, t) \ argument
/linux-4.4.14/drivers/video/fbdev/
Datafb_iplan2p8.c49 int w, l , i, j; in atafb_iplan2p8_copyarea() local
115 int i, j, w, f; in atafb_iplan2p8_copyarea() local
178 int i, j, w, f; in atafb_iplan2p8_copyarea() local
Datafb_iplan2p4.c42 int w, l , i, j; in atafb_iplan2p4_copyarea() local
108 int i, j, w, f; in atafb_iplan2p4_copyarea() local
157 int i, j, w, f; in atafb_iplan2p4_copyarea() local
Datafb_iplan2p2.c42 int w, l , i, j; in atafb_iplan2p2_copyarea() local
108 int i, j, w, f; in atafb_iplan2p2_copyarea() local
150 int i, j, w, f; in atafb_iplan2p2_copyarea() local
Dtridentfb.c328 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in blade_fill_rect()
339 u32 x, u32 y, u32 w, u32 h, u32 c, u32 b) in blade_image_blit()
354 u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h) in blade_copy_rect()
430 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in xp_fill_rect()
442 u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h) in xp_copy_rect()
502 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in image_fill_rect()
516 u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h) in image_copy_rect()
570 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in tgui_fill_rect()
581 u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h) in tgui_copy_rect()
Dc2p_iplan2.c92 u32 dst_idx, first, last, w; in c2p_iplan2() local
/linux-4.4.14/sound/drivers/vx/
Dvx_mixer.c52 struct w { struct
53 u16 h;
54 u16 l;
55 } w; member
63 struct w { struct
64 u16 l;
65 u16 h;
66 } w; member
/linux-4.4.14/arch/m32r/platforms/usrv/
Dio.c70 unsigned short w; in _inw() local
116 void _outw(unsigned short w, unsigned long port) in _outw()
138 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/arch/sparc/lib/
DPeeCeeI.c99 u32 w; in insb() local
129 u32 w; in insw() local
/linux-4.4.14/arch/m32r/platforms/oaks32r/
Dio.c63 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw()
119 void _outw(unsigned short w, unsigned long port) in _outw()
138 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/crypto/
Dxts.c94 struct blkcipher_walk *w, struct priv *ctx, in crypt()
151 struct blkcipher_walk w; in encrypt() local
162 struct blkcipher_walk w; in decrypt() local
Dlrw.c139 struct blkcipher_walk *w, struct priv *ctx, in crypt()
199 struct blkcipher_walk w; in encrypt() local
210 struct blkcipher_walk w; in decrypt() local
/linux-4.4.14/drivers/usb/gadget/udc/
Domap_udc.c134 u16 w; in deselect_ep() local
519 u16 txdma_ctrl, w; in next_in_dma() local
556 u16 w; in finish_in_dma() local
584 u16 w; in next_out_dma() local
612 u16 count, w; in finish_out_dma() local
921 u16 w; in omap_ep_queue() local
1195 u16 w; in pullup_enable() local
1212 u16 w; in pullup_disable() local
2021 u16 w; in omap_udc_iso_irq() local
/linux-4.4.14/drivers/crypto/amcc/
Dcrypto4xx_reg_def.h166 u32 w; member
178 u32 w; member
190 u32 w; member
201 u32 w; member
212 u32 w; member
261 u32 w; member
272 u32 w; member
/linux-4.4.14/arch/parisc/math-emu/
Ddriver.c69 #define FPSW_FLAGS(w) ((w) >> 27) argument
70 #define FPSW_ENABLE(w) ((w) & 0x1f) argument
/linux-4.4.14/drivers/video/console/
Dfbcon_rotate.h60 int i, j, h = height, w = width; in rotate_cw() local
78 int i, j, h = height, w = width; in rotate_ccw() local
/linux-4.4.14/arch/m32r/platforms/m32104ut/
Dio.c103 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw()
158 void _outw(unsigned short w, unsigned long port) in _outw()
177 void _outw_p(unsigned short w, unsigned long port) in _outw_p()
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/
Dmxl111sf-gpio.c585 u8 w[2] = { 1, 0 }; in pca9534_set_gpio() local
620 u8 w[2] = { 1, 0x07 }; /* write protect enabled, signal LEDs off */ in pca9534_init_port_expander() local
659 u8 w = 1; in mxl111sf_probe_port_expander() local
/linux-4.4.14/drivers/input/
Dinput-mt.c329 static void find_reduced_matrix(int *w, int nr, int nc, int nrc, int mu) in find_reduced_matrix()
350 int *w = mt->red; in input_mt_set_matrix() local
371 int *w = mt->red, j; in input_mt_set_slots() local
/linux-4.4.14/net/netfilter/
Dxt_time.c79 unsigned int v, w; in localtime_1() local
107 unsigned int year, i, w = r->dse; in localtime_3() local
/linux-4.4.14/arch/score/lib/
Dlshrdi3.c26 DWunion uu, w; in __lshrdi3() local
Dashrdi3.c25 DWunion uu, w; in __ashrdi3() local
Dashldi3.c25 DWunion uu, w; in __ashldi3() local
/linux-4.4.14/arch/sh/lib/
Dlshrdi3.c7 DWunion uu, w; in __lshrdi3() local
Dashldi3.c7 DWunion uu, w; in __ashldi3() local
Dashrdi3.c7 DWunion uu, w; in __ashrdi3() local
/linux-4.4.14/arch/blackfin/lib/
Dlshrdi3.c15 DIunion w; in __lshrdi3() local
Dashldi3.c15 DIunion w; in __ashldi3() local
Dashrdi3.c15 DIunion w; in __ashrdi3() local
/linux-4.4.14/arch/microblaze/lib/
Dashldi3.c7 DWunion uu, w; in __ashldi3() local
Dlshrdi3.c7 DWunion uu, w; in __lshrdi3() local
Dashrdi3.c7 DWunion uu, w; in __ashrdi3() local
Dmuldi3.c50 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3() local
/linux-4.4.14/arch/h8300/lib/
Dashldi3.c8 DWunion w; in __ashldi3() local
Dlshrdi3.c7 DWunion w; in __lshrdi3() local
Dashrdi3.c7 DWunion w; in __ashrdi3() local
Dmuldi3.c38 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3() local
/linux-4.4.14/arch/mips/lib/
Dashldi3.c7 DWunion uu, w; in __ashldi3() local
Dashrdi3.c7 DWunion uu, w; in __ashrdi3() local
Dlshrdi3.c7 DWunion uu, w; in __lshrdi3() local
/linux-4.4.14/tools/perf/bench/
Dfutex-lock-pi.c74 struct worker *w = (struct worker *) arg; in workerfn() local
109 static void create_threads(struct worker *w, pthread_attr_t thread_attr) in create_threads()
/linux-4.4.14/include/linux/
Dnfsacl.h27 unsigned int w = 16; in nfsacl_size() local
/linux-4.4.14/include/crypto/
Dtwofish.h17 u32 s[4][256], w[8], k[32]; member
/linux-4.4.14/drivers/cpuidle/
Dcoupled.c279 int w = atomic_read(&coupled->ready_waiting_counts) & WAITING_MASK; in cpuidle_coupled_cpus_waiting() local
291 int w = atomic_read(&coupled->ready_waiting_counts) & WAITING_MASK; in cpuidle_coupled_no_cpus_waiting() local
484 int w; in cpuidle_enter_state_coupled() local
/linux-4.4.14/drivers/i2c/busses/
Di2c-davinci.c164 u16 w; in davinci_i2c_reset_ctrl() local
421 u16 w; in i2c_davinci_xfer_msg() local
572 u16 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG); in terminate_read() local
583 u16 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG); in terminate_write() local
600 u16 w; in i2c_davinci_isr() local
/linux-4.4.14/arch/mn10300/lib/
Dnegdi2.c48 union DWunion w; in __negdi2() local
Dashrdi3.c40 union DIunion w; in __ashrdi3() local
Dlshrdi3.c40 union DIunion w; in __lshrdi3() local
Dusercopy.c137 unsigned long res, w; in strnlen_user() local
/linux-4.4.14/sound/mips/
Dad1843.c189 int w; in ad1843_read_bits() local
203 int w, mask, oldval, newbits; in ad1843_write_bits() local
232 int w = 0, mask, *value, reg = -1; in ad1843_read_multi() local
266 int w, m, mask, bits; in ad1843_write_multi() local
/linux-4.4.14/net/ceph/crush/
Dmapper.c146 __u64 w = crush_hash32_4(bucket->h.hash, x, bucket->h.items[i], in bucket_list_choose() local
197 __u32 w; in bucket_tree_choose() local
302 unsigned int w; in bucket_straw2_choose() local
795 int *w; in crush_do_rule() local
/linux-4.4.14/arch/ia64/include/asm/sn/
Daddrs.h192 #define NODE_SWIN_BASE(n, w) ((w == 0) ? NODE_BWIN_BASE((n), SWIN0_BIGWIN) \ argument
194 #define TIO_SWIN_BASE(n, w) (TIO_IO_BASE(n) + \ argument
200 #define NODE_BWIN_BASE(n, w) (NODE_BWIN_BASE0(n) + ((u64) (w) << BWIN_SIZE_BITS)) argument
201 #define RAW_NODE_SWIN_BASE(n, w) (NODE_IO_BASE(n) + ((u64) (w) << SWIN_SIZE_BITS)) argument
/linux-4.4.14/tools/perf/util/
Dbitmap.c12 int k, w = 0, lim = bits/BITS_PER_LONG; in __bitmap_weight() local
Dlevenshtein.c42 int w, int s, int a, int d) in levenshtein()
/linux-4.4.14/tools/thermal/tmon/
Dtui.c289 WINDOW *w = dialogue_window; in show_dialogue() local
326 WINDOW *w = dialogue_window; in write_dialogue_win() local
420 WINDOW *w = dialogue_window; in handle_input_val() local
/linux-4.4.14/net/core/
Dutils.c129 int w = 0; in in4_pton() local
196 int w = 0; in in6_pton() local
/linux-4.4.14/include/video/
Dpm3fb.h226 #define PM3VideoOverlayWidth_WIDTH(w) (((w) & 0xfff) << 0) argument
555 #define PM3FBDestReadBufferWidth_Width(w) ((w) & 0x0fff) argument
612 #define PM3FBSourceReadBufferWidth_Width(w) ((w) & 0x0fff) argument
626 #define PM3FBSourceReadMode_WrapX(w) (((w) & 0xf) << 16) argument
627 #define PM3FBSourceReadMode_WrapY(w) (((w) & 0xf) << 20) argument
645 #define PM3FBWriteBufferWidth_Width(w) ((w) & 0x0fff) argument
690 #define PM3LBDestReadMode_Width(w) (((w) & 0xfff) << 12) argument
692 #define PM3LBReadFormat_DepthWidth(w) (((w) & 0x3) << 0) argument
693 #define PM3LBReadFormat_StencilWidth(w) (((w) & 0xf) << 2) argument
695 #define PM3LBReadFormat_FCPWidth(w) (((w) & 0xf) << 11) argument
[all …]
/linux-4.4.14/net/netfilter/ipvs/
Dip_vs_ovf.c34 int hw = 0, w; in ip_vs_ovf_schedule() local
/linux-4.4.14/sound/soc/tegra/
Dtegra_wm8903.c128 static int tegra_wm8903_event_int_spk(struct snd_soc_dapm_widget *w, in tegra_wm8903_event_int_spk()
144 static int tegra_wm8903_event_hp(struct snd_soc_dapm_widget *w, in tegra_wm8903_event_hp()
/linux-4.4.14/arch/um/os-Linux/
Dprocess.c139 int r, int w, int x) in os_map_memory()
154 int os_protect_memory(void *addr, unsigned long len, int r, int w, int x) in os_protect_memory()
/linux-4.4.14/arch/cris/arch-v10/kernel/
Dio_interface_mux.c579 struct watcher *w = watchers; in notify_watchers() local
1103 struct watcher *w; in cris_io_interface_register_watcher() local
1131 struct watcher *w = watchers, *prev = NULL; in cris_io_interface_delete_watcher() local
/linux-4.4.14/drivers/gpu/drm/radeon/
Dr600_blit.c77 set_render_target(drm_radeon_private_t *dev_priv, int format, int w, int h, u64 gpu_addr) in set_render_target()
257 int format, int w, int h, int pitch, u64 gpu_addr) in set_tex_resource()
789 int w, int h, int src_pitch, int dst_pitch, int cpp) in r600_blit_swap()
/linux-4.4.14/kernel/
Daudit_watch.c237 static void audit_watch_log_rule_change(struct audit_krule *r, struct audit_watch *w, char *op) in audit_watch_log_rule_change()
338 struct audit_watch *w, *nextw; in audit_remove_parent_watches() local
382 struct audit_watch *w, *watch = krule->watch; in audit_add_to_parent() local
/linux-4.4.14/drivers/pcmcia/
Dpcmcia_resource.c231 unsigned int w; in pcmcia_map_mem_page() local
436 unsigned int w; in pcmcia_release_window() local
881 int w; in pcmcia_request_window() local
/linux-4.4.14/arch/sh/include/uapi/asm/
Dswab.h51 } v, w; in __arch_swab64() local
/linux-4.4.14/include/math-emu/
Dop-8.h32 #define _FP_FRAC_WORD_8(X,w) (X##_f[w]) argument
/linux-4.4.14/arch/um/include/shared/
Dos.h60 unsigned int w : 1; member
89 static inline struct openflags of_set_rw(struct openflags flags, int r, int w) in of_set_rw()
/linux-4.4.14/arch/arc/include/asm/
Dio.h77 u32 w; in __raw_readl() local
110 static inline void __raw_writel(u32 w, volatile void __iomem *addr) in __raw_writel()
/linux-4.4.14/arch/m68k/lib/
Dashldi3.c34 DIunion w; in __ashldi3() local
Dashrdi3.c34 DIunion w; in __ashrdi3() local
Dlshrdi3.c34 DIunion w; in __lshrdi3() local
/linux-4.4.14/sound/isa/msnd/
Dmsnd.h184 #define HIBYTE(w) ((u8)(((u16)(w) >> 8) & 0xFF)) argument
185 #define LOBYTE(w) ((u8)(w)) argument
189 #define PCTODSP_OFFSET(w) (u16)((w)/2) argument
190 #define PCTODSP_BASED(w) (u16)(((w)/2) + DSP_BASE_ADDR) argument
191 #define DSPTOPC_BASED(w) (((w) - DSP_BASE_ADDR) * 2) argument
/linux-4.4.14/sound/oss/
Dmsnd.h145 #define HIBYTE(w) ((BYTE)(((WORD)(w) >> 8) & 0xFF)) argument
146 #define LOBYTE(w) ((BYTE)(w)) argument
150 #define PCTODSP_OFFSET(w) (USHORT)((w)/2) argument
151 #define PCTODSP_BASED(w) (USHORT)(((w)/2) + DSP_BASE_ADDR) argument
152 #define DSPTOPC_BASED(w) (((w) - DSP_BASE_ADDR) * 2) argument
/linux-4.4.14/drivers/video/fbdev/sis/
Dsis_accel.c159 SiS300SubsequentSolidFillRect(struct sis_video_info *ivideo, int x, int y, int w, int h) in SiS300SubsequentSolidFillRect()
261 SiS310SubsequentSolidFillRect(struct sis_video_info *ivideo, int x, int y, int w, int h) in SiS310SubsequentSolidFillRect()
/linux-4.4.14/arch/x86/xen/
Dspinlock.c159 struct xen_lock_waiting *w = this_cpu_ptr(&lock_waiting); in xen_lock_spinning() local
256 const struct xen_lock_waiting *w = &per_cpu(lock_waiting, cpu); in xen_unlock_kick() local
/linux-4.4.14/arch/um/drivers/
Dhostaudio_kern.c184 int r = 0, w = 0; in hostaudio_open() local
247 int r = 0, w = 0; in hostmixer_open_mixdev() local
/linux-4.4.14/arch/ia64/lib/
Dcsum_partial_copy.c67 unsigned long w = *(unsigned long *) buff; in do_csum_c() local
/linux-4.4.14/drivers/staging/rtl8723au/include/
Dioctl_cfg80211.h34 #define wdev_to_priv(w) ((struct rtw_wdev_priv *)(wdev_priv(w))) argument
/linux-4.4.14/drivers/video/fbdev/omap2/dss/
Drfbi.c178 const u16 *w = buf; in rfbi_write_command() local
207 u16 *w = buf; in rfbi_read_data() local
236 const u16 *w = buf; in rfbi_write_data() local
253 u16 w, u16 h) in rfbi_write_pixels()
778 static void rfbi_set_size(struct omap_dss_device *dssdev, u16 w, u16 h) in rfbi_set_size()
/linux-4.4.14/arch/powerpc/include/asm/
Dppc-opcode.h269 #define __PPC_WC(w) (((w) & 0x3) << 21) argument
270 #define __PPC_WS(w) (((w) & 0x1f) << 11) argument
318 #define PPC_WAIT(w) stringify_in_c(.long PPC_INST_WAIT | \ argument
327 #define PPC_ERATWE(s, a, w) stringify_in_c(.long PPC_INST_ERATWE | \ argument
329 #define PPC_ERATRE(s, a, w) stringify_in_c(.long PPC_INST_ERATRE | \ argument
336 #define PPC_ERATSX(t, a, w) stringify_in_c(.long PPC_INST_ERATSX | \ argument
338 #define PPC_ERATSX_DOT(t, a, w) stringify_in_c(.long PPC_INST_ERATSX_DOT | \ argument
/linux-4.4.14/drivers/hid/
Dhid-picolcd_cir.c47 int i, w, sz; in picolcd_raw_cir() local
/linux-4.4.14/drivers/gpu/drm/imx/
Dipuv3-plane.h29 int w; member
/linux-4.4.14/drivers/input/gameport/
Dfm801-gp.c46 unsigned short w; in fm801_gp_cooked_read() local
/linux-4.4.14/tools/include/linux/
Dbitops.h46 static inline unsigned long hweight_long(unsigned long w) in hweight_long()
/linux-4.4.14/drivers/gpu/drm/
Ddrm_flip_work.c111 static void flip_worker(struct work_struct *w) in flip_worker()
/linux-4.4.14/drivers/net/wireless/iwlwifi/
Diwl-notif-wait.c85 struct iwl_notification_wait *w; in iwl_notification_wait_notify() local
/linux-4.4.14/drivers/video/fbdev/omap2/omapfb/
Domapfb-main.c103 const short w = var->xres_virtual; in fill_fb() local
710 u32 w, h; in check_fb_var() local
1456 u16 w, h; in omapfb_alloc_fbmem_display() local
1673 u16 w, h; in omapfb_auto_update_work() local
1763 u16 w, h; in omapfb_fb_init() local
2340 u16 w, h; in omapfb_init_display() local
2603 u16 w, h; in omapfb_probe() local
/linux-4.4.14/drivers/dma/
Dmv_xor.h77 #define WINDOW_BASE(w) (0x50 + ((w) << 2)) argument
78 #define WINDOW_SIZE(w) (0x70 + ((w) << 2)) argument
79 #define WINDOW_REMAP_HIGH(w) (0x90 + ((w) << 2)) argument
/linux-4.4.14/drivers/media/pci/saa7164/
Dsaa7164-core.c365 static void saa7164_work_enchandler(struct work_struct *w) in saa7164_work_enchandler()
442 static void saa7164_work_vbihandler(struct work_struct *w) in saa7164_work_vbihandler()
518 static void saa7164_work_cmdhandler(struct work_struct *w) in saa7164_work_cmdhandler()
/linux-4.4.14/arch/alpha/kernel/
Dio.c224 unsigned int w; in ioread8_rep() local
268 unsigned int w; in ioread16_rep() local
362 unsigned int w; in iowrite16_rep() local
/linux-4.4.14/arch/frv/lib/
Dchecksum.c71 unsigned long w = *(unsigned long *) buff; in do_csum() local
/linux-4.4.14/arch/metag/lib/
Dchecksum.c76 unsigned int w = *(unsigned int *) buff; in do_csum() local
/linux-4.4.14/arch/sh/kernel/cpu/sh2a/
Dfpu.c101 int exp, w; in denormal_mulf() local
168 int exp, w; in denormal_muld() local
/linux-4.4.14/arch/parisc/lib/
Dchecksum.c78 unsigned int w = *(unsigned int *) buff; in do_csum() local
/linux-4.4.14/arch/mips/pci/
Dpci-virtio-guest.c30 u32 w; member
/linux-4.4.14/sound/soc/samsung/
Dsmartq_wm8987.c112 static int smartq_speaker_event(struct snd_soc_dapm_widget *w, in smartq_speaker_event()
Dh1940_uda1380.c128 static int h1940_spk_power(struct snd_soc_dapm_widget *w, in h1940_spk_power()
/linux-4.4.14/drivers/clk/bcm/
Dclk-nsp.c24 #define REG_VAL(o, s, w) { .offset = o, .shift = s, .width = w, } argument
/linux-4.4.14/drivers/xen/xenbus/
Dxenbus_probe_frontend.c96 static void xenbus_frontend_delayed_resume(struct work_struct *w) in xenbus_frontend_delayed_resume()
342 static void xenbus_reset_backend_state_changed(struct xenbus_watch *w, in xenbus_reset_backend_state_changed()

1234