Searched defs:vector (Results 1 - 6 of 6) sorted by relevance

/art/compiler/
H A Dvector_output_stream.cc23 VectorOutputStream::VectorOutputStream(const std::string& location, std::vector<uint8_t>* vector) argument
24 : OutputStream(location), offset_(vector->size()), vector_(vector) {}
/art/compiler/optimizing/
H A Dliveness_test.cc34 static void DumpBitVector(BitVector* vector, argument
41 buffer << vector->IsBitSet(i);
H A Doptimizing_compiler.cc61 * Used by the code generator, to allocate the code in a vector.
74 const std::vector<uint8_t>& GetMemory() const { return memory_; }
77 std::vector<uint8_t> memory_;
373 static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) { argument
374 size_t size = vector.size();
377 vector.push_back(0);
379 return ArrayRef<const uint8_t>(vector);
417 std::vector<uint8_t> stack_map;
447 std::vector<uint8_
[all...]
/art/cmdline/
H A Dcmdline_types.h88 std::vector<std::string> pairs;
383 struct CmdlineType<std::vector<std::string>> : CmdlineTypeParser<std::vector<std::string>> {
385 assert(false && "Use AppendValues() for a string vector type");
386 return Result::Failure("Unconditional failure: string vector must be appended: " + args);
390 std::vector<std::string>& existing_value) {
395 static const char* Name() { return "std::vector<std::string>"; }
400 explicit ParseStringList(std::vector<std::string>&& list) : list_(list) {}
402 operator std::vector<std::string>() const {
406 operator std::vector<st
[all...]
/art/runtime/
H A Dcommon_runtime_test.cc280 std::vector<std::unique_ptr<const DexFile>> dex_files;
457 std::vector<std::unique_ptr<const DexFile>> CommonRuntimeTest::OpenTestDexFiles(const char* name) {
460 std::vector<std::unique_ptr<const DexFile>> dex_files;
471 std::vector<std::unique_ptr<const DexFile>> vector = OpenTestDexFiles(name); local
472 EXPECT_EQ(1U, vector.size());
473 return std::move(vector[0]);
476 std::vector<const DexFile*> CommonRuntimeTest::GetDexFiles(jobject jclass_loader) {
477 std::vector<const DexFile*> ret;
504 // at the mCookie which is a DexFile vector
[all...]
/art/compiler/dex/quick/arm/
H A Dtarget_arm.cc298 static char* DecodeRegList(int opcode, int vector, char* buf, size_t buf_size) { argument
302 for (i = 0; i < 16; i++, vector >>= 1) {
303 if (vector & 0x1) {

Completed in 475 milliseconds