/include/linux/ |
A D | minmax.h | 23 #define __typecheck(x, y) \ argument 88 #define __cmp_once(op, type, x, y) \ argument 91 #define __careful_cmp_once(op, x, y, ux, uy) ({ \ argument 97 #define __careful_cmp(op, x, y) \ argument 105 #define min(x, y) __careful_cmp(min, x, y) argument 112 #define max(x, y) __careful_cmp(max, x, y) argument 120 #define umin(x, y) \ argument 128 #define umax(x, y) \ argument 143 #define min3(x, y, z) \ argument 152 #define max3(x, y, z) \ argument [all …]
|
A D | kconfig.h | 20 #define __and(x, y) ___and(x, y) argument 21 #define ___and(x, y) ____and(__ARG_PLACEHOLDER_##x, y) argument 22 #define ____and(arg1_or_junk, y) __take_second_arg(arg1_or_junk y, 0) argument 24 #define __or(x, y) ___or(x, y) argument 25 #define ___or(x, y) ____or(__ARG_PLACEHOLDER_##x, y) argument 26 #define ____or(arg1_or_junk, y) __take_second_arg(arg1_or_junk 1, y) argument
|
A D | math.h | 15 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument 25 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) argument 35 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument 71 #define roundup(x, y) ( \ argument 85 #define rounddown(x, y) ( \ argument
|
A D | math64.h | 12 #define div64_long(x, y) div64_s64((x), (y)) argument 13 #define div64_ul(x, y) div64_u64((x), (y)) argument 86 #define div64_long(x, y) div_s64((x), (y)) argument 87 #define div64_ul(x, y) div_u64((x), (y)) argument 369 static inline u64 roundup_u64(u64 x, u32 y) in roundup_u64()
|
A D | signal.h | 156 #define _sig_or(x,y) ((x) | (y)) argument 159 #define _sig_and(x,y) ((x) & (y)) in _SIG_SET_BINOP() argument 162 #define _sig_andn(x,y) ((x) & ~(y)) in _SIG_SET_BINOP() argument
|
A D | acct.h | 28 #define acct_collect(x,y) do { } while (0) argument
|
A D | unroll.h | 13 #define __pick_unrolled(x, y) _Pragma(#x) argument 15 #define __pick_unrolled(x, y) _Pragma(#y) argument
|
A D | vmstat.h | 111 #define count_vm_numa_events(x, y) count_vm_events(x, y) argument 114 #define count_vm_numa_events(x, y) do { (void)(y); } while (0) argument 119 #define count_vm_tlb_events(x, y) count_vm_events(x, y) argument 122 #define count_vm_tlb_events(x, y) do { (void)(y); } while (0) argument
|
/include/trace/stages/ |
A D | init.h | 2 #define __app__(x, y) str__##x##y argument 3 #define __app(x, y) __app__(x, y) argument
|
/include/drm/ |
A D | drm_rect.h | 60 #define DRM_RECT_INIT(x, y, w, h) ((struct drm_rect){ \ argument 101 static inline void drm_rect_init(struct drm_rect *r, int x, int y, in drm_rect_init() 156 static inline void drm_rect_translate_to(struct drm_rect *r, int x, int y) in drm_rect_translate_to()
|
/include/scsi/fc/ |
A D | fc_encaps.h | 49 #define FC_XY(x, y) ((((x) & 0xff) << 8) | ((y) & 0xff)) argument 50 #define FC_XYXY(x, y) ((FCIP_XY(x, y) << 16) | FCIP_XY(x, y)) argument 51 #define FC_XYNN(x, y) (FCIP_XYXY(x, y) ^ 0xffff) argument
|
/include/rdma/ |
A D | uverbs_named_ioctl.h | 15 #define _UVERBS_PASTE(x, y) x ## y argument 16 #define _UVERBS_NAME(x, y) _UVERBS_PASTE(x, y) argument
|
/include/crypto/ |
A D | arc4.h | 17 u32 x, y; member
|
A D | aria.h | 327 static inline u8 get_u8(u32 x, u32 y) in get_u8() 434 static inline void aria_gsrk(u32 *rk, u32 *x, u32 *y, u32 n) in aria_gsrk()
|
A D | ecc_curve.h | 18 u64 *y; member
|
/include/asm-generic/ |
A D | div64.h | 148 uint64_t x, y; in __arch_xprod_64() local
|
/include/linux/raid/ |
A D | pq.h | 179 # define __get_free_pages(x, y) ((unsigned long)mmap(NULL, PAGE_SIZE << (y), \ argument 183 # define free_pages(x, y) munmap((void *)(x), PAGE_SIZE << (y)) argument
|
/include/crypto/internal/ |
A D | ecc.h | 43 #define ECC_POINT_INIT(x, y, ndigits) (struct ecc_point) { x, y, ndigits } argument
|
/include/uapi/drm/ |
A D | drm_sarea.h | 67 unsigned int y; member
|
/include/linux/soundwire/ |
A D | sdw_intel.h | 68 #define SDW_SHIM_PCMSYCHM(x, y) (0x022 + (0x60 * (x)) + (0x2 * (y))) argument 71 #define SDW_SHIM_PCMSYCHC(x, y) (0x042 + (0x60 * (x)) + (0x2 * (y))) argument 138 #define SDW_SHIM2_PCMSYCHC(y) (0x14 + (0x4 * (y))) argument 142 #define SDW_SHIM2_PCMSYCHM(y) (0x16 + (0x4 * (y))) argument
|
/include/uapi/linux/ |
A D | omapfb.h | 112 __u32 x, y; member 121 __u32 x, y; member 182 __u16 y; member
|
A D | swab.h | 136 static __always_inline unsigned long __swab(const unsigned long y) in __swab()
|
/include/linux/input/ |
A D | mt.h | 120 s16 x, y; member
|
/include/video/ |
A D | pm3fb.h | 231 #define PM3VideoOverlayOrigin_YORIGIN(y) (((y) & 0xfff) << 16) argument 550 #define PM3FBDestReadBufferOffset_YOffset(y) (((y) & 0xffff) << 16) argument 610 #define PM3FBSourceReadBufferOffset_YOffset(y) (((y) & 0xffff) << 16) argument 639 #define PM3FBWriteBufferOffset_YOffset(y) (((y) & 0xffff) << 16) argument 959 #define PM3GlyphPosition_YOffset(y) (((y) & 0xffff) << 16) argument 965 #define PM3RectanglePosition_YOffset(y) (((y) & 0xffff) << 16) argument 983 #define PM3Render2DGlyph_YOffset(y) (((y) & 0x1ff) << 23) argument 986 #define PM3RenderPatchOffset_YOffset(y) (((y) & 0xffff) << 16) argument 1016 #define PM3FillFBSourceReadBufferOffset_YOffset(y) \ argument 1023 #define PM3FillGlyphPosition_YOffset(y) (((y) & 0xffff) << 16) argument [all …]
|
/include/math-emu/ |
A D | soft-fp.h | 181 #define _FP_CLS_COMBINE(x,y) (((x) << 2) | (y)) argument
|