/external/ImageMagick/coders/ |
D | xbm.c | 134 static int XBMInteger(Image *image,short int *hex_digits) in XBMInteger() argument 161 if (value <= (unsigned int) ((INT_MAX-1)-hex_digits[c])) in XBMInteger() 162 value+=hex_digits[c]; in XBMInteger() 167 } while (hex_digits[c] >= 0); in XBMInteger() 201 hex_digits[256]; in ReadXBMImage() local 306 for (i=0; i < (ssize_t) (sizeof(hex_digits)/sizeof(*hex_digits)); i++) in ReadXBMImage() 307 hex_digits[i]=(-1); in ReadXBMImage() 308 hex_digits[(int) '0']=0; in ReadXBMImage() 309 hex_digits[(int) '1']=1; in ReadXBMImage() 310 hex_digits[(int) '2']=2; in ReadXBMImage() [all …]
|
D | ps.c | 175 static inline int ProfileInteger(MagickByteBuffer *buffer,short int *hex_digits) in ProfileInteger() argument 199 value=(int) ((size_t) value << 4)+hex_digits[c]; in ProfileInteger() 255 hex_digits[256]; in ReadPSInfo() local 267 (void) memset(hex_digits,0,sizeof(hex_digits)); in ReadPSInfo() 268 hex_digits[(int) '0']=0; in ReadPSInfo() 269 hex_digits[(int) '1']=1; in ReadPSInfo() 270 hex_digits[(int) '2']=2; in ReadPSInfo() 271 hex_digits[(int) '3']=3; in ReadPSInfo() 272 hex_digits[(int) '4']=4; in ReadPSInfo() 273 hex_digits[(int) '5']=5; in ReadPSInfo() [all …]
|
D | pdf.c | 2915 hex_digits[16]; in WritePDFImage() local 2917 hex_digits[0]='0'; in WritePDFImage() 2918 hex_digits[1]='1'; in WritePDFImage() 2919 hex_digits[2]='2'; in WritePDFImage() 2920 hex_digits[3]='3'; in WritePDFImage() 2921 hex_digits[4]='4'; in WritePDFImage() 2922 hex_digits[5]='5'; in WritePDFImage() 2923 hex_digits[6]='6'; in WritePDFImage() 2924 hex_digits[7]='7'; in WritePDFImage() 2925 hex_digits[8]='8'; in WritePDFImage() [all …]
|
/external/mesa3d/src/util/ |
D | mesa-sha1.c | 43 static const char hex_digits[] = "0123456789abcdef"; in _mesa_sha1_format() local 47 buf[i] = hex_digits[sha1[i >> 1] >> 4]; in _mesa_sha1_format() 48 buf[i + 1] = hex_digits[sha1[i >> 1] & 0x0f]; in _mesa_sha1_format()
|
D | disk_cache.h | 82 static const char hex_digits[] = "0123456789abcdef"; in disk_cache_format_hex_id() local 86 buf[i] = hex_digits[hex_id[i >> 1] >> 4]; in disk_cache_format_hex_id() 87 buf[i + 1] = hex_digits[hex_id[i >> 1] & 0x0f]; in disk_cache_format_hex_id()
|
/external/ImageMagick/MagickCore/ |
D | string.c | 1951 hex_digits[16]; in StringInfoToHexString() local 1960 hex_digits[0]='0'; in StringInfoToHexString() 1961 hex_digits[1]='1'; in StringInfoToHexString() 1962 hex_digits[2]='2'; in StringInfoToHexString() 1963 hex_digits[3]='3'; in StringInfoToHexString() 1964 hex_digits[4]='4'; in StringInfoToHexString() 1965 hex_digits[5]='5'; in StringInfoToHexString() 1966 hex_digits[6]='6'; in StringInfoToHexString() 1967 hex_digits[7]='7'; in StringInfoToHexString() 1968 hex_digits[8]='8'; in StringInfoToHexString() [all …]
|
/external/python/pycparser/pycparser/ |
D | c_lexer.py | 188 hex_digits = '[0-9a-fA-F]+' variable in CLexer 196 hex_constant = hex_prefix+hex_digits+integer_suffix_opt 231 hex_fractional_constant = '((('+hex_digits+r""")?\."""+hex_digits+')|('+hex_digits+r"""\.))""" 232 …hex_floating_constant = '('+hex_prefix+'('+hex_digits+'|'+hex_fractional_constant+')'+binary_expon…
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/parse/ |
D | lexer.py | 119 hex_digits = '[0-9a-fA-F]+' variable in 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/ |
D | avb_util.c | 440 const char hex_digits[17] = "0123456789abcdef"; in avb_bin2hex() local 450 hex_data[n * 2] = hex_digits[data[n] >> 4]; in avb_bin2hex() 451 hex_data[n * 2 + 1] = hex_digits[data[n] & 0x0f]; in avb_bin2hex()
|
/external/u-boot/lib/libavb/ |
D | avb_util.c | 396 const char hex_digits[17] = "0123456789abcdef"; in avb_bin2hex() local 406 hex_data[n * 2] = hex_digits[data[n] >> 4]; in avb_bin2hex() 407 hex_data[n * 2 + 1] = hex_digits[data[n] & 0x0f]; in avb_bin2hex()
|
/external/googletest/googlemock/scripts/generator/cpp/ |
D | tokenize.py | 127 hex_digits = HEX_DIGITS 197 while source[i] in hex_digits:
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | tokenize.py | 130 hex_digits = HEX_DIGITS 200 while source[i] in hex_digits:
|
/external/avb/examples/uefi/ |
D | uefi_avb_ops.c | 556 char hex_digits[17] = "0123456789abcdef"; in set_hex() local 557 buf[0] = hex_digits[value >> 4]; in set_hex() 558 buf[1] = hex_digits[value & 0x0f]; in set_hex()
|
/external/fmtlib/include/fmt/ |
D | format.h | 730 static const char hex_digits[]; 949 const char* digits = upper ? "0123456789ABCDEF" : data::hex_digits; 972 *--p = static_cast<Char>(data::hex_digits[digit]);
|
D | format-inl.h | 261 const char basic_data<T>::hex_digits[] = "0123456789abcdef";
|