Searched refs:stream (Results 1 - 23 of 23) sorted by relevance

/art/runtime/
H A Dparsed_options.cc717 void ParsedOptions::UsageMessageV(FILE* stream, const char* fmt, va_list ap) { argument
721 void ParsedOptions::UsageMessage(FILE* stream, const char* fmt, ...) { argument
724 UsageMessageV(stream, fmt, ap);
730 FILE* stream = error ? stderr : stdout; local
735 UsageMessageV(stream, fmt, ap);
740 UsageMessage(stream, "%s: [options] class [argument ...]\n", program);
741 UsageMessage(stream, "\n");
742 UsageMessage(stream, "The following standard options are supported:\n");
743 UsageMessage(stream, " -classpath classpath (-cp classpath)\n");
744 UsageMessage(stream, "
[all...]
H A Dparsed_options.h89 jint (*hook_vfprintf_)(FILE* stream, const char* format, va_list ap);
113 void UsageMessage(FILE* stream, const char* fmt, ...);
114 void UsageMessageV(FILE* stream, const char* fmt, va_list ap);
H A Ddex_file.cc763 void* context, const byte* stream, LocalInfo* local_in_reg) const {
764 uint32_t line = DecodeUnsignedLeb128(&stream);
765 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
785 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
789 uint32_t id = DecodeUnsignedLeb128P1(&stream);
811 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation()
817 uint8_t opcode = *stream++;
828 address += DecodeUnsignedLeb128(&stream);
832 line += DecodeSignedLeb128(&stream);
837 reg = DecodeUnsignedLeb128(&stream);
761 DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx, DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb, void* context, const byte* stream, LocalInfo* local_in_reg) const argument
928 const byte* stream = GetDebugInfoStream(code_item); local
[all...]
H A Druntime.h602 jint (*vfprintf_)(FILE* stream, const char* format, va_list ap);
H A Ddex_file.h270 uint32_t debug_info_off_; // file offset to debug info stream
950 void* context, const byte* stream, LocalInfo* local_in_reg) const;
1220 // Read and decode header from a class_data_item stream into header
1247 // Read and decode a field from a class_data_item stream into field
1262 // Read and decode a method from a class_data_item stream into method
1267 const byte* ptr_pos_; // pointer into stream of class_data_item
/art/compiler/optimizing/
H A Dstack_map_test.cc37 StackMapStream<size_t> stream(&arena);
40 stream.AddStackMapEntry(0, 64, 0x3, &sp_mask, 2, 0);
41 stream.AddDexRegisterEntry(DexRegisterMap::kInStack, 0);
42 stream.AddDexRegisterEntry(DexRegisterMap::kConstant, -2);
44 size_t size = stream.ComputeNeededSize();
47 stream.FillIn(region);
74 StackMapStream<size_t> stream(&arena);
79 stream.AddStackMapEntry(0, 64, 0x3, &sp_mask1, 2, 2);
80 stream.AddDexRegisterEntry(DexRegisterMap::kInStack, 0);
81 stream
[all...]
H A Dssa_liveness_analysis.h73 void Dump(std::ostream& stream) { argument
74 stream << "[" << start_ << ", " << end_ << ")";
116 void Dump(std::ostream& stream) const {
117 stream << position_;
409 void Dump(std::ostream& stream) const {
410 stream << "ranges: { ";
413 current->Dump(stream);
414 stream << " ";
416 stream << "}, uses: { ";
420 use->Dump(stream);
[all...]
H A Dcode_generator_arm.h167 virtual void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
168 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
H A Dcode_generator_x86.h169 virtual void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
170 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
H A Dcode_generator_x86_64.h172 virtual void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
173 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
H A Dregister_allocator.h119 void DumpInterval(std::ostream& stream, LiveInterval* interval) const;
H A Dcode_generator.h112 virtual void DumpCoreRegister(std::ostream& stream, int reg) const = 0;
113 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const = 0;
H A Dregister_allocator.cc294 void RegisterAllocator::DumpInterval(std::ostream& stream, LiveInterval* interval) const { argument
295 interval->Dump(stream);
296 stream << ": ";
299 codegen_->DumpCoreRegister(stream, interval->GetRegister());
301 codegen_->DumpFloatingPointRegister(stream, interval->GetRegister());
304 stream << "spilled";
306 stream << std::endl;
H A Dcode_generator_x86_64.cc141 void CodeGeneratorX86_64::DumpCoreRegister(std::ostream& stream, int reg) const { argument
142 stream << X86_64ManagedRegister::FromCpuRegister(Register(reg));
145 void CodeGeneratorX86_64::DumpFloatingPointRegister(std::ostream& stream, int reg) const { argument
146 stream << X86_64ManagedRegister::FromXmmRegister(FloatRegister(reg));
H A Dcode_generator_arm.cc151 void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const { argument
152 stream << ArmManagedRegister::FromCoreRegister(Register(reg));
155 void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const { argument
156 stream << ArmManagedRegister::FromDRegister(DRegister(reg));
H A Dcode_generator_x86.cc134 void CodeGeneratorX86::DumpCoreRegister(std::ostream& stream, int reg) const { argument
135 stream << X86ManagedRegister::FromCpuRegister(Register(reg));
138 void CodeGeneratorX86::DumpFloatingPointRegister(std::ostream& stream, int reg) const { argument
139 stream << X86ManagedRegister::FromXmmRegister(XmmRegister(reg));
/art/runtime/base/
H A Dhistogram_test.cc124 std::stringstream stream; local
126 hist->PrintConfidenceIntervals(stream, 0.99, data);
128 EXPECT_EQ(expected, stream.str());
167 std::stringstream stream; local
169 hist->PrintConfidenceIntervals(stream, 0.99, data);
171 EXPECT_EQ(expected, stream.str());
206 std::stringstream stream; local
208 hist->PrintConfidenceIntervals(stream, 0.99, data);
210 EXPECT_EQ(expected, stream.str());
221 std::stringstream stream; local
264 std::stringstream stream; local
[all...]
H A Dlogging.h33 ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \
39 ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \
135 #define LOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, -1).stream()
136 #define PLOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, errno).stream()
143 #define VLOG(module) if (VLOG_IS_ON(module)) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream()
144 #define VLOG_STREAM(module) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream()
213 std::ostream& stream() { function in class:art::LogMessage
/art/runtime/gc/accounting/
H A Dspace_bitmap-inl.h178 inline std::ostream& operator << (std::ostream& stream, const SpaceBitmap<kAlignment>& bitmap) { argument
179 return stream
H A Dspace_bitmap.h234 std::ostream& operator << (std::ostream& stream, const SpaceBitmap<kAlignment>& bitmap);
/art/runtime/gc/allocator/
H A Drosalloc.cc839 std::ostringstream stream; local
840 stream << "RosAlloc Run = " << reinterpret_cast<void*>(this)
850 return stream.str();
1350 std::ostringstream stream; local
1351 stream << "RosAlloc PageMap: " << std::endl;
1375 stream << "[" << i << "]=" << (pm == kPageMapReleased ? "Released" : "Empty")
1383 stream << "curr_fpr=0x" << std::hex << reinterpret_cast<intptr_t>(curr_fpr) << std::endl;
1392 stream << "[" << i << "]=Empty (FPR part)"
1406 stream << "[" << i << "]=Large (start)" << std::endl;
1412 stream << "[" <<
[all...]
/art/runtime/gc/
H A Dheap.cc602 void Heap::DumpObject(std::ostream& stream, mirror::Object* obj) { argument
604 stream << "(obj=null)";
621 stream << "Object " << obj;
623 stream << " in space " << *space;
626 stream << "\nclass=" << klass;
628 stream << " type= " << SafePrettyTypeOf(obj);
1204 void Heap::DumpSpaces(std::ostream& stream) const {
1208 stream << space << " " << *space << "\n";
1210 stream << live_bitmap << " " << *live_bitmap << "\n";
1213 stream << mark_bitma
[all...]
H A Dheap.h556 void DumpSpaces(std::ostream& stream) const;
559 void DumpObject(std::ostream& stream, mirror::Object* obj) NO_THREAD_SAFETY_ANALYSIS;

Completed in 180 milliseconds