Home
last modified time | relevance | path

Searched refs:y (Results 1 – 25 of 67) sorted by relevance

123

/include/asm-generic/
DKbuild7 mandatory-y += atomic.h
8 mandatory-y += archrandom.h
9 mandatory-y += barrier.h
10 mandatory-y += bitops.h
11 mandatory-y += bug.h
12 mandatory-y += cacheflush.h
13 mandatory-y += cfi.h
14 mandatory-y += checksum.h
15 mandatory-y += compat.h
16 mandatory-y += current.h
[all …]
Dvga.h23 #define vga_writeb(x, y) (*(y) = (x)) argument
/include/uapi/asm-generic/
DKbuild6 mandatory-y += auxvec.h
7 mandatory-y += bitsperlong.h
8 mandatory-y += bpf_perf_event.h
9 mandatory-y += byteorder.h
10 mandatory-y += errno.h
11 mandatory-y += fcntl.h
12 mandatory-y += ioctl.h
13 mandatory-y += ioctls.h
14 mandatory-y += ipcbuf.h
15 mandatory-y += mman.h
[all …]
/include/linux/
Dkconfig.h20 #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
Dminmax.h23 #define __typecheck(x, y) \ argument
24 (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
83 #define __cmp(op, x, y) ((x) __cmp_op_##op (y) ? (x) : (y)) argument
85 #define __cmp_once_unique(op, type, x, y, ux, uy) \ argument
86 ({ type ux = (x); type uy = (y); __cmp(op, ux, uy); })
88 #define __cmp_once(op, type, x, y) \ argument
89 __cmp_once_unique(op, type, x, y, __UNIQUE_ID(x_), __UNIQUE_ID(y_))
91 #define __careful_cmp_once(op, x, y, ux, uy) ({ \ argument
92 __auto_type ux = (x); __auto_type uy = (y); \
94 #op"("#x", "#y") signedness error"); \
[all …]
Dmath.h15 #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
73 typeof(y) __y = y; \
85 #define rounddown(x, y) ( \ argument
88 __x - (__x % (y)); \
Dmath64.h12 #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() argument
371 return DIV_U64_ROUND_UP(x, y) * y; in roundup_u64()
Dsignal.h156 #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
Ddevice-mapper.h665 #define DMEMIT_TARGET_NAME_VERSION(y) \ argument
667 (y)->name, (y)->version[0], (y)->version[1], (y)->version[2])
706 #define dm_sector_div64(x, y)( \ argument
709 (x) = div64_u64_rem(x, y, &_res); \
/include/scsi/fc/
Dfc_encaps.h49 #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/trace/stages/
Dinit.h2 #define __app__(x, y) str__##x##y argument
3 #define __app(x, y) __app__(x, y) argument
/include/drm/
Ddrm_rect.h60 #define DRM_RECT_INIT(x, y, w, h) ((struct drm_rect){ \ argument
62 .y1 = (y), \
64 .y2 = (y) + (h) })
101 static inline void drm_rect_init(struct drm_rect *r, int x, int y, in drm_rect_init() argument
105 r->y1 = y; in drm_rect_init()
107 r->y2 = y + height; 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() argument
158 drm_rect_translate(r, x - r->x1, y - r->y1); in drm_rect_translate_to()
Ddrm_fixed.h198 s64 sum = DRM_FIXED_ONE, term, y = x; in drm_fixp_exp() local
202 y = -1 * x; in drm_fixp_exp()
204 term = y; in drm_fixp_exp()
209 term = drm_fixp_mul(term, div64_s64(y, count)); in drm_fixp_exp()
/include/crypto/
Daria.h327 static inline u8 get_u8(u32 x, u32 y) in get_u8() argument
329 return (x >> ((3 - y) * 8)); in get_u8()
434 static inline void aria_gsrk(u32 *rk, u32 *x, u32 *y, u32 n) in aria_gsrk() argument
440 ((y[q % 4]) >> r) ^ in aria_gsrk()
441 ((y[(q + 3) % 4]) << (32 - r)); in aria_gsrk()
443 ((y[(q + 1) % 4]) >> r) ^ in aria_gsrk()
444 ((y[q % 4]) << (32 - r)); in aria_gsrk()
446 ((y[(q + 2) % 4]) >> r) ^ in aria_gsrk()
447 ((y[(q + 1) % 4]) << (32 - r)); in aria_gsrk()
449 ((y[(q + 3) % 4]) >> r) ^ in aria_gsrk()
[all …]
Darc4.h17 u32 x, y; member
Decc_curve.h18 u64 *y; member
/include/linux/input/
Dtouchscreen.h25 unsigned int x, unsigned int y);
29 unsigned int x, unsigned int y,
/include/video/
Dpm3fb.h231 #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
1017 (((y) & 0xffff) << 16)
[all …]
/include/rdma/
Duverbs_named_ioctl.h15 #define _UVERBS_PASTE(x, y) x ## y argument
16 #define _UVERBS_NAME(x, y) _UVERBS_PASTE(x, y) argument
/include/linux/soundwire/
Dsdw_intel.h67 #define SDW_SHIM_PCMSYCHM(x, y) (0x022 + (0x60 * (x)) + (0x2 * (y))) argument
70 #define SDW_SHIM_PCMSYCHC(x, y) (0x042 + (0x60 * (x)) + (0x2 * (y))) argument
137 #define SDW_SHIM2_PCMSYCHC(y) (0x14 + (0x4 * (y))) argument
141 #define SDW_SHIM2_PCMSYCHM(y) (0x16 + (0x4 * (y))) argument
/include/crypto/internal/
Decc.h43 #define ECC_POINT_INIT(x, y, ndigits) (struct ecc_point) { x, y, ndigits } argument
293 const u64 *y, const struct ecc_point *q,
/include/linux/raid/
Dpq.h169 # define __get_free_pages(x, y) ((unsigned long)mmap(NULL, PAGE_SIZE << (y), \ argument
173 # define free_pages(x, y) munmap((void *)(x), PAGE_SIZE << (y)) argument
/include/media/drv-intf/
Dsaa7146.h54 #define SAA7146_ISR_CLEAR(x,y) \ argument
55 saa7146_write(x, ISR, (y));
456 static inline void SAA7146_IER_DISABLE(struct saa7146_dev *x, unsigned y) in SAA7146_IER_DISABLE() argument
460 saa7146_write(x, IER, saa7146_read(x, IER) & ~y); in SAA7146_IER_DISABLE()
464 static inline void SAA7146_IER_ENABLE(struct saa7146_dev *x, unsigned y) in SAA7146_IER_ENABLE() argument
468 saa7146_write(x, IER, saa7146_read(x, IER) | y); in SAA7146_IER_ENABLE()
/include/uapi/linux/
Domapfb.h112 __u32 x, y; member
121 __u32 x, y; member
182 __u16 y; member
/include/uapi/drm/
Ddrm_sarea.h67 unsigned int y; member

123