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

/external/llvm/lib/DebugInfo/
H A DDWARFFormValue.cpp319 uint64_t uvalue = getUnsigned(); local
323 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break;
326 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue);
336 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break;
337 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break;
338 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break;
340 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break;
351 if (uvalue > 0) {
354 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break;
355 case DW_FORM_block1: OS << format("<0x%2.2x> ", (uint8_t)uvalue); brea
[all...]
/external/chromium_org/third_party/openssl/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/openssh/openbsd-compat/
H A Dbsd-snprintf.c517 unsigned LLONG uvalue; local
527 uvalue = value;
532 uvalue = -value;
546 [uvalue % (unsigned)base ];
547 uvalue = (uvalue / (unsigned)base );
548 } while(uvalue && (place < 20));
/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c898 UINTMAX_T uvalue; local
909 uvalue = value;
911 uvalue = (value >= 0) ? value : -value;
920 pos = convert(uvalue, iconvert, sizeof(iconvert), base,
923 if (flags & PRINT_F_NUM && uvalue != 0) {
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c898 UINTMAX_T uvalue; local
909 uvalue = value;
911 uvalue = (value >= 0) ? value : -value;
920 pos = convert(uvalue, iconvert, sizeof(iconvert), base,
923 if (flags & PRINT_F_NUM && uvalue != 0) {
/external/libvpx/libvpx/nestegg/src/
H A Dnestegg.c586 uint64_t uvalue; local
595 r = ne_bare_read_vint(io, &uvalue, &ulength, MASK_FIRST_BIT);
598 *value = uvalue - svint_subtr[ulength - 1];

Completed in 369 milliseconds