| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | DWARFLocationDescription.cpp | 74 s.Printf("%" PRIu64 " %" PRIi64, uint, sint); in print_dwarf_exp_op() 159 case -1: sint = (int8_t) data.GetU8(offset_ptr); s.Printf("%+" PRIi64, sint); break; in print_dwarf_exp_op() 160 case -2: sint = (int16_t) data.GetU16(offset_ptr); s.Printf("%+" PRIi64, sint); break; in print_dwarf_exp_op() 161 case -4: sint = (int32_t) data.GetU32(offset_ptr); s.Printf("%+" PRIi64, sint); break; in print_dwarf_exp_op() 162 case -8: sint = (int64_t) data.GetU64(offset_ptr); s.Printf("%+" PRIi64, sint); break; in print_dwarf_exp_op() 163 case -128: sint = data.GetSLEB128(offset_ptr); s.Printf("%+" PRIi64, sint); break; in print_dwarf_exp_op()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/ |
| D | OptionValueSInt64.cpp | 34 strm.Printf ("%" PRIi64, m_current_value); in DumpValue() 62 …error.SetErrorStringWithFormat ("%" PRIi64 " is out of range, valid values must be between %" PRIi… in SetValueFromCString()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ |
| D | ProcessPOSIX.cpp | 124 log->Printf ("ProcessPOSIX::%s(pid = %" PRIi64 ")", __FUNCTION__, GetID()); in DoAttachToProcessWithID() 528 …log->Printf ("ProcessPOSIX::%s(), message_queue size = %d, pid = %" PRIi64, __FUNCTION__, (int)m_m… in RefreshStateAfterStop() 533 …log->Printf ("ProcessPOSIX::%s() adding thread, tid = %" PRIi64, __FUNCTION__, message.GetChildTID… in RefreshStateAfterStop() 554 … log->Printf ("ProcessPOSIX::%s() removing thread, tid = %" PRIi64, __FUNCTION__, tid); in RefreshStateAfterStop() 827 log->Printf ("ProcessPOSIX::%s() (pid = %" PRIi64 ")", __FUNCTION__, GetID()); in UpdateThreadList() 840 log->Printf ("ProcessPOSIX::%s() updated pid = %" PRIi64, __FUNCTION__, GetID()); in UpdateThreadList()
|
| D | POSIXThread.cpp | 56 log->Printf ("POSIXThread::%s (tid = %" PRIi64 ")", __FUNCTION__, tid); in POSIXThread() 116 …log->Printf ("POSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to running", __FUNCT… in RefreshStateAfterStop() 274 …log->Printf ("POSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to %s", __FUNCTION__… in WillResume()
|
| /freebsd-10-stable/sbin/fsck_ffs/ |
| D | pass5.c | 367 printf("adjndir by %+" PRIi64 "\n", cmd.value); in pass5() 376 printf("adjnbfree by %+" PRIi64 "\n", cmd.value); in pass5() 385 printf("adjnifree by %+" PRIi64 "\n", cmd.value); in pass5() 394 printf("adjnffree by %+" PRIi64 "\n", cmd.value); in pass5() 403 printf("adjnumclusters by %+" PRIi64 "\n", cmd.value); in pass5()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/ |
| D | StopInfo.cpp | 290 … strm.Printf("breakpoint site %" PRIi64 " which has been deleted - unknown address", m_value); in GetDescription() 292 …strm.Printf("breakpoint site %" PRIi64 " which has been deleted - was at 0x%" PRIx64, m_value, m_a… in GetDescription() 597 strm.Printf("watchpoint %" PRIi64, m_value); in GetDescription() 911 strm.Printf("signal %" PRIi64, m_value); in GetDescription()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/Support/ |
| D | DataTypes.h.in | 163 #ifndef PRIi64 164 # define PRIi64 "I64i" macro
|
| /freebsd-10-stable/sys/sparc64/include/ |
| D | _inttypes.h | 60 #define PRIi64 "li" /* int64_t */ macro
|
| /freebsd-10-stable/sys/ia64/include/ |
| D | _inttypes.h | 60 #define PRIi64 "li" /* int64_t */ macro
|
| /freebsd-10-stable/sys/arm/include/ |
| D | _inttypes.h | 60 #define PRIi64 "lli" /* int64_t */ macro
|
| /freebsd-10-stable/sys/powerpc/include/ |
| D | _inttypes.h | 68 #define PRIi64 __PRI64"i" /* int64_t */ macro
|
| /freebsd-10-stable/sys/x86/include/ |
| D | _inttypes.h | 68 #define PRIi64 __PRI64"i" /* int64_t */ macro
|
| /freebsd-10-stable/sys/mips/include/ |
| D | _inttypes.h | 69 #define PRIi64 __PRI64"i" /* int64_t */ macro
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/ |
| D | DWARFExpression.cpp | 503 s->Printf("[%s%+" PRIi64 "]", reg_info.name, reg_offset); in DumpLocation() 508 s->Printf("[%s%+" PRIi64 "]", reg_info.alt_name, reg_offset); in DumpLocation() 541 s->Printf("DW_OP_fbreg(%" PRIi64 ")",m_data.GetSLEB128(&offset)); in DumpLocation() 554 s->Printf("[%s%+" PRIi64 "]", reg_info.name, reg_offset); in DumpLocation() 559 s->Printf("[%s%+" PRIi64 "]", reg_info.alt_name, reg_offset); in DumpLocation() 564 s->Printf("DW_OP_bregx(reg=%" PRIu32 ",offset=%" PRIi64 ")", reg_num, reg_offset); in DumpLocation()
|
| /freebsd-10-stable/contrib/libc++/include/ |
| D | cinttypes | 44 PRIi64
|
| D | module.modulemap | 92 …PRIi8, PRIi16, PRIi32, PRIi64, PRIiFAST8, PRIiFAST16, PRIiFAST32, PRIiFAST64, PRIiLEAST8, PRIiLEAS…
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/ |
| D | ConnectionFileDescriptor.cpp | 511 …eDescriptor::Read () ::read (fd = %i, dst = %p, dst_len = %" PRIu64 ") => %" PRIi64 ", error = %s", in Read() 637 …scriptor::Write() ::write (fd = %i, src = %p, src_len = %" PRIu64 ") => %" PRIi64 " (error = %s)", in Write() 647 …e() ::send (socket = %i, src = %p, src_len = %" PRIu64 ", flags = 0) => %" PRIi64 " (error = %s)", in Write() 657 …) ::sendto (socket = %i, src = %p, src_len = %" PRIu64 ", flags = 0) => %" PRIi64 " (error = %s)", in Write()
|
| D | Stream.cpp | 90 bytes_written = Printf ("0x%" PRIi64, sval); in PutSLEB128() 369 Printf ("%" PRIi64, sval); in operator <<()
|
| /freebsd-10-stable/contrib/netbsd-tests/include/ |
| D | t_inttypes.c | 92 PRINT(PRIi64, i64); in ATF_TC_BODY()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Commands/ |
| D | CommandObjectMemory.cpp | 1607 …result.AppendErrorWithFormat ("Value %" PRIi64 " is too large or small to fit in a %zu byte signed… in DoExecute()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/ |
| D | ClangASTType.cpp | 5753 s->Printf("%" PRIi64, enum_value); in DumpValue() 5985 s->Printf("%" PRIi64, enum_svalue); in DumpTypeValue()
|