Home | History | Annotate | Download | only in resolv

Lines Matching refs:numDigits

288 _bprint_hex( char*  p, char*  end, unsigned  value, int  numDigits )
293 while (numDigits-- > 0) {
294 text[nn++] = "0123456789abcdef"[(value >> (numDigits*4)) & 15];