HomeSort by relevance Sort by last modified time
    Searched refs:hex_digits (Results 1 - 11 of 11) sorted by null

  /external/ImageMagick/coders/
xbm.c 138 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[(int) '4']=4
194 hex_digits[256]; local
    [all...]
ps.c 369 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[(int) '4']=4
476 hex_digits[256]; local
1177 *const hex_digits[] = local
    [all...]
  /external/mesa3d/src/util/
mesa-sha1.c 74 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/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
lexer.py 119 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/ImageMagick/MagickCore/
string.c 1950 hex_digits[16]; local
    [all...]
  /external/avb/libavb/
avb_util.c 415 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/google-breakpad/src/testing/scripts/generator/cpp/
tokenize.py 44 HEX_DIGITS = set('0123456789abcdefABCDEF')
130 hex_digits = HEX_DIGITS
200 while source[i] in hex_digits:
  /external/googletest/googlemock/scripts/generator/cpp/
tokenize.py 44 HEX_DIGITS = set('0123456789abcdefABCDEF')
130 hex_digits = HEX_DIGITS
200 while source[i] in hex_digits:
  /external/v8/testing/gmock/scripts/generator/cpp/
tokenize.py 44 HEX_DIGITS = set('0123456789abcdefABCDEF')
130 hex_digits = HEX_DIGITS
200 while source[i] in hex_digits:
  /system/core/fs_mgr/
fs_mgr_avb.cpp 89 static const char* hex_digits = "0123456789abcdef"; local
93 hex.push_back(hex_digits[(bytes[i] & 0xF0) >> 4]);
94 hex.push_back(hex_digits[bytes[i] & 0x0F]);
  /external/avb/examples/uefi/
uefi_avb_ops.c 556 char hex_digits[17] = "0123456789abcdef"; local
557 buf[0] = hex_digits[value >> 4];
558 buf[1] = hex_digits[value & 0x0f];

Completed in 389 milliseconds