Lines Matching refs:i32

402  * @param   i32     The 32-bit value to assign to *pi32.
404 DECLINLINE(int32_t) ASMAtomicXchgS32(volatile int32_t *pi32, int32_t i32)
406 return (int32_t)ASMAtomicXchgU32((volatile uint32_t *)pi32, (uint32_t)i32);
2109 * @param i32 The 32-bit value to assign to *pi32.
2111 DECLINLINE(void) ASMAtomicWriteS32(volatile int32_t *pi32, int32_t i32)
2113 ASMAtomicXchgS32(pi32, i32);
2121 * @param i32 The 32-bit value to assign to *pi32.
2123 DECLINLINE(void) ASMAtomicUoWriteS32(volatile int32_t *pi32, int32_t i32)
2126 *pi32 = i32;
2492 * @param i32 Number to add.
2494 DECLINLINE(int32_t) ASMAtomicAddS32(int32_t volatile *pi32, int32_t i32)
2496 return (int32_t)ASMAtomicAddU32((uint32_t volatile *)pi32, (uint32_t)i32);
2609 * @param i32 Number to subtract.
2611 DECLINLINE(int32_t) ASMAtomicSubS32(int32_t volatile *pi32, int32_t i32)
2613 return (int32_t)ASMAtomicAddU32((uint32_t volatile *)pi32, (uint32_t)-i32);
2953 * @param i32 The value to OR *pu32 with.
2955 DECLINLINE(void) ASMAtomicOrS32(int32_t volatile *pi32, int32_t i32)
2957 ASMAtomicOrU32((uint32_t volatile *)pi32, i32);
3045 * @param pi32 Pointer to the pointer variable to AND i32 with.
3046 * @param i32 The value to AND *pi32 with.
3048 DECLINLINE(void) ASMAtomicAndS32(int32_t volatile *pi32, int32_t i32)
3050 ASMAtomicAndU32((uint32_t volatile *)pi32, (uint32_t)i32);
3136 * @param i32 The value to OR *pu32 with.
3138 DECLINLINE(void) ASMAtomicUoOrS32(int32_t volatile *pi32, int32_t i32)
3140 ASMAtomicUoOrU32((uint32_t volatile *)pi32, i32);
3222 * @param pi32 Pointer to the pointer variable to AND i32 with.
3223 * @param i32 The value to AND *pi32 with.
3225 DECLINLINE(void) ASMAtomicUoAndS32(int32_t volatile *pi32, int32_t i32)
3227 ASMAtomicUoAndU32((uint32_t volatile *)pi32, (uint32_t)i32);
4752 * @param i32 Integer to search for set bits.
4755 DECLINLINE(unsigned) ASMBitFirstSetS32(int32_t i32)
4757 return ASMBitFirstSetU32((uint32_t)i32);
4817 * @param i32 Integer to search for set bits.
4820 DECLINLINE(unsigned) ASMBitLastSetS32(int32_t i32)
4822 return ASMBitLastSetU32((uint32_t)i32);