Searched refs:uvalue (Results 1 - 12 of 12) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/DebugInfo/
H A DDWARFFormValue.cpp298 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); brea
[all...]
/macosx-10.9.5/lsof-52/lsof/lib/
H A Dsnpf.c531 unsigned long long uvalue; local
537 uvalue = value;
541 uvalue = -value;
551 [uvalue % (unsigned)base];
552 uvalue = (uvalue / (unsigned)base);
553 } while (uvalue && (place < (int)(sizeof(convert) - 1)));
603 unsigned long uvalue; local
609 uvalue = value;
613 uvalue
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Ddwarf.c589 unsigned long uvalue; local
859 uvalue = read_leb128 (data, &bytes_read, 0);
861 printf ("DW_OP_bregx: %lu %ld", uvalue,
933 unsigned long uvalue = 0; local
945 uvalue = byte_get (data, pointer_size);
950 uvalue = byte_get (data, offset_size);
960 uvalue = byte_get (data, pointer_size);
965 uvalue = byte_get (data, offset_size);
972 uvalue = byte_get (data++, 1);
977 uvalue
[all...]
/macosx-10.9.5/OpenSSH-186/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));
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dsnprintf.c411 unsigned LLONG uvalue; local
421 uvalue = value;
426 uvalue = -value;
438 [uvalue % (unsigned) base];
439 uvalue = (uvalue / (unsigned) base);
440 } while (uvalue && (place < 20));
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/lib/
H A Dsnprintf.c413 unsigned long uvalue; local
423 uvalue = value;
429 uvalue = -value;
444 [uvalue % (unsigned)base ];
445 uvalue = (uvalue / (unsigned)base );
446 } while(uvalue && (place < 20));
/macosx-10.9.5/rsync-42/rsync/lib/
H A Dsnprintf.c511 unsigned long uvalue; local
521 uvalue = value;
526 uvalue = -value;
540 [uvalue % (unsigned)base ];
541 uvalue = (uvalue / (unsigned)base );
542 } while(uvalue && (place < 20));
/macosx-10.9.5/srm-7/srm/lib/
H A Dsnprintf.c435 unsigned long uvalue; local
445 uvalue = value;
451 uvalue = -value;
466 [uvalue % (unsigned)base ];
467 uvalue = (uvalue / (unsigned)base );
468 } while(uvalue && (place < 20));
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Delf32-score.c242 unsigned long hi16_offset, hi16_value, uvalue; local
251 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val;
252 hi16_offset = (uvalue >> 16) << 1;
255 offset = (uvalue & 0xffff) << 1;
536 signed long hi16_offset, hi16_value, uvalue; local
545 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val;
546 if ((uvalue > -0x8000) && (uvalue < 0x7fff))
549 hi16_offset = (uvalue >> 16) & 0x7fff;
552 offset = (uvalue
1757 unsigned long hi16_addend, hi16_offset, hi16_value, uvalue; local
1868 unsigned long hi16_addend, hi16_offset, hi16_value, uvalue, offset, abs_value = 0; local
2212 unsigned long hi16_addend, hi16_offset, hi16_value, uvalue; local
[all...]
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-bio.c1343 unsigned LLONG uvalue; local
1353 uvalue = value;
1357 uvalue = -value;
1378 [uvalue % (unsigned)base];
1379 uvalue = (uvalue / (unsigned)base);
1380 } while (uvalue && (place < (int)sizeof(convert)));
/macosx-10.9.5/CF-855.17/
H A DCFNumber.c1446 uint64_t uvalue, factor, tmp; local
1451 uvalue = (neg) ? -value : value;
1455 tmp = uvalue;
1468 UniChar ch = '0' + (UniChar)(uvalue / factor);
1469 uvalue %= factor;
/macosx-10.9.5/dtrace-118.1/libdwarf/
H A Ddwarf_frame.c1013 Dwarf_Unsigned uvalue = 0; local
1018 uvalue = *(unsigned char *) frame_ptr;
1019 return uvalue;
1021 uvalue = _dwarf_decode_u_leb128(frame_ptr, &leb128_length);
1023 return uvalue;

Completed in 173 milliseconds