Symbol: __SIMPLELOCK_LOCKED
sys/arch/acorn32/include/lock.h
65
while (__swp(__SIMPLELOCK_LOCKED, alp) != __SIMPLELOCK_UNLOCKED)
sys/arch/acorn32/include/lock.h
75
__result = __swp(__SIMPLELOCK_LOCKED, alp) == __SIMPLELOCK_UNLOCKED;
sys/arch/alpha/include/lock.h
103
: "i" (__SIMPLELOCK_LOCKED), "m" (*alp)
sys/arch/alpha/include/lock.h
128
: "i" (__SIMPLELOCK_LOCKED), "m" (*alp)
sys/arch/alpha/include/lock.h
47
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/alpha/include/lock.h
65
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/arm/include/lock.h
172
|| __arm_store_exclusive(__alp, __SIMPLELOCK_LOCKED));
sys/arch/arm/include/lock.h
175
while (__swp(__SIMPLELOCK_LOCKED, __alp) != __SIMPLELOCK_UNLOCKED)
sys/arch/arm/include/lock.h
192
} while (__arm_store_exclusive(__alp, __SIMPLELOCK_LOCKED));
sys/arch/arm/include/lock.h
196
return (__swp(__SIMPLELOCK_LOCKED, __alp) == __SIMPLELOCK_UNLOCKED);
sys/arch/arm/include/lock.h
47
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/arm/include/lock.h
65
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/ia64/include/lock.h
42
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/ia64/include/lock.h
55
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/ia64/include/lock.h
93
val = __SIMPLELOCK_LOCKED;
sys/arch/m68k/include/lock.h
107
__rv = _atomic_cas_8(alp, __SIMPLELOCK_UNLOCKED, __SIMPLELOCK_LOCKED)
sys/arch/m68k/include/lock.h
52
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/m68k/include/lock.h
78
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/m68k/include/lock.h
89
__SIMPLELOCK_LOCKED);
sys/arch/mips/include/lock.h
128
__SIMPLELOCK_UNLOCKED, __SIMPLELOCK_LOCKED) ==
sys/arch/mips/include/lock.h
146
while (*lp == __SIMPLELOCK_LOCKED)
sys/arch/mips/include/lock.h
67
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/mips/include/lock.h
98
: "i" (__SIMPLELOCK_LOCKED), "m" (*lp));
sys/arch/or1k/include/lock.h
109
: [newval] "r" (__SIMPLELOCK_LOCKED),
sys/arch/or1k/include/lock.h
131
: [newval] "r" (__SIMPLELOCK_LOCKED),
sys/arch/or1k/include/lock.h
66
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/powerpc/include/lock.h
129
: "r"(alp), "I"(__SIMPLELOCK_UNLOCKED), "r"(__SIMPLELOCK_LOCKED),
sys/arch/powerpc/include/lock.h
46
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/powerpc/include/lock.h
64
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/powerpc/include/lock.h
98
: "r"(alp), "I"(__SIMPLELOCK_UNLOCKED), "r"(__SIMPLELOCK_LOCKED)
sys/arch/sh3/include/lock.h
51
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/sh3/include/lock.h
69
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/sparc/include/lock.h
77
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/sparc/include/lock.h
95
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/usermode/include/lock.h
41
if (*lockp == __SIMPLELOCK_LOCKED)
sys/arch/usermode/include/lock.h
43
*lockp = __SIMPLELOCK_LOCKED;
sys/arch/usermode/include/lock.h
63
return *lockp == __SIMPLELOCK_LOCKED;
sys/arch/vax/include/lock.h
44
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/vax/include/lock.h
62
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/x86/include/lock.h
44
return *__ptr == __SIMPLELOCK_LOCKED;
sys/arch/x86/include/lock.h
57
*__ptr = __SIMPLELOCK_LOCKED;
sys/arch/x86/include/lock.h
98
val = __SIMPLELOCK_LOCKED;
sys/sys/common_lock.h
66
*__ptr = __SIMPLELOCK_LOCKED;
sys/sys/common_lock.h
68
__atomic_store_n(__ptr, __SIMPLELOCK_LOCKED, __ATOMIC_RELAXED);
sys/sys/common_lock.h
85
while (__atomic_exchange_n(__ptr, __SIMPLELOCK_LOCKED, __ATOMIC_ACQUIRE) == __SIMPLELOCK_LOCKED) {
sys/sys/common_lock.h
93
return __atomic_exchange_n(__ptr, __SIMPLELOCK_LOCKED, __ATOMIC_ACQUIRE) == __SIMPLELOCK_UNLOCKED;