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

  /external/mesa3d/src/util/
mesa-sha1.c 43 static const char hex_digits[] = "0123456789abcdef"; local
47 buf[i] = hex_digits[sha1[i >> 1] >> 4];
48 buf[i + 1] = hex_digits[sha1[i >> 1] & 0x0f];
disk_cache.h 71 static const char hex_digits[] = "0123456789abcdef"; local
75 buf[i] = hex_digits[hex_id[i >> 1] >> 4];
76 buf[i + 1] = hex_digits[hex_id[i >> 1] & 0x0f];
  /external/ImageMagick/coders/
xbm.c 138 static int XBMInteger(Image *image,short int *hex_digits)
165 if (value <= (unsigned int) (INT_MAX-hex_digits[c]))
166 value+=hex_digits[c];
171 } while (hex_digits[c] >= 0);
205 hex_digits[256];
310 for (i=0; i < (ssize_t) (sizeof(hex_digits)/sizeof(*hex_digits)); i++)
311 hex_digits[i]=(-1);
312 hex_digits[(int) '0']=0;
313 hex_digits[(int) '1']=1
201 hex_digits[256]; local
    [all...]
ps.c 371 static inline int ProfileInteger(Image *image,short int *hex_digits)
395 value=(int) ((size_t) value << 4)+hex_digits[c];
483 hex_digits[256];
532 (void) memset(hex_digits,0,sizeof(hex_digits));
533 hex_digits[(int) '0']=0;
534 hex_digits[(int) '1']=1;
535 hex_digits[(int) '2']=2;
536 hex_digits[(int) '3']=3;
537 hex_digits[(int) '4']=4
478 hex_digits[256]; local
1211 *const hex_digits[] = local
    [all...]
  /external/libchrome/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 2031 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/u-boot/lib/libavb/
avb_util.c 396 const char hex_digits[17] = "0123456789abcdef"; local
406 hex_data[n * 2] = hex_digits[data[n] >> 4];
407 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/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 790 milliseconds