Home
last modified time | relevance | path

Searched defs:w (Results 1 – 25 of 29) sorted by relevance

12

/include/asm-generic/bitops/
Dconst_hweight.h7 #define __const_hweight8(w) \ argument
17 #define __const_hweight16(w) (__const_hweight8(w) + __const_hweight8((w) >> 8 )) argument
18 #define __const_hweight32(w) (__const_hweight16(w) + __const_hweight16((w) >> 16)) argument
19 #define __const_hweight64(w) (__const_hweight32(w) + __const_hweight32((w) >> 32)) argument
24 #define hweight8(w) (__builtin_constant_p(w) ? __const_hweight8(w) : __arch_hweight8(w)) argument
25 #define hweight16(w) (__builtin_constant_p(w) ? __const_hweight16(w) : __arch_hweight16(w)) argument
26 #define hweight32(w) (__builtin_constant_p(w) ? __const_hweight32(w) : __arch_hweight32(w)) argument
27 #define hweight64(w) (__builtin_constant_p(w) ? __const_hweight64(w) : __arch_hweight64(w)) argument
32 #define HWEIGHT8(w) (BUILD_BUG_ON_ZERO(!__builtin_constant_p(w)) + __const_hweight8(w)) argument
33 #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()
/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
/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()
/include/linux/
Dnfsacl.h27 unsigned int w = 16; in nfsacl_size() local
Dbitops.h67 static inline unsigned long hweight_long(unsigned long w) in hweight_long()
Dmsm_mdp.h58 u32 x, y, w, h; member
Dmempolicy.h55 } w; member
Dworkqueue.h283 #define delayed_work_pending(w) \ argument
Dhugetlb.h114 #define follow_hugetlb_page(m,v,p,vs,a,b,i,w) ({ BUG(); 0; }) argument
/include/crypto/
Dtwofish.h17 u32 s[4][256], w[8], k[32]; member
/include/math-emu/
Dop-8.h32 #define _FP_FRAC_WORD_8(X,w) (X##_f[w]) argument
Dop-1.h33 #define _FP_FRAC_WORD_1(X,w) (X##_f) argument
Dop-2.h33 #define _FP_FRAC_WORD_2(X,w) (X##_f##w) argument
Dop-4.h35 #define _FP_FRAC_WORD_4(X,w) (X##_f[w]) argument
/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 …]
Dudlfb.h15 int w, h; member
Dadf.h64 u32 w; member
/include/uapi/linux/
Dppp-comp.h73 #define DEFLATE_MAKE_OPT(w) ((((w) - 8) << 4) + DEFLATE_METHOD_VAL) argument
Domapfb.h182 __u16 w; member
/include/uapi/video/
Dadf.h118 __u32 w; member
179 __u16 w; member
/include/uapi/drm/
Di810_drm.h116 unsigned int w; member
134 unsigned int w; member
Dexynos_drm.h166 __u32 w; member
/include/uapi/linux/dvb/
Dvideo.h59 int w; member
/include/linux/mfd/
Dsi476x-core.h159 #define SI476X_WORK_TO_CORE(w) container_of(to_delayed_work(w), \ argument

12