Lines Matching full:newvalue
44 // Return oldValue with the bits indicated by mask replaced by corresponding bits of newValue.45 static inline int maskedBitReplace (int oldValue, int newValue, deUint32 mask)47 return (oldValue & ~mask) | (newValue & mask);