Symbol: __ASM_SIZE
arch/x86/include/asm/asm.h
39
#define _ASM_MOV __ASM_SIZE(mov)
arch/x86/include/asm/asm.h
40
#define _ASM_INC __ASM_SIZE(inc)
arch/x86/include/asm/asm.h
41
#define _ASM_DEC __ASM_SIZE(dec)
arch/x86/include/asm/asm.h
42
#define _ASM_ADD __ASM_SIZE(add)
arch/x86/include/asm/asm.h
43
#define _ASM_SUB __ASM_SIZE(sub)
arch/x86/include/asm/asm.h
44
#define _ASM_XADD __ASM_SIZE(xadd)
arch/x86/include/asm/asm.h
45
#define _ASM_MUL __ASM_SIZE(mul)
arch/x86/include/asm/bitops.h
117
asm volatile(__ASM_SIZE(btc) " %1,%0" : : ADDR, "Ir" (nr) : "memory");
arch/x86/include/asm/bitops.h
128
asm_inline volatile(LOCK_PREFIX __ASM_SIZE(btc) " %1,%0"
arch/x86/include/asm/bitops.h
136
return GEN_BINARY_RMWcc(LOCK_PREFIX __ASM_SIZE(bts), *addr, c, "Ir", nr);
arch/x86/include/asm/bitops.h
150
asm(__ASM_SIZE(bts) " %2,%1"
arch/x86/include/asm/bitops.h
159
return GEN_BINARY_RMWcc(LOCK_PREFIX __ASM_SIZE(btr), *addr, c, "Ir", nr);
arch/x86/include/asm/bitops.h
175
asm volatile(__ASM_SIZE(btr) " %2,%1"
arch/x86/include/asm/bitops.h
186
asm volatile(__ASM_SIZE(btc) " %2,%1"
arch/x86/include/asm/bitops.h
196
return GEN_BINARY_RMWcc(LOCK_PREFIX __ASM_SIZE(btc), *addr, c, "Ir", nr);
arch/x86/include/asm/bitops.h
222
asm volatile(__ASM_SIZE(bt) " %2,%1"
arch/x86/include/asm/bitops.h
60
asm_inline volatile(LOCK_PREFIX __ASM_SIZE(bts) " %1,%0"
arch/x86/include/asm/bitops.h
68
asm volatile(__ASM_SIZE(bts) " %1,%0" : : ADDR, "Ir" (nr) : "memory");
arch/x86/include/asm/bitops.h
79
asm_inline volatile(LOCK_PREFIX __ASM_SIZE(btr) " %1,%0"
arch/x86/include/asm/bitops.h
94
asm volatile(__ASM_SIZE(btr) " %1,%0" : : ADDR, "Ir" (nr) : "memory");
arch/x86/include/asm/sync_bitops.h
111
return GEN_BINARY_RMWcc("lock " __ASM_SIZE(btc), *addr, c, "Ir", nr);
arch/x86/include/asm/sync_bitops.h
34
asm volatile("lock " __ASM_SIZE(bts) " %1,%0"
arch/x86/include/asm/sync_bitops.h
52
asm volatile("lock " __ASM_SIZE(btr) " %1,%0"
arch/x86/include/asm/sync_bitops.h
69
asm volatile("lock " __ASM_SIZE(btc) " %1,%0"
arch/x86/include/asm/sync_bitops.h
85
return GEN_BINARY_RMWcc("lock " __ASM_SIZE(bts), *addr, c, "Ir", nr);
arch/x86/include/asm/sync_bitops.h
98
return GEN_BINARY_RMWcc("lock " __ASM_SIZE(btr), *addr, c, "Ir", nr);
tools/arch/x86/include/asm/asm.h
35
#define _ASM_MOV __ASM_SIZE(mov)
tools/arch/x86/include/asm/asm.h
36
#define _ASM_INC __ASM_SIZE(inc)
tools/arch/x86/include/asm/asm.h
37
#define _ASM_DEC __ASM_SIZE(dec)
tools/arch/x86/include/asm/asm.h
38
#define _ASM_ADD __ASM_SIZE(add)
tools/arch/x86/include/asm/asm.h
39
#define _ASM_SUB __ASM_SIZE(sub)
tools/arch/x86/include/asm/asm.h
40
#define _ASM_XADD __ASM_SIZE(xadd)
tools/arch/x86/include/asm/asm.h
41
#define _ASM_MUL __ASM_SIZE(mul)
tools/arch/x86/include/asm/atomic.h
76
GEN_BINARY_RMWcc(LOCK_PREFIX __ASM_SIZE(bts), *addr, "Ir", nr, "%0", "c");
tools/arch/x86/include/asm/atomic.h
81
GEN_BINARY_RMWcc(LOCK_PREFIX __ASM_SIZE(btc), *addr, "Ir", nr, "%0", "c");