Searched refs:std (Results 176 - 200 of 693) sorted by relevance

1234567891011>>

/art/runtime/
H A Dprofiler.cc59 BoundedStackVisitor(std::vector<std::pair<ArtMethod*, uint32_t>>* stack,
74 stack_->push_back(std::make_pair(m, dex_pc_));
84 std::vector<std::pair<ArtMethod*, uint32_t>>* const stack_;
102 std::ostringstream os;
104 std::string data(os.str());
111 std::vector<InstructionLocation> stack;
200 backoff = std::min(backoff * profiler->options_.GetBackoffCoefficient(), kMaxBackoffSecs);
271 std
[all...]
H A Dclass_reference.h28 typedef std::pair<const DexFile*, uint32_t> ClassReference;
H A Dexperimental_flags.h65 inline std::ostream& operator<<(std::ostream& stream, const ExperimentalFlags& e) {
77 inline std::ostream& operator<<(std::ostream& stream, const decltype(ExperimentalFlags::kNone)& e) {
/art/runtime/base/
H A Dhistogram_test.cc37 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("MeanTest", 5));
55 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("VarianceTest", 5));
67 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("Percentile", 5));
94 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("UpdateRange", 5));
123 std::string text;
124 std::stringstream stream;
125 std::string expected("UpdateRange:\tSum: 2.654ms 99% C.I. 15us-212us Avg: 126.380us Max: 212us\n");
134 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("Reset", 5));
166 std::string text;
167 std
[all...]
H A Dfile_magic.h28 ScopedFd OpenAndReadMagic(const char* filename, uint32_t* magic, std::string* error_msg);
H A Diteration_range.h30 typedef typename std::iterator_traits<Iter>::difference_type difference_type;
31 typedef typename std::iterator_traits<Iter>::value_type value_type;
32 typedef typename std::iterator_traits<Iter>::pointer pointer;
33 typedef typename std::iterator_traits<Iter>::reference reference;
H A Dscoped_flock_test.cc27 std::string error_msg;
H A Dstringprintf.cc23 void StringAppendV(std::string* dst, const char* format, va_list ap) {
65 std::string StringPrintf(const char* fmt, ...) {
68 std::string result;
74 void StringAppendF(std::string* dst, const char* format, ...) {
H A Dsystrace.h33 explicit ScopedTrace(const std::string& name) : ScopedTrace(name.c_str()) {}
/art/compiler/debug/
H A Delf_debug_writer.cc49 std::vector<ElfCompilationUnit> compilation_units;
63 cu.code_address = std::min(cu.code_address, mi.code_address);
64 cu.code_end = std::max(cu.code_end, mi.code_address + mi.code_size);
91 std::vector<uint8_t> MakeMiniDebugInfo(
113 static std::vector<uint8_t> WriteDebugElfFileForMethodsInternal(
117 std::vector<uint8_t> buffer;
120 std::unique_ptr<ElfBuilder<ElfTypes>> builder(new ElfBuilder<ElfTypes>(isa, features, &out));
132 std::vector<uint8_t> WriteDebugElfFileForMethods(
144 static std::vector<uint8_t> WriteDebugElfFileForClassesInternal(
149 std
[all...]
/art/compiler/dex/quick/
H A Ddex_file_to_method_inliner_map.h49 std::map<const DexFile*, DexFileMethodInliner*> inliners_ GUARDED_BY(lock_);
/art/compiler/
H A Delf_writer.cc44 std::string error_msg;
45 std::unique_ptr<ElfFile> elf_file(ElfFile::Open(file,
60 std::string error_msg;
61 std::unique_ptr<ElfFile> elf_file(ElfFile::Open(file, true, false, /*low_4gb*/false, &error_msg));
H A Delf_writer_quick.h31 std::unique_ptr<ElfWriter> CreateElfWriterQuick(InstructionSet instruction_set,
/art/compiler/linker/arm/
H A Drelative_patcher_thumb2.h29 void PatchCall(std::vector<uint8_t>* code,
33 void PatchPcRelativeReference(std::vector<uint8_t>* code,
39 static std::vector<uint8_t> CompileThunkCode();
41 void SetInsn32(std::vector<uint8_t>* code, uint32_t offset, uint32_t value);
/art/compiler/linker/x86/
H A Drelative_patcher_x86.h29 void PatchPcRelativeReference(std::vector<uint8_t>* code,
/art/compiler/linker/x86_64/
H A Drelative_patcher_x86_64.h29 void PatchPcRelativeReference(std::vector<uint8_t>* code,
/art/compiler/utils/x86/
H A Dconstants_x86.h55 std::ostream& operator<<(std::ostream& os, const XmmRegister& reg);
69 std::ostream& operator<<(std::ostream& os, const X87Register& reg);
/art/runtime/arch/arm/
H A Dregisters_arm.h52 std::ostream& operator<<(std::ostream& os, const Register& rhs);
92 std::ostream& operator<<(std::ostream& os, const SRegister& rhs);
/art/runtime/arch/mips/
H A Dregisters_mips.h67 std::ostream& operator<<(std::ostream& os, const Register& rhs);
107 std::ostream& operator<<(std::ostream& os, const FRegister& rhs);
/art/runtime/arch/mips64/
H A Dregisters_mips64.h68 std::ostream& operator<<(std::ostream& os, const GpuRegister& rhs);
108 std::ostream& operator<<(std::ostream& os, const FpuRegister& rhs);
/art/runtime/base/unix_file/
H A Drandom_access_file_utils.cc26 std::vector<char> buf(4096);
/art/runtime/gc/space/
H A Ddlmalloc_space_random_test.cc25 MallocSpace* CreateDlMallocSpace(const std::string& name, size_t initial_size, size_t growth_limit,
H A Ddlmalloc_space_static_test.cc25 MallocSpace* CreateDlMallocSpace(const std::string& name, size_t initial_size, size_t growth_limit,
H A Drosalloc_space_random_test.cc23 MallocSpace* CreateRosAllocSpace(const std::string& name, size_t initial_size, size_t growth_limit,
H A Drosalloc_space_static_test.cc23 MallocSpace* CreateRosAllocSpace(const std::string& name, size_t initial_size, size_t growth_limit,

Completed in 953 milliseconds

1234567891011>>