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.cc169 std::vector<const DexFile*> dex_files;
310 std::vector<const DexFile*> CommonRuntimeTest::OpenTestDexFiles(const char* name) {
323 std::vector<const DexFile*> dex_files;
335 std::vector<const DexFile*> vector = OpenTestDexFiles(name); local
336 EXPECT_EQ(1U, vector.size());
337 return vector[0];
341 std::vector<const DexFile*> dex_files = OpenTestDexFiles(dex_name);
383 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 646 milliseconds