Home
last modified time | relevance | path

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

123

/include/asm-generic/
DKbuild7 mandatory-y += atomic.h
8 mandatory-y += barrier.h
9 mandatory-y += bitops.h
10 mandatory-y += bug.h
11 mandatory-y += bugs.h
12 mandatory-y += cacheflush.h
13 mandatory-y += checksum.h
14 mandatory-y += compat.h
15 mandatory-y += current.h
16 mandatory-y += delay.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/
Dminmax.h19 #define __typecheck(x, y) \ argument
20 (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
22 #define __no_side_effects(x, y) \ argument
23 (__is_constexpr(x) && __is_constexpr(y))
25 #define __safe_cmp(x, y) \ argument
26 (__typecheck(x, y) && __no_side_effects(x, y))
28 #define __cmp(x, y, op) ((x) op (y) ? (x) : (y)) argument
30 #define __cmp_once(x, y, unique_x, unique_y, op) ({ \ argument
32 typeof(y) unique_y = (y); \
35 #define __careful_cmp(x, y, op) \ argument
[all …]
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
Dvm_event.h88 #define count_vm_numa_events(x, y) count_vm_events(x, y) argument
91 #define count_vm_numa_events(x, y) do { (void)(y); } while (0) argument
96 #define count_vm_tlb_events(x, y) count_vm_events(x, y) argument
99 #define count_vm_tlb_events(x, y) do { (void)(y); } while (0) argument
Dmath.h14 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument
24 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) argument
34 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument
58 #define roundup(x, y) ( \ argument
60 typeof(y) __y = y; \
72 #define rounddown(x, y) ( \ argument
75 __x - (__x % (y)); \
Dfirmware.h31 #define __fw_concat1(x, y) x##y argument
32 #define __fw_concat(x, y) __fw_concat1(x, y) argument
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
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.h612 #define DMEMIT_TARGET_NAME_VERSION(y) \ argument
614 (y)->name, (y)->version[0], (y)->version[1], (y)->version[2])
633 #define dm_sector_div64(x, y)( \ argument
636 (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/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/drm/
Ddrm_rect.h85 static inline void drm_rect_init(struct drm_rect *r, int x, int y, in drm_rect_init() argument
89 r->y1 = y; in drm_rect_init()
91 r->y2 = y + height; in drm_rect_init()
140 static inline void drm_rect_translate_to(struct drm_rect *r, int x, int y) in drm_rect_translate_to() argument
142 drm_rect_translate(r, x - r->x1, y - r->y1); in drm_rect_translate_to()
Ddrm_fixed.h191 s64 sum = DRM_FIXED_ONE, term, y = x; in drm_fixp_exp() local
195 y = -1 * x; in drm_fixp_exp()
197 term = y; in drm_fixp_exp()
202 term = drm_fixp_mul(term, div64_s64(y, count)); in drm_fixp_exp()
Ddrm_crtc_helper.h51 int x, int y,
/include/linux/soundwire/
Dsdw_intel.h28 #define SDW_SHIM_PCMSYCHM(x, y) (0x022 + (0x60 * (x)) + (0x2 * (y))) argument
29 #define SDW_SHIM_PCMSYCHC(x, y) (0x042 + (0x60 * (x)) + (0x2 * (y))) argument
/include/linux/raid/
Dpq.h175 # define __get_free_pages(x, y) ((unsigned long)mmap(NULL, PAGE_SIZE << (y), \ argument
179 # define free_pages(x, y) munmap((void *)(x), PAGE_SIZE << (y)) argument
/include/crypto/
Darc4.h17 u32 x, y; member
Decc_curve.h18 u64 *y; member
/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/drm/
Ddrm_sarea.h67 unsigned int y; member
/include/uapi/linux/
Domapfb.h112 __u32 x, y; member
121 __u32 x, y; member
182 __u16 y; member

123