Searched defs:hex_digits (Results 1 - 7 of 7) sorted by relevance

/external/mesa3d/src/util/
H A Dmesa-sha1.c74 static const char hex_digits[] = "0123456789abcdef"; local
78 buf[i] = hex_digits[sha1[i >> 1] >> 4];
79 buf[i + 1] = hex_digits[sha1[i >> 1] & 0x0f];
/external/ImageMagick/coders/
H A Dxbm.c138 static unsigned int XBMInteger(Image *image,short int *hex_digits)
165 if (value > (unsigned int) (INT_MAX-hex_digits[c]))
167 value+=hex_digits[c];
171 } while (hex_digits[c] >= 0);
198 hex_digits[256];
306 hex_digits[(int) '0']=0;
307 hex_digits[(int) '1']=1;
308 hex_digits[(int) '2']=2;
309 hex_digits[(int) '3']=3;
310 hex_digits[(in
134 XBMInteger(Image *image,short int *hex_digits) argument
194 hex_digits[256]; local
[all...]
H A Dps.c369 static inline int ProfileInteger(Image *image,short int *hex_digits)
393 value=(int) ((size_t) value << 4)+hex_digits[c];
481 hex_digits[256];
530 (void) ResetMagickMemory(hex_digits,0,sizeof(hex_digits));
531 hex_digits[(int) '0']=0;
532 hex_digits[(int) '1']=1;
533 hex_digits[(int) '2']=2;
534 hex_digits[(int) '3']=3;
535 hex_digits[(in
364 ProfileInteger(Image *image,short int *hex_digits) argument
476 hex_digits[256]; local
1143 PopHexPixel(const char *const *hex_digits, const size_t pixel,unsigned char *pixels) argument
1177 *const hex_digits[] = local
[all...]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dlexer.py119 hex_digits = '[0-9a-fA-F]+' variable in class:Lexer
123 hex_constant = hex_prefix+hex_digits
159 octal_or_hex_ordinal_disallowed = r'@((0[0-9]+)|('+hex_prefix+hex_digits+'))'
/external/avb/libavb/
H A Davb_util.c415 const char hex_digits[17] = "0123456789abcdef"; local
425 hex_data[n * 2] = hex_digits[data[n] >> 4];
426 hex_data[n * 2 + 1] = hex_digits[data[n] & 0x0f];
/external/ImageMagick/MagickCore/
H A Dstring.c1989 hex_digits[16];
1998 hex_digits[0]='0';
1999 hex_digits[1]='1';
2000 hex_digits[2]='2';
2001 hex_digits[3]='3';
2002 hex_digits[4]='4';
2003 hex_digits[5]='5';
2004 hex_digits[6]='6';
2005 hex_digits[7]='7';
2006 hex_digits[
1950 hex_digits[16]; local
[all...]
/external/avb/examples/uefi/
H A Duefi_avb_ops.c556 char hex_digits[17] = "0123456789abcdef"; local
557 buf[0] = hex_digits[value >> 4];
558 buf[1] = hex_digits[value & 0x0f];

Completed in 467 milliseconds