Searched defs:vector (Results 1 - 4 of 4) 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.cc30 static void DumpBitVector(BitVector* vector, argument
37 buffer << vector->IsBitSet(i);
/art/runtime/
H A Dcommon_runtime_test.cc178 std::vector<const DexFile*> dex_files;
319 std::vector<const DexFile*> CommonRuntimeTest::OpenTestDexFiles(const char* name) {
332 std::vector<const DexFile*> dex_files;
344 std::vector<const DexFile*> vector = OpenTestDexFiles(name); local
345 EXPECT_EQ(1U, vector.size());
346 return vector[0];
350 std::vector<const DexFile*> dex_files = OpenTestDexFiles(dex_name);
392 std::ostream& operator<<(std::ostream& os, const std::vector<T>& rhs) {
/art/compiler/dex/quick/arm/
H A Dtarget_arm.cc297 static char* DecodeRegList(int opcode, int vector, char* buf, size_t buf_size) { argument
301 for (i = 0; i < 16; i++, vector >>= 1) {
302 if (vector & 0x1) {

Completed in 1784 milliseconds