Lines Matching defs:old
226 /* Return old value */
231 unsigned char old, new, oval;
244 old = ret;
245 oval = old & mask;
250 new = (old & ~mask) | (val & mask);
256 reg, old, new, ret);
292 /* Return old value */
296 unsigned char old, new, oval;
300 old = inb(chip->port + 0x05);
301 oval = old & mask;
303 new = (old & ~mask) | (val & mask);
307 reg, old, new);
317 int old, expected, new;
321 old = inb(chip->port + 0x05);
322 expected = old ^ mask;
328 reg, old, expected, new);