Home
last modified time | relevance | path

Searched refs:__c (Results 1 – 25 of 32) sorted by relevance

12

/linux/tools/arch/arm64/include/asm/
H A Dbarrier.h29 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/
H A Dbarrier.h36 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/
H A Dbarrier.h133 union { __unqual_scalar_typeof(*p) __val; char __c[1]; } __u = \
141 : "rZ" (*(__u8 *)__u.__c) \
147 : "rZ" (*(__u16 *)__u.__c) \
153 : "rZ" (*(__u32 *)__u.__c) \
159 : "rZ" (*(__u64 *)__u.__c) \
167 union { __unqual_scalar_typeof(*p) __val; char __c[1]; } __u; \
174 : "=r" (*(__u8 *)__u.__c) \
179 : "=r" (*(__u16 *)__u.__c) \
184 : "=r" (*(__u32 *)__u.__c) \
189 : "=r" (*(__u64 *)__u.__c) \
H A Drwonce.h36 union { __unqual_scalar_typeof(*__x) __val; char __c[1]; } __u; \
40 : "=r" (*(__u8 *)__u.__c) \
45 : "=r" (*(__u16 *)__u.__c) \
50 : "=r" (*(__u32 *)__u.__c) \
55 : "=r" (*(__u64 *)__u.__c) \
H A Dcpuidle.h15 #define arm_cpuidle_save_irq_context(__c) \ argument
17 struct arm_cpuidle_irq_context *c = __c; \
27 #define arm_cpuidle_restore_irq_context(__c) \ argument
29 struct arm_cpuidle_irq_context *c = __c; \
H A Dkvm_nested.h368 u32 __c = (c); \
369 BUG_ON(__c >= NR_CPUS); \
370 (FIX_VNCR - __c); \
/linux/tools/testing/selftests/rseq/
H A Drseq-arm64.h30 union { rseq_unqual_scalar_typeof(*(p)) __val; char __c[sizeof(*(p))]; } __u; \
34 : "=r" (*(__u8 *)__u.__c) \
39 : "=r" (*(__u16 *)__u.__c) \
44 : "=r" (*(__u32 *)__u.__c) \
49 : "=r" (*(__u64 *)__u.__c) \
60 union { rseq_unqual_scalar_typeof(*(p)) __val; char __c[sizeof(*(p))]; } __u = \
66 : "r" (*(__u8 *)__u.__c) \
72 : "r" (*(__u16 *)__u.__c) \
78 : "r" (*(__u32 *)__u.__c) \
84 : "r" (*(__u64 *)__u.__c) \
/linux/tools/virtio/ringtest/
H A Dmain.h186 union { typeof(x) __val; char __c[1]; } __u; \
187 __read_once_size(&(x), __u.__c, sizeof(x)); \
194 union { typeof(x) __val; char __c[1]; } __u; \
195 __read_once_size(&(x), __u.__c, sizeof(x)); \
202 union { typeof(x) __val; char __c[1]; } __u = \
204 __write_once_size(&(x), __u.__c, sizeof(x)); \
/linux/arch/loongarch/include/asm/
H A Dbarrier.h108 union { typeof(p) __val; char __c[1]; } __u = \
113 *(volatile __u8 *)&p = *(__u8 *)__u.__c; \
117 *(volatile __u16 *)&p = *(__u16 *)__u.__c; \
124 : [val] "r" (*(__u32 *)__u.__c) \
131 : [val] "r" (*(__u64 *)__u.__c) \
H A Dstring.h9 extern void *memset(void *__s, int __c, size_t __count);
10 extern void *__memset(void *__s, int __c, size_t __count);
/linux/samples/bpf/
H A Dxdp_sample.bpf.h99 union { typeof(x) __val; char __c[1]; } __u = \
100 { .__c = { 0 } }; \
101 __read_once_size(&(x), __u.__c, sizeof(x)); \
107 union { typeof(x) __val; char __c[1]; } __u = \
109 __write_once_size(&(x), __u.__c, sizeof(x)); \
/linux/include/linux/
H A Dcompat.h470 compat_sigset_t __user *__c = compat; \
475 unsafe_put_user(__s->sig[3] >> 32, &__c->sig[7], label); \
476 unsafe_put_user(__s->sig[3], &__c->sig[6], label); \
479 unsafe_put_user(__s->sig[2] >> 32, &__c->sig[5], label); \
480 unsafe_put_user(__s->sig[2], &__c->sig[4], label); \
483 unsafe_put_user(__s->sig[1] >> 32, &__c->sig[3], label); \
484 unsafe_put_user(__s->sig[1], &__c->sig[2], label); \
487 unsafe_put_user(__s->sig[0] >> 32, &__c->sig[1], label); \
488 unsafe_put_user(__s->sig[0], &__c->sig[0], label); \
493 const compat_sigset_t __user *__c = compat; \
[all …]
H A Ddma-fence-unwrap.h72 struct dma_fence_unwrap __c[ARRAY_SIZE(__f)]; \
74 __dma_fence_unwrap_merge(ARRAY_SIZE(__f), __f, __c); \
H A Dcgroup.h415 #define task_css_set_check(task, __c) \ argument
420 ((task)->flags & PF_EXITING) || (__c))
422 #define task_css_set_check(task, __c) \ argument
435 #define task_css_check(task, subsys_id, __c) \ argument
436 task_css_set_check((task), (__c))->subsys[(subsys_id)]
/linux/arch/m68k/include/asm/
H A Dbootstd.h91 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/arch/arm/include/asm/
H A Ddcc.h18 char __c; in __dcc_getchar() local
21 : "=r" (__c)); in __dcc_getchar()
24 return __c; in __dcc_getchar()
/linux/arch/x86/kvm/
H A Dx86.h659 #define __cr4_reserved_bits(__cpu_has, __c) \ argument
663 if (!__cpu_has(__c, X86_FEATURE_XSAVE)) \
665 if (!__cpu_has(__c, X86_FEATURE_SMEP)) \
667 if (!__cpu_has(__c, X86_FEATURE_SMAP)) \
669 if (!__cpu_has(__c, X86_FEATURE_FSGSBASE)) \
671 if (!__cpu_has(__c, X86_FEATURE_PKU)) \
673 if (!__cpu_has(__c, X86_FEATURE_LA57)) \
675 if (!__cpu_has(__c, X86_FEATURE_UMIP)) \
677 if (!__cpu_has(__c, X86_FEATURE_VMX)) \
679 if (!__cpu_has(__c, X86_FEATURE_PCID)) \
[all …]
/linux/arch/riscv/include/asm/
H A Dkvm_nacl.h103 unsigned long __c = SBI_NACL_SHMEM_HFENCE_CONFIG_PEND; \
104 __c |= ((__type) & SBI_NACL_SHMEM_HFENCE_CONFIG_TYPE_MASK) \
106 __c |= (((__order) - SBI_NACL_SHMEM_HFENCE_ORDER_BASE) & \
109 __c |= ((__vmid) & SBI_NACL_SHMEM_HFENCE_CONFIG_VMID_MASK) \
111 __c |= ((__asid) & SBI_NACL_SHMEM_HFENCE_CONFIG_ASID_MASK); \
112 __c; \
/linux/tools/include/linux/
H A Dcompiler.h226 union { typeof(x) __val; char __c[1]; } __u = \
227 { .__c = { 0 } }; \
228 __read_once_size(&(x), __u.__c, sizeof(x)); \
234 union { typeof(x) __val; char __c[1]; } __u = \
236 __write_once_size(&(x), __u.__c, sizeof(x)); \
/linux/drivers/scsi/csiostor/
H A Dcsio_defs.h130 #define CSIO_DB_ASSERT(__c) CSIO_ASSERT((__c)) argument
132 #define CSIO_DB_ASSERT(__c) argument
/linux/arch/sh/include/asm/
H A 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/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_pipeline.h223 #define to_comp(__c) (((__c) == NULL) ? NULL : &((__c)->base)) argument
224 #define to_cpos(__c) ((struct komeda_component **)&(__c)) argument
/linux/drivers/mmc/host/
H A Ddw_mmc-exynos.c498 u8 __c; in dw_mci_exynos_get_best_clksmpl() local
502 __c = ror8(candidates, i); in dw_mci_exynos_get_best_clksmpl()
503 if ((__c & 0xc7) == 0xc7) { in dw_mci_exynos_get_best_clksmpl()
510 __c = ror8(candidates, i); in dw_mci_exynos_get_best_clksmpl()
511 if ((__c & 0x83) == 0x83) { in dw_mci_exynos_get_best_clksmpl()
523 __c = ror8(candidates, i); in dw_mci_exynos_get_best_clksmpl()
524 if ((__c & 0x1) == 0x1) { in dw_mci_exynos_get_best_clksmpl()
/linux/arch/xtensa/include/asm/
H A Dstring.h110 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/
H A Disp116x.h542 #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;})

12