Lines Matching refs:old
238 int try, new, old = allocate ? BANDWIDTH_AVAILABLE_INITIAL : 0; in manage_bandwidth() local
247 new = allocate ? old - bandwidth : old + bandwidth; in manage_bandwidth()
251 data[0] = cpu_to_be32(old); in manage_bandwidth()
262 if (be32_to_cpup(data) == old) in manage_bandwidth()
265 old = be32_to_cpup(data); in manage_bandwidth()
276 __be32 bit, all, old; in manage_channel() local
280 old = all = allocate ? cpu_to_be32(~0) : 0; in manage_channel()
289 if ((old & bit) != (all & bit)) in manage_channel()
292 data[0] = old; in manage_channel()
293 data[1] = old ^ bit; in manage_channel()
302 if (data[0] == old) in manage_channel()
305 old = data[0]; in manage_channel()