Searched defs:uvalue (Results 1 - 4 of 4) sorted by relevance

/external/clearsilver/util/
H A Dsnprintf.c447 unsigned long uvalue; local
458 uvalue = value;
464 uvalue = -value;
479 [uvalue % (unsigned)base ];
480 uvalue = (uvalue / (unsigned)base );
481 } while(uvalue && (place < 20));
H A Dwdb.c60 unsigned int uvalue = ch; local
62 s[1] = "0123456789ABCDEF"[uvalue % 16];
63 uvalue = (uvalue / 16); s[0] = "0123456789ABCDEF"[uvalue % 16];
/external/openssl/crypto/bio/
H A Db_print.c486 unsigned LLONG uvalue; local
495 uvalue = value;
499 uvalue = -value;
514 [uvalue % (unsigned) base];
515 uvalue = (uvalue / (unsigned) base);
516 } while (uvalue && (place < (int)sizeof(convert)));
/external/elfcopy/
H A Ddwarf.c614 unsigned long uvalue; local
903 uvalue = read_leb128 (data, &bytes_read, 0);
906 printf ("DW_OP_bregx: %lu %ld", uvalue, val);
982 unsigned long uvalue = 0; local
995 uvalue = byte_get (data, pointer_size);
1000 uvalue = byte_get (data, offset_size);
1010 uvalue = byte_get (data, pointer_size);
1012 value_hook(data, pointer_size, uvalue);
1017 uvalue = byte_get (data, offset_size);
1024 uvalue
[all...]

Completed in 60 milliseconds