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()
189 oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount) in osl_incrementInterlockedCount() argument
194 Count = ++(*pCount); in osl_incrementInterlockedCount()
203 oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount) in osl_decrementInterlockedCount() argument
208 Count = --(*pCount); in osl_decrementInterlockedCount()