HomeSort by: relevance | last modified time | path
    Searched refs:hexdig (Results 1 - 13 of 13) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/include/internal/
to_hex.h 14 static ossl_inline size_t to_hex(char *buf, uint8_t n, const char hexdig[17])
16 *buf++ = hexdig[(n >> 4) & 0xf];
17 *buf = hexdig[n & 0xf];
23 static const char hexdig[] = "0123456789abcdef"; local
25 return to_hex(buf, n, hexdig);
  /src/lib/libc/gdtoa/
hd_init.c 36 unsigned char hexdig[256]; variable
54 htinit(hexdig, USC "0123456789", 0x10);
55 htinit(hexdig, USC "abcdef", 0x10 + 10);
56 htinit(hexdig, USC "ABCDEF", 0x10 + 10);
gethex.c 53 if (!hexdig[(unsigned char)'0'])
65 if (hexdig[(unsigned char)*s])
80 if (!hexdig[(unsigned char)*s])
84 if (hexdig[(unsigned char)*s])
89 while(hexdig[(unsigned char)*s])
102 while(hexdig[(unsigned char)*s])
120 if ((n = hexdig[(unsigned char)*s]) == 0 || n > 0x19) {
125 while((n = hexdig[(unsigned char)*++s]) !=0 && n <= 0x19) {
212 L |= (unsigned int)(hexdig[(unsigned char)*s1] & 0x0f) << n;
hexnan.c 66 if (!hexdig['0'])
83 if (!(h = hexdig[c])) {
gdtoaimp.h 556 #define hexdig __hexdig_D2A macro
588 extern unsigned char hexdig[];
  /src/external/bsd/openldap/dist/libraries/liblber/
bprint.c 189 static const char hexdig[] = "0123456789abcdef"; local
214 line[2] = hexdig[0x0f & (off >> 12)];
215 line[3] = hexdig[0x0f & (off >> 8)];
216 line[4] = hexdig[0x0f & (off >> 4)];
217 line[5] = hexdig[0x0f & off];
222 line[off] = hexdig[0x0f & ( data[i] >> 4 )];
223 line[off+1] = hexdig[0x0f & data[i]];
  /src/crypto/external/bsd/openssl.old/dist/crypto/
o_str.c 193 static const char hexdig[] = "0123456789ABCDEF"; local
209 *q++ = hexdig[(*p >> 4) & 0xf];
210 *q++ = hexdig[*p & 0xf];
  /src/crypto/external/bsd/openssl/dist/crypto/
o_str.c 225 static const char hexdig[] = "0123456789ABCDEF"; local
246 *q++ = hexdig[(*p >> 4) & 0xf];
247 *q++ = hexdig[*p & 0xf];
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
a_strex.c 238 static const char hexdig[] = "0123456789ABCDEF"; local
245 hextmp[0] = hexdig[*p >> 4];
246 hextmp[1] = hexdig[*p & 0xf];
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
a_strex.c 237 static const char hexdig[] = "0123456789ABCDEF"; local
244 hextmp[0] = hexdig[*p >> 4];
245 hextmp[1] = hexdig[*p & 0xf];
  /src/crypto/external/apache2/openssl/dist/crypto/
o_str.c 445 static const char hexdig[] = "0123456789ABCDEF"; local
447 return to_hex(buf, n, hexdig);
  /src/sys/dev/iscsi/
iscsi_text.c 239 * hexdig:
250 hexdig(uint8_t c) function
312 val = (hexdig(c) << 4) | hexdig(*buf);
358 if ((n = hexdig(*buf++)) < 0)
  /src/external/bsd/openldap/dist/libraries/libldap/
getdn.c 2000 static const char hexdig[] = "0123456789ABCDEF"; local
2010 pair[ 0 ] = hexdig[ 0x0f & ( val[ 0 ] >> 4 ) ];
2011 pair[ 1 ] = hexdig[ 0x0f & val[ 0 ] ];

Completed in 27 milliseconds