• Home
  • Raw
  • Download

Lines Matching refs:ret

70 	int ret;  in __split_next_bits()  local
77 ret = next_bits(p, &tmp, n - s); in __split_next_bits()
78 if (ret) in __split_next_bits()
79 return ret; in __split_next_bits()
80 ret = next_bits(p, d, s); in __split_next_bits()
81 if (ret) in __split_next_bits()
82 return ret; in __split_next_bits()
134 int ret; in do_data() local
139 ret = next_bits(p, &v, n * 8); in do_data()
140 if (ret) in do_data()
141 return ret; in do_data()
166 int ret; in __do_index() local
168 ret = next_bits(p, &index, bits); in __do_index()
169 if (ret) in __do_index()
170 return ret; in __do_index()
228 int i, ret = 0; in do_op() local
240 ret = do_data(p, op & OP_AMOUNT); in do_op()
243 ret = do_index(p, op & OP_AMOUNT); in do_op()
252 if (ret) in do_op()
253 return ret; in do_op()
281 int ret; in sw842_decompress() local
297 ret = next_bits(&p, &op, OP_BITS); in sw842_decompress()
298 if (ret) in sw842_decompress()
299 return ret; in sw842_decompress()
305 ret = next_bits(&p, &rep, REPEAT_BITS); in sw842_decompress()
306 if (ret) in sw842_decompress()
307 return ret; in sw842_decompress()
341 ret = next_bits(&p, &bytes, SHORT_DATA_BITS); in sw842_decompress()
342 if (ret) in sw842_decompress()
343 return ret; in sw842_decompress()
349 ret = next_bits(&p, &tmp, 8); in sw842_decompress()
350 if (ret) in sw842_decompress()
351 return ret; in sw842_decompress()
367 ret = do_op(&p, op); in sw842_decompress()
368 if (ret) in sw842_decompress()
369 return ret; in sw842_decompress()
378 ret = next_bits(&p, &crc, CRC_BITS); in sw842_decompress()
379 if (ret) in sw842_decompress()
380 return ret; in sw842_decompress()