Home | History | Annotate | Download | only in dist

Lines Matching defs:hexdigits

128981 static const char hexdigits[] = {
129025 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
129026 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
129152 *(z++) = hexdigits[(c>>4)&0xf];
129153 *(z++) = hexdigits[c&0xf];