Lines Matching refs:old
279 int try, new, old = allocate ? BANDWIDTH_AVAILABLE_INITIAL : 0; in manage_bandwidth() local
288 new = allocate ? old - bandwidth : old + bandwidth; in manage_bandwidth()
292 data[0] = cpu_to_be32(old); in manage_bandwidth()
303 if (be32_to_cpup(data) == old) in manage_bandwidth()
306 old = be32_to_cpup(data); in manage_bandwidth()
317 __be32 bit, all, old; in manage_channel() local
321 old = all = allocate ? cpu_to_be32(~0) : 0; in manage_channel()
330 if ((old & bit) != (all & bit)) in manage_channel()
333 data[0] = old; in manage_channel()
334 data[1] = old ^ bit; in manage_channel()
343 if (data[0] == old) in manage_channel()
346 old = data[0]; in manage_channel()