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

/vbox/include/iprt/
H A Dasm.h789 * @param i32Old The old value to *pi32 compare with.
791 DECLINLINE(bool) ASMAtomicCmpXchgS32(volatile int32_t *pi32, const int32_t i32New, const int32_t i32Old) argument
793 return ASMAtomicCmpXchgU32((volatile uint32_t *)pi32, (uint32_t)i32New, (uint32_t)i32Old);
1084 * @param i32Old The old value to *pi32 compare with.
1087 DECLINLINE(bool) ASMAtomicCmpXchgExS32(volatile int32_t *pi32, const int32_t i32New, const int32_t i32Old, int32_t *pi32Old) argument
1089 return ASMAtomicCmpXchgExU32((volatile uint32_t *)pi32, (uint32_t)i32New, (uint32_t)i32Old, (uint32_t *)pi32Old);

Completed in 53 milliseconds