Lines Matching refs:pCount
42 oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) in osl_incrementInterlockedCount() argument
51 : "+r" (nCount), "+m" (*pCount) in osl_incrementInterlockedCount()
59 : "+r" (nCount), "+m" (*pCount) in osl_incrementInterlockedCount()
67 oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount) in osl_decrementInterlockedCount() argument
76 : "+r" (nCount), "+m" (*pCount) in osl_decrementInterlockedCount()
84 : "+r" (nCount), "+m" (*pCount) in osl_decrementInterlockedCount()
97 oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) in osl_incrementInterlockedCount() argument
108 : "=&r" (nCount), "=m" (*pCount) in osl_incrementInterlockedCount()
109 : "r" (pCount) in osl_incrementInterlockedCount()
115 oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount) in osl_decrementInterlockedCount() argument
126 : "=&r" (nCount), "=m" (*pCount) in osl_decrementInterlockedCount()
127 : "r" (pCount) in osl_decrementInterlockedCount()
138 oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) in osl_incrementInterlockedCount() argument
150 : "=&r" (nCount), "=&r" (nResult), "=m" (*pCount) in osl_incrementInterlockedCount()
151 : "r" (pCount) in osl_incrementInterlockedCount()
156 return __sync_add_and_fetch( pCount, 1 ); in osl_incrementInterlockedCount()
160 oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount) in osl_decrementInterlockedCount() argument
172 : "=&r" (nCount), "=&r" (nResult), "=m" (*pCount) in osl_decrementInterlockedCount()
173 : "r" (pCount) in osl_decrementInterlockedCount()
177 return __sync_sub_and_fetch( pCount, 1 ); in osl_decrementInterlockedCount()
191 oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) in osl_incrementInterlockedCount() argument
193 return __sync_add_and_fetch( pCount, 1 ); in osl_incrementInterlockedCount()
199 oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount) in osl_decrementInterlockedCount() argument
201 return __sync_sub_and_fetch( pCount, 1 ); in osl_decrementInterlockedCount()
212 oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) in osl_incrementInterlockedCount() argument
217 Count = ++(*pCount); in osl_incrementInterlockedCount()
226 oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount) in osl_decrementInterlockedCount() argument
231 Count = --(*pCount); in osl_decrementInterlockedCount()