Home
last modified time | relevance | path

Searched refs:__s (Results 1 – 19 of 19) sorted by relevance

/Linux-v5.10/drivers/remoteproc/
Dremoteproc_elf_helpers.h40 #define ELF_GEN_FIELD_GET_SET(__s, __field, __type) \ argument
41 static inline __type elf_##__s##_get_##__field(u8 class, const void *arg) \
44 return (__type) ((const struct elf32_##__s *) arg)->__field; \
46 return (__type) ((const struct elf64_##__s *) arg)->__field; \
48 static inline void elf_##__s##_set_##__field(u8 class, void *arg, \
52 ((struct elf32_##__s *) arg)->__field = (__type) value; \
54 ((struct elf64_##__s *) arg)->__field = (__type) value; \
83 #define ELF_STRUCT_SIZE(__s) \ argument
84 static inline unsigned long elf_size_of_##__s(u8 class) \
87 return sizeof(struct elf32_##__s); \
[all …]
/Linux-v5.10/include/linux/
Dregset.h52 struct membuf *__s = (s); \
53 if (__s->left) { \
56 if (unlikely(__size > __s->left)) { \
57 __size = __s->left; \
58 memcpy(__s->p, &__v, __size); \
60 *(typeof(__v + 0) *)__s->p = __v; \
62 __s->p += __size; \
63 __s->left -= __size; \
65 __s->left;})
Dtimex.h145 __typeof__(s) __s = (s); \
146 __x < 0 ? -(-__x >> __s) : __x >> __s; \
Defi.h1133 efi_status_t __s; \
1139 __s = arch_efi_call_virt(p, f, args); \
1144 __s; \
/Linux-v5.10/tools/bootconfig/scripts/
Dxbc.sh54 __s=`nr_args $__keys`
55 grep "^$1" $XBC_TMPFILE | cut -d= -f1| cut -d. -f$((__s + 1))-$((__s + $2)) | uniq
/Linux-v5.10/arch/arm/include/asm/
Duaccess.h160 #define __get_user_x(__r2, __p, __e, __l, __s) \ argument
164 "bl __get_user_" #__s \
167 : __GUP_CLOBBER_##__s)
171 #define __get_user_x_32t(__r2, __p, __e, __l, __s) \ argument
182 #define __get_user_x_64t(__r2, __p, __e, __l, __s) \ argument
186 "bl __get_user_64t_" #__s \
189 : __GUP_CLOBBER_##__s)
246 #define __put_user_check(__pu_val, __ptr, __err, __s) \ argument
256 "bl __put_user_" #__s \
/Linux-v5.10/tools/testing/selftests/timers/
Draw_skew.c35 __typeof__(s) __s = (s); \
36 __x < 0 ? -(-__x >> __s) : __x >> __s; \
/Linux-v5.10/arch/sh/include/asm/
Dstring_32.h88 extern void *memset(void *__s, int __c, size_t __count);
97 extern void *memchr(const void *__s, int __c, size_t __n);
/Linux-v5.10/arch/xtensa/include/asm/
Dstring.h110 extern void *memset(void *__s, int __c, size_t __count);
111 extern void *__memset(void *__s, int __c, size_t __count);
/Linux-v5.10/drivers/usb/host/
Disp116x.h509 #define PIPETYPE(pipe) ({ char *__s; \
510 if (usb_pipecontrol(pipe)) __s = "ctrl"; \
511 else if (usb_pipeint(pipe)) __s = "int"; \
512 else if (usb_pipebulk(pipe)) __s = "bulk"; \
513 else __s = "iso"; \
514 __s;})
/Linux-v5.10/drivers/media/pci/solo6x10/
Dsolo6x10-regs.h99 #define SOLO_PCI_ERR_FSM0(__s) (((__s) >> 16) & 0x0f) argument
100 #define SOLO_PCI_ERR_FSM1(__s) (((__s) >> 20) & 0x0f) argument
101 #define SOLO_PCI_ERR_FSM2(__s) (((__s) >> 24) & 0x1f) argument
/Linux-v5.10/arch/mips/include/asm/
Dstring.h14 extern void *memset(void *__s, int __c, size_t __count);
/Linux-v5.10/drivers/gpu/drm/i915/display/
Dintel_display.h343 #define for_each_sprite(__dev_priv, __p, __s) \ argument
344 for ((__s) = 0; \
345 (__s) < RUNTIME_INFO(__dev_priv)->num_sprites[(__p)]; \
346 (__s)++)
/Linux-v5.10/drivers/vdpa/mlx5/core/
Dmr.c13 u64 __s = _s; \
15 _res = (((_n) + (1 << (__s)) - 1) >> (__s)); \
/Linux-v5.10/arch/x86/platform/efi/
Defi_64.c529 efi_status_t __s; \
533 __s = __efi_thunk(func); \
537 __s; \
/Linux-v5.10/tools/perf/
Dbuiltin-c2c.c483 #define HEX_STR(__s, __v) \ argument
485 scnprintf(__s, sizeof(__s), "0x%" PRIx64, __v); \
486 __s; \
814 #define PERC_STR(__s, __v) \ argument
816 scnprintf(__s, sizeof(__s), "%.2F%%", __v); \
817 __s; \
1223 #define HEADER_SPAN(__h0, __h1, __s) \ argument
1227 .span = __s, \
/Linux-v5.10/mm/
Dslab.h587 #define for_each_kmem_cache_node(__s, __node, __n) \ argument
589 if ((__n = get_node(__s, __node)))
Dslub.c311 #define for_each_object(__p, __s, __addr, __objects) \ argument
312 for (__p = fixup_red_left(__s, __addr); \
313 __p < (__addr) + (__objects) * (__s)->size; \
314 __p += (__s)->size)
/Linux-v5.10/lib/
Dtest_overflow.c299 typeof(s) __s = (s); \ in test_overflow_shift()
302 bool __of = check_shl_overflow(__a, __s, &__d); \ in test_overflow_shift()