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

  /external/google-breakpad/src/processor/
logging.cc 86 string HexString(uint32_t number) {
92 string HexString(uint64_t number) {
98 string HexString(int number) {
logging.h 134 string HexString(uint32_t number);
135 string HexString(uint64_t number);
136 string HexString(int number);
address_map-inl.h 53 BPLOG(INFO) << "Store failed, address " << HexString(address) <<
stackwalker_ppc.cc 58 HexString(memory_->GetBase()) << "+" <<
59 HexString(memory_->GetSize());
range_map-inl.h 60 BPLOG_IF(INFO, size != 0) << "StoreRange failed, " << HexString(base) <<
61 "+" << HexString(size) << ", " <<
62 HexString(high);
83 // HexString(base) << "+" << HexString(size) <<
84 // ", existing " << HexString(other_base) << "+" <<
85 // HexString(other_size);
103 // HexString(base) << "+" << HexString(size) <<
104 // ", existing " << HexString(other_base) << "+" <
    [all...]
basic_code_modules.cc 93 BPLOG(INFO) << "No module at " << HexString(address);
postfix_evaluator-inl.h 161 HexString(address) << ": " << expression;
182 HexString(value) << ": " << expression;
186 BPLOG(ERROR) << "Can't assign " << HexString(value) << " to " <<
minidump.cc 253 HexString(in_word) << " without high";
260 HexString(in_word) << " at end of string";
267 HexString(high_word) << " without low " <<
268 HexString(in_word);
296 HexString(unichar) << " in UTF-8";
    [all...]
stackwalker_mips.cc 60 << HexString(memory_->GetBase())
62 << HexString(memory_->GetSize());
stackwalker.cc 262 BPLOG_IF(ERROR, !cpu_stackwalker) << "Unknown CPU type " << HexString(cpu) <<
stackwalker_x86.cc 100 HexString(memory_->GetBase()) << "+" <<
101 HexString(memory_->GetSize());
minidump_processor.cc 179 thread_string += " id " + HexString(thread_id);
280 HexString(requesting_thread_id) << ", not found in " <<
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 127 std::string HexString = utohexstr(AI.getLimitedValue(), /*LowerCase=*/true);
128 unsigned Size = HexString.size();
130 HexString.insert(HexString.begin(), Width - Size, '0');
132 return HexString;
149 std::string HexString;
151 HexString += scalarConstantToHexString(C->getAggregateElement(I));
152 return HexString;
  /system/core/libcutils/tests/
PropertiesTest.cpp 39 static std::string HexString(T value) {
55 << mExpr << " and " << nExpr << " (expected: " << HexString(m) <<
56 ", actual: " << HexString(n) << ") are not equal";

Completed in 832 milliseconds