Home | History | Annotate | Download | only in src

Lines Matching refs:hexdigits

825 static const char hexdigits[] = {
859 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
860 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
923 *(z++) = hexdigits[(c>>4)&0xf];
924 *(z++) = hexdigits[c&0xf];