Searched refs:alp (Results 1 - 14 of 14) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/sys/
H A Dsimplelock.h103 #define simple_lock_init(alp) __cpu_simple_lock_init(&(alp)->lock_data)
104 #define simple_lock(alp) __cpu_simple_lock(&(alp)->lock_data)
105 #define simple_lock_held(alp) (__SIMPLELOCK_LOCKED_P(&(alp)->lock_data))
106 #define simple_lock_try(alp) __cpu_simple_lock_try(&(alp)->lock_data)
107 #define simple_unlock(alp) __cpu_simple_unlock(&(alp)
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/other/
H A Dptrmem3.C9 typedef long A::* alp; typedef in class:A
13 return ((aip)(alp)0 != (aip)0);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/other/
H A Dptrmem3.C9 typedef long A::* alp; typedef in class:A
13 return ((aip)(alp)0 != (aip)0);
/netbsd-6-1-5-RELEASE/sys/arch/hppa/include/
H A Dlock.h86 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
88 alp->csl_lock[0] = alp->csl_lock[1] =
89 alp->csl_lock[2] = alp->csl_lock[3] =
95 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
97 volatile unsigned long *__aptr = __SIMPLELOCK_ALIGN(alp);
112 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
114 volatile unsigned long *__aptr = __SIMPLELOCK_ALIGN(alp);
120 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
129 __cpu_simple_lock_set(__cpu_simple_lock_t *alp) argument
137 __cpu_simple_lock_clear(__cpu_simple_lock_t *alp) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/include/
H A Dlock.h64 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
66 *alp = __SIMPLELOCK_UNLOCKED;
71 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
89 : "r"(alp), "I"(__SIMPLELOCK_UNLOCKED), "r"(__SIMPLELOCK_LOCKED)
94 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
109 : "r"(alp), "I"(__SIMPLELOCK_UNLOCKED), "r"(__SIMPLELOCK_LOCKED),
117 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
120 *alp = __SIMPLELOCK_UNLOCKED;
/netbsd-6-1-5-RELEASE/sys/arch/m68k/include/
H A Dlock.h52 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
55 *alp = __SIMPLELOCK_UNLOCKED;
72 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
78 : "=m" (*alp));
82 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
92 : "=m" (*alp), "=d" (__rv));
98 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
101 *alp = __SIMPLELOCK_UNLOCKED;
/netbsd-6-1-5-RELEASE/sys/arch/acorn32/include/
H A Dlock.h55 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
58 *alp = __SIMPLELOCK_UNLOCKED;
62 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
65 while (__swp(__SIMPLELOCK_LOCKED, alp) != __SIMPLELOCK_UNLOCKED)
71 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
75 __result = __swp(__SIMPLELOCK_LOCKED, alp) == __SIMPLELOCK_UNLOCKED;
82 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
85 *alp = __SIMPLELOCK_UNLOCKED;
/netbsd-6-1-5-RELEASE/sys/arch/alpha/include/
H A Dlock.h69 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
77 : "=m" (*alp));
81 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
107 : "=&r" (t0), "=m" (*alp)
108 : "i" (__SIMPLELOCK_LOCKED), "m" (*alp)
113 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
132 : "=&r" (t0), "=r" (v0), "=m" (*alp)
133 : "i" (__SIMPLELOCK_LOCKED), "m" (*alp)
140 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
148 : "=m" (*alp));
[all...]
/netbsd-6-1-5-RELEASE/lib/libpthread/
H A Dpthread_lock.c68 pthread__ras_simple_lock_init(__cpu_simple_lock_t *alp) argument
71 __cpu_simple_lock_clear(alp);
75 pthread__ras_simple_lock_try(__cpu_simple_lock_t *alp) argument
80 locked = __SIMPLELOCK_LOCKED_P(alp);
81 __cpu_simple_lock_set(alp);
88 pthread__ras_simple_unlock(__cpu_simple_lock_t *alp) argument
91 __cpu_simple_lock_clear(alp);
104 pthread__atomic_simple_lock_init(__cpu_simple_lock_t *alp) argument
107 __cpu_simple_lock_init(alp);
111 pthread__atomic_simple_lock_try(__cpu_simple_lock_t *alp) argument
118 pthread__atomic_simple_unlock(__cpu_simple_lock_t *alp) argument
[all...]
H A Dpthread_int.h239 #define pthread__simple_lock_init(alp) (*pthread__lock_ops->plo_init)(alp)
240 #define pthread__simple_lock_try(alp) (*pthread__lock_ops->plo_try)(alp)
241 #define pthread__simple_unlock(alp) (*pthread__lock_ops->plo_unlock)(alp)
/netbsd-6-1-5-RELEASE/sys/arch/sparc/include/
H A Dlock.h99 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
102 *alp = __SIMPLELOCK_UNLOCKED;
107 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
117 while (__ldstub(alp) != __SIMPLELOCK_UNLOCKED) {
118 while (*alp != __SIMPLELOCK_UNLOCKED)
125 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
128 return (__ldstub(alp) == __SIMPLELOCK_UNLOCKED);
132 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
140 *alp = __SIMPLELOCK_UNLOCKED;
/netbsd-6-1-5-RELEASE/sys/arch/sh3/include/
H A Dlock.h73 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
76 *alp = __SIMPLELOCK_UNLOCKED;
80 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
87 : "r" (alp)
92 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
100 : "r" (alp)
107 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
110 *alp = __SIMPLELOCK_UNLOCKED;
/netbsd-6-1-5-RELEASE/sys/arch/arm/include/
H A Dlock.h97 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
100 *alp = __SIMPLELOCK_UNLOCKED;
104 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
107 while (__swp(__SIMPLELOCK_LOCKED, alp) != __SIMPLELOCK_UNLOCKED)
112 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
115 return (__swp(__SIMPLELOCK_LOCKED, alp) == __SIMPLELOCK_UNLOCKED);
119 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
122 *alp = __SIMPLELOCK_UNLOCKED;
/netbsd-6-1-5-RELEASE/external/mit/xorg/server/drivers/xf86-video-cirrus_alpine/
H A DMakefile8 SRCS= alp_driver.c alp.h alp_hwcurs.c alp_i2c.c alp_xaa.c

Completed in 131 milliseconds