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

  /external/llvm/lib/DebugInfo/
DWARFFormValue.cpp 298 uint64_t uvalue = getUnsigned(); local
302 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break;
305 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break;
306 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break;
307 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break;
309 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break;
320 if (uvalue > 0) {
323 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break;
324 case DW_FORM_block1: OS << format("<0x%2.2x> ", (uint8_t)uvalue); break;
325 case DW_FORM_block2: OS << format("<0x%4.4x> ", (uint16_t)uvalue); break
    [all...]
  /external/openssh/openbsd-compat/
bsd-snprintf.c 517 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/
b_print.c 486 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/libvpx/nestegg/src/
nestegg.c 585 uint64_t uvalue; local
594 r = ne_bare_read_vint(io, &uvalue, &ulength, MASK_FIRST_BIT);
597 *value = uvalue - svint_subtr[ulength - 1];
    [all...]
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /external/v8/src/x64/
macro-assembler-x64.cc 918 unsigned int uvalue = negative ? -value : value;
920 switch (uvalue) {
    [all...]

Completed in 69 milliseconds