/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 | 2964 hex_digits[16]; in WritePDFImage() local 2966 hex_digits[0]='0'; in WritePDFImage() 2967 hex_digits[1]='1'; in WritePDFImage() 2968 hex_digits[2]='2'; in WritePDFImage() 2969 hex_digits[3]='3'; in WritePDFImage() 2970 hex_digits[4]='4'; in WritePDFImage() 2971 hex_digits[5]='5'; in WritePDFImage() 2972 hex_digits[6]='6'; in WritePDFImage() 2973 hex_digits[7]='7'; in WritePDFImage() 2974 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 | 1904 hex_digits[16]; in StringInfoToHexString() local 1913 hex_digits[0]='0'; in StringInfoToHexString() 1914 hex_digits[1]='1'; in StringInfoToHexString() 1915 hex_digits[2]='2'; in StringInfoToHexString() 1916 hex_digits[3]='3'; in StringInfoToHexString() 1917 hex_digits[4]='4'; in StringInfoToHexString() 1918 hex_digits[5]='5'; in StringInfoToHexString() 1919 hex_digits[6]='6'; in StringInfoToHexString() 1920 hex_digits[7]='7'; in StringInfoToHexString() 1921 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 257 hex_fractional_constant = '((('+hex_digits+r""")?\."""+hex_digits+')|('+hex_digits+r"""\.))""" 258 …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/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
D | BreakpadRecords.cpp | 88 template <typename T> static constexpr size_t hex_digits() { in hex_digits() function 103 if (str.size() <= hex_digits<data_t::uuid_t>() || in parseModuleId() 104 str.size() > hex_digits<data_t>()) in parseModuleId() 109 llvm::StringRef uuid_str = str.take_front(hex_digits<data_t::uuid_t>()); in parseModuleId() 110 llvm::StringRef age_str = str.drop_front(hex_digits<data_t::uuid_t>()); in parseModuleId()
|
/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/googletest/googlemock/scripts/generator/cpp/ |
D | tokenize.py | 127 hex_digits = HEX_DIGITS 197 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 | 886 static const char hex_digits[]; 1087 const char* digits = upper ? "0123456789ABCDEF" : data::hex_digits; 1110 *--p = static_cast<Char>(data::hex_digits[digit]);
|
D | format-inl.h | 251 const char basic_data<T>::hex_digits[] = "0123456789abcdef";
|