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

/system/chre/host/msm/daemon/generated/
H A Dchre_slpi_stub.c491 uint32_t _chre_slpi_atomic_CompareAndExchange(uint32_t * volatile puDest, uint32_t uExchange, uint32_t uCompare);
495 uint32_t _chre_slpi_atomic_CompareAndExchange(uint32_t * volatile puDest, uint32_t uExchange, uint32_t uCompare) { argument
496 return (uint32_t)InterlockedCompareExchange((volatile LONG*)puDest, (LONG)uExchange, (LONG)uCompare);
499 uint32_t _chre_slpi_atomic_CompareAndExchange(uint32_t * volatile puDest, uint32_t uExchange, uint32_t uCompare) { argument
500 return __sync_val_compare_and_swap(puDest, uCompare, uExchange);

Completed in 161 milliseconds