Lines Matching defs:new
539 int mask, ret, old, new, shift;
541 u32 old, u32 new, u32 mask);
585 new = old & (~mask | ~behavior[reg / 4].rw);
588 new |= (value << shift) & (behavior[reg / 4].rw & mask);
591 new &= ~((value << shift) & (behavior[reg / 4].w1c & mask));
593 new = old & ~mask;
594 new |= (value << shift) & mask;
598 /* Save the new value with the cleared W1C bits into the cfgspace */
599 cfgspace[reg / 4] = cpu_to_le32(new);
607 new &= ~(behavior[reg / 4].w1c & ~mask);
613 new |= (value << shift) & (behavior[reg / 4].w1c & mask);
617 write_op(bridge, reg, old, new, mask);