Searched defs:out (Results 1 - 9 of 9) sorted by relevance

/art/compiler/
H A Dbuffered_output_stream.cc23 BufferedOutputStream::BufferedOutputStream(OutputStream* out) argument
24 : OutputStream(out->GetLocation()), out_(out), used_(0) {}
H A Dleb128_encoder.h33 uint8_t out = value & 0x7f; local
34 if (out != value) {
35 data_.push_back(out | 0x80);
38 data_.push_back(out);
H A Doat_writer.cc425 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out.Seek(0, kSeekCurrent)) \
429 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out.Seek(0, kSeekCurrent)) \
432 bool OatWriter::Write(OutputStream& out) { argument
433 const size_t file_offset = out.Seek(0, kSeekCurrent);
435 if (!out.WriteFully(oat_header_, sizeof(*oat_header_))) {
436 PLOG(ERROR) << "Failed to write oat header to " << out.GetLocation();
441 if (!out.WriteFully(image_file_location_.data(), image_file_location_.size())) {
442 PLOG(ERROR) << "Failed to write oat header image file location to " << out.GetLocation();
447 if (!WriteTables(out, file_offset)) {
448 LOG(ERROR) << "Failed to write oat tables to " << out
509 WriteTables(OutputStream& out, const size_t file_offset) argument
542 WriteCode(OutputStream& out, const size_t file_offset) argument
582 WriteCodeDexFiles(OutputStream& out, const size_t file_offset, size_t relative_offset) argument
598 WriteCodeDexFile(OutputStream& out, const size_t file_offset, size_t relative_offset, size_t& oat_class_index, const DexFile& dex_file) argument
619 WriteCodeClassDef(OutputStream& out, const size_t file_offset, size_t relative_offset, size_t oat_class_index, const DexFile& dex_file, const DexFile::ClassDef& class_def) argument
663 WriteCodeMethod(OutputStream& out, const size_t file_offset, size_t relative_offset, size_t oat_class_index, size_t class_def_method_index, bool is_static, uint32_t method_idx, const DexFile& dex_file) argument
823 Write(OatWriter* oat_writer, OutputStream& out, const size_t file_offset) const argument
884 Write(OatWriter* oat_writer, OutputStream& out, const size_t file_offset) const argument
[all...]
/art/runtime/
H A Dindenter.h28 Indenter(std::streambuf* out, char text, size_t count) argument
29 : indent_next_(true), out_sbuf_(out), text_(text), count_(count) {}
/art/jdwpspy/
H A DMain.cpp37 char out[77]; /* exact fit */ local
48 memset(out, ' ', sizeof(out)-1);
49 out[8] = ':';
50 out[sizeof(out)-2] = '\n';
51 out[sizeof(out)-1] = '\0';
56 char* hex = out;
57 char* asc = out
[all...]
/art/runtime/base/
H A Dlogging.cc177 char out[76]; /* exact fit */ local
185 memset(out, ' ', sizeof(out)-1);
186 out[8] = ':';
187 out[sizeof(out)-1] = '\0';
194 char* hex = out;
195 char* asc = out + 59;
234 os << out; local
/art/dex2oat/
H A Ddex2oat.cc122 UsageError(" Example: --host-prefix=out/target/product/crespo");
126 UsageError(" Example: --android-root=out/host/linux-x86");
402 static bool ParseInt(const char* in, int* out) { argument
408 *out = result;
1044 UniquePtr<File> out(OS::CreateEmptyFile(oat_stripped.c_str()));
1052 bool write_ok = out->WriteFully(buffer.get(), bytes_read);
1055 oat_file.reset(out.release());
/art/oatdump/
H A Doatdump.cc77 " Example: --host-prefix=out/target/product/crespo\n"
1369 UniquePtr<std::ofstream> out; local
1383 out.reset(new std::ofstream(filename));
1384 if (!out->good()) {
1388 os = out.get();
/art/runtime/gc/collector/
H A Dmark_sweep.cc101 // Find out if the previous space is immune.
313 // reseting the allocation stack zeros it out with madvise. This means that we will either
1164 Object** out = objects; local
1165 Object** objects_to_chunk_free = out;
1175 *(out++) = obj;
1177 DCHECK_GE(out, objects_to_chunk_free);
1178 DCHECK_LE(static_cast<size_t>(out - objects_to_chunk_free), kSweepArrayChunkFreeSize);
1179 if (static_cast<size_t>(out - objects_to_chunk_free) == kSweepArrayChunkFreeSize) {
1181 size_t chunk_freed_objects = out - objects_to_chunk_free;
1184 objects_to_chunk_free = out;
[all...]

Completed in 393 milliseconds