Home | History | Annotate | Download | only in cintltst

Lines Matching defs:HEX_DIGITS

584     static const char HEX_DIGITS[] = {
628 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff];
629 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff];
630 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff];
631 resultChars[resultLen++]=HEX_DIGITS[uc&0xff];