/linux/tools/arch/arm64/include/asm/ |
A D | barrier.h | 29 union { typeof(*p) __val; char __c[1]; } __u = \ 36 : "r" (*(__u8_alias_t *)__u.__c) \ 42 : "r" (*(__u16_alias_t *)__u.__c) \ 48 : "r" (*(__u32_alias_t *)__u.__c) \ 54 : "r" (*(__u64_alias_t *)__u.__c) \ 66 union { typeof(*p) __val; char __c[1]; } __u = \ 67 { .__c = { 0 } }; \ 72 : "=r" (*(__u8_alias_t *)__u.__c) \ 77 : "=r" (*(__u16_alias_t *)__u.__c) \ 82 : "=r" (*(__u32_alias_t *)__u.__c) \ [all …]
|
/linux/arch/parisc/include/asm/ |
A D | barrier.h | 36 union { typeof(*p) __val; char __c[1]; } __u = \ 42 : : "r"(*(__u8 *)__u.__c), "r"(__p) \ 47 : : "r"(*(__u16 *)__u.__c), "r"(__p) \ 52 : : "r"(*(__u32 *)__u.__c), "r"(__p) \ 58 : : "r"(*(__u64 *)__u.__c), "r"(__p) \ 66 union { typeof(*p) __val; char __c[1]; } __u; \ 72 : "=r"(*(__u8 *)__u.__c) : "r"(__p) \ 77 : "=r"(*(__u16 *)__u.__c) : "r"(__p) \ 82 : "=r"(*(__u32 *)__u.__c) : "r"(__p) \ 88 : "=r"(*(__u64 *)__u.__c) : "r"(__p) \
|
/linux/arch/arm64/include/asm/ |
A D | barrier.h | 110 union { __unqual_scalar_typeof(*p) __val; char __c[1]; } __u = \ 118 : "r" (*(__u8 *)__u.__c) \ 124 : "r" (*(__u16 *)__u.__c) \ 130 : "r" (*(__u32 *)__u.__c) \ 136 : "r" (*(__u64 *)__u.__c) \ 144 union { __unqual_scalar_typeof(*p) __val; char __c[1]; } __u; \ 151 : "=r" (*(__u8 *)__u.__c) \ 156 : "=r" (*(__u16 *)__u.__c) \ 161 : "=r" (*(__u32 *)__u.__c) \ 166 : "=r" (*(__u64 *)__u.__c) \
|
A D | rwonce.h | 40 union { __unqual_scalar_typeof(*__x) __val; char __c[1]; } __u; \ 44 : "=r" (*(__u8 *)__u.__c) \ 49 : "=r" (*(__u16 *)__u.__c) \ 54 : "=r" (*(__u32 *)__u.__c) \ 59 : "=r" (*(__u64 *)__u.__c) \
|
A D | cpuidle.h | 30 #define arm_cpuidle_save_irq_context(__c) \ argument 32 struct arm_cpuidle_irq_context *c = __c; \ 42 #define arm_cpuidle_restore_irq_context(__c) \ argument 44 struct arm_cpuidle_irq_context *c = __c; \
|
/linux/include/linux/ |
A D | compat.h | 440 compat_sigset_t __user *__c = compat; \ 469 unsafe_get_user(lo, &__c->sig[7], label); \ 470 unsafe_get_user(hi, &__c->sig[6], label); \ 474 unsafe_get_user(lo, &__c->sig[5], label); \ 475 unsafe_get_user(hi, &__c->sig[4], label); \ 479 unsafe_get_user(lo, &__c->sig[3], label); \ 480 unsafe_get_user(hi, &__c->sig[2], label); \ 484 unsafe_get_user(lo, &__c->sig[1], label); \ 491 compat_sigset_t __user *__c = compat; \ 494 unsafe_copy_to_user(__c, __s, sizeof(*__c), label); \ [all …]
|
A D | cgroup.h | 451 #define task_css_set_check(task, __c) \ argument 455 ((task)->flags & PF_EXITING) || (__c)) 457 #define task_css_set_check(task, __c) \ argument 470 #define task_css_check(task, subsys_id, __c) \ argument 471 task_css_set_check((task), (__c))->subsys[(subsys_id)]
|
/linux/arch/m68k/include/asm/ |
A D | bootstd.h | 91 register long __c __asm__ ("%d3") = (long)c; \ 95 "d" (__c) \ 106 register long __c __asm__ ("%d3") = (long)c; \ 111 "d" (__c), "d" (__d) \ 122 register long __c __asm__ ("%d3") = (long)c; \ 128 "d" (__c), "d" (__d), "d" (__e) \
|
/linux/samples/bpf/ |
A D | xdp_sample.bpf.h | 119 union { typeof(x) __val; char __c[1]; } __u = \ 120 { .__c = { 0 } }; \ 121 __read_once_size(&(x), __u.__c, sizeof(x)); \ 127 union { typeof(x) __val; char __c[1]; } __u = \ 129 __write_once_size(&(x), __u.__c, sizeof(x)); \
|
/linux/arch/x86/kvm/ |
A D | x86.h | 463 #define __cr4_reserved_bits(__cpu_has, __c) \ argument 467 if (!__cpu_has(__c, X86_FEATURE_XSAVE)) \ 469 if (!__cpu_has(__c, X86_FEATURE_SMEP)) \ 471 if (!__cpu_has(__c, X86_FEATURE_SMAP)) \ 473 if (!__cpu_has(__c, X86_FEATURE_FSGSBASE)) \ 475 if (!__cpu_has(__c, X86_FEATURE_PKU)) \ 477 if (!__cpu_has(__c, X86_FEATURE_LA57)) \ 479 if (!__cpu_has(__c, X86_FEATURE_UMIP)) \ 481 if (!__cpu_has(__c, X86_FEATURE_VMX)) \ 483 if (!__cpu_has(__c, X86_FEATURE_PCID)) \
|
/linux/tools/include/linux/ |
A D | compiler.h | 178 union { typeof(x) __val; char __c[1]; } __u = \ 179 { .__c = { 0 } }; \ 180 __read_once_size(&(x), __u.__c, sizeof(x)); \ 186 union { typeof(x) __val; char __c[1]; } __u = \ 188 __write_once_size(&(x), __u.__c, sizeof(x)); \
|
/linux/arch/arm/include/asm/ |
A D | dcc.h | 18 char __c; in __dcc_getchar() local 21 : "=r" (__c)); in __dcc_getchar() 24 return __c; in __dcc_getchar()
|
/linux/tools/virtio/ringtest/ |
A D | main.h | 180 union { typeof(x) __val; char __c[1]; } __u; \ 181 __read_once_size(&(x), __u.__c, sizeof(x)); \ 188 union { typeof(x) __val; char __c[1]; } __u = \ 190 __write_once_size(&(x), __u.__c, sizeof(x)); \
|
/linux/drivers/scsi/csiostor/ |
A D | csio_defs.h | 116 #define CSIO_DB_ASSERT(__c) CSIO_ASSERT((__c)) argument 118 #define CSIO_DB_ASSERT(__c) argument
|
/linux/drivers/mmc/host/ |
A D | dw_mmc-exynos.c | 448 u8 __c; in dw_mci_exynos_get_best_clksmpl() local 452 __c = ror8(candidates, i); in dw_mci_exynos_get_best_clksmpl() 453 if ((__c & 0xc7) == 0xc7) { in dw_mci_exynos_get_best_clksmpl() 460 __c = ror8(candidates, i); in dw_mci_exynos_get_best_clksmpl() 461 if ((__c & 0x83) == 0x83) { in dw_mci_exynos_get_best_clksmpl() 473 __c = ror8(candidates, i); in dw_mci_exynos_get_best_clksmpl() 474 if ((__c & 0x1) == 0x1) { in dw_mci_exynos_get_best_clksmpl()
|
/linux/arch/sh/include/asm/ |
A D | string_32.h | 88 extern void *memset(void *__s, int __c, size_t __count); 97 extern void *memchr(const void *__s, int __c, size_t __n);
|
/linux/drivers/gpu/drm/arm/display/komeda/ |
A D | komeda_pipeline.h | 223 #define to_comp(__c) (((__c) == NULL) ? NULL : &((__c)->base)) argument 224 #define to_cpos(__c) ((struct komeda_component **)&(__c)) argument
|
/linux/arch/xtensa/include/asm/ |
A D | string.h | 110 extern void *memset(void *__s, int __c, size_t __count); 111 extern void *__memset(void *__s, int __c, size_t __count);
|
/linux/drivers/usb/host/ |
A D | isp116x.h | 542 #define PTD_DIR_STR(ptd) ({char __c; \ 544 case 0: __c = 's'; break; \ 545 case 1: __c = 'o'; break; \ 546 default: __c = 'i'; break; \ 547 }; __c;})
|
/linux/arch/mips/include/asm/ |
A D | string.h | 14 extern void *memset(void *__s, int __c, size_t __count);
|
/linux/kernel/debug/kdb/ |
A D | kdb_main.c | 1530 ({unsigned char __c = c; isascii(__c) && isprint(__c) ? __c : '.'; }) in kdb_md_line()
|
/linux/drivers/net/wireless/realtek/rtw89/ |
A D | phy.c | 1045 const struct rtw89_chip_info *__c = (rtwdev)->chip; \ 1046 (txpwr_rf) >> (__c->txpwr_factor_rf - __c->txpwr_factor_mac); \
|