Lines Matching refs:low
661 out_bits(FILE *stream, size_t low, size_t high)
663 if (low == high)
664 return fprintf(stream, "%zd", low);
666 return fprintf(stream, "%zd-%zd", low, high);
729 ssize_t low = -1;
735 if (low < 0) {
737 if (low == -2
740 low = bitno;
743 if (account_output(&o, out_bits(stream, low,
746 low = -2;
751 if (low >= 0 && account_output(&o, out_bits(stream, low, bitno-1)) < 0)