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

/macosx-10.10.1/xnu-2782.1.97/libkern/gen/
H A DOSAtomicOperations.c75 static UInt32 OSBitwiseAtomic(UInt32 and_mask, UInt32 or_mask, UInt32 xor_mask, volatile UInt32 * value) argument
82 newValue = ((oldValue & and_mask) | or_mask) ^ xor_mask;
186 static UInt8 OSBitwiseAtomic8(UInt32 and_mask, UInt32 or_mask, UInt32 xor_mask, volatile UInt8 * value) argument
193 newValue = ((oldValue & and_mask) | or_mask) ^ xor_mask;
260 static UInt16 OSBitwiseAtomic16(UInt32 and_mask, UInt32 or_mask, UInt32 xor_mask, volatile UInt16 * value) argument
267 newValue = ((oldValue & and_mask) | or_mask) ^ xor_mask;

Completed in 375 milliseconds