Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 25 of 35) sorted by relevance

12

/art/disassembler/
Ddisassembler_x86.cc163 uint8_t* prefix, bool load, RegFile src_reg_file, in DumpAddress() argument
229 prefix[2], load ? src_reg_file : dst_reg_file); in DumpAddress()
281 uint8_t prefix[4] = {0, 0, 0, 0}; in DumpInstruction() local
288 prefix[0] = *instr; in DumpInstruction()
297 prefix[1] = *instr; in DumpInstruction()
301 prefix[2] = *instr; in DumpInstruction()
305 prefix[3] = *instr; in DumpInstruction()
441 if (prefix[0] == 0xF2) { in DumpInstruction()
443 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction()
444 } else if (prefix[0] == 0xF3) { in DumpInstruction()
[all …]
Ddisassembler_x86.h40 bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load,
/art/runtime/
Dhidden_api_test.cc163 std::string prefix("L"); in TEST_F() local
164 ASSERT_TRUE(MemberSignature(class1_field1_).DoesPrefixMatch(prefix)); in TEST_F()
165 ASSERT_TRUE(MemberSignature(class1_field12_).DoesPrefixMatch(prefix)); in TEST_F()
166 ASSERT_TRUE(MemberSignature(class1_init_).DoesPrefixMatch(prefix)); in TEST_F()
167 ASSERT_TRUE(MemberSignature(class1_method1_).DoesPrefixMatch(prefix)); in TEST_F()
168 ASSERT_TRUE(MemberSignature(class1_method1_i_).DoesPrefixMatch(prefix)); in TEST_F()
169 ASSERT_TRUE(MemberSignature(class12_field1_).DoesPrefixMatch(prefix)); in TEST_F()
170 ASSERT_TRUE(MemberSignature(class12_method1_).DoesPrefixMatch(prefix)); in TEST_F()
171 ASSERT_TRUE(MemberSignature(class1_method12_).DoesPrefixMatch(prefix)); in TEST_F()
172 ASSERT_TRUE(MemberSignature(class2_field1_).DoesPrefixMatch(prefix)); in TEST_F()
[all …]
Dnative_stack_dump.cc83 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument
84 if (prefix != nullptr) { in WritePrefix()
85 os << prefix; in WritePrefix()
156 const char* prefix, in Drain() argument
205 WritePrefix(os, prefix, (*pipe)->odd); in Drain()
234 const char* prefix, in Addr2line() argument
247 Drain(0, prefix, pipe, os); in Addr2line()
280 Drain(2U, prefix, pipe, os); in Addr2line()
317 const char* prefix, in DumpNativeStack() argument
332 os << prefix << "(backtrace::Unwind failed for thread " << tid in DumpNativeStack()
[all …]
Dnative_stack_dump.h36 const char* prefix = "",
45 const char* prefix = "",
Dhidden_api.cc169 bool MemberSignature::DoesPrefixMatch(const std::string& prefix) const { in DoesPrefixMatch()
172 size_t count = std::min(prefix.length() - pos, strlen(part)); in DoesPrefixMatch()
173 if (prefix.compare(pos, count, part, 0, count) == 0) { in DoesPrefixMatch()
181 return pos == prefix.length(); in DoesPrefixMatch()
Dentrypoints_order_test.cc48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \ argument
49 EXPECT_OFFSET_DIFF(type, prefix . first_field, type, prefix . second_field, diff, /* NOLINT */ \
50 type ## _ ## prefix ## _ ## first_field ## _ ## second_field)
/art/tools/checker/file_format/checker/
Dparser.py25 def __extractLine(prefix, line, arch = None, debuggable = False): argument
37 prefix + arch_specifier + dbg_specifier + r":"
47 def __preprocessLineForStart(prefix, line, targetArch): argument
55 if prefix in line:
73 def __processLine(line, lineNo, prefix, fileName, targetArch): argument
87 sline = __preprocessLineForStart(prefix + "-START", line, targetArch)
89 startLine = __extractLine(prefix + "-START", sline, arch, debuggable)
94 plainLine = __extractLine(prefix, line)
99 nextLine = __extractLine(prefix + "-NEXT", line)
104 dagLine = __extractLine(prefix + "-DAG", line)
[all …]
/art/libartbase/base/
Dstring_view_cpp20.h30 inline bool StartsWith(std::string_view sv, std::string_view prefix) { in StartsWith() argument
31 return sv.substr(0u, prefix.size()) == prefix; in StartsWith()
Dhex_dump.h32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump() argument
34 prefix_(prefix) { in HexDump()
Dbit_vector.cc329 void BitVector::Dump(std::ostream& os, const char *prefix) const { in Dump()
331 DumpHelper(prefix, buffer); in Dump()
335 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { in DumpHelper() argument
337 if (prefix != nullptr) { in DumpHelper()
338 buffer << prefix; in DumpHelper()
Dcommon_art_test.cc379 std::string prefix = host_dir; in GetLibCoreDexLocations() local
380 CHECK(!prefix.empty()); in GetLibCoreDexLocations()
381 if (prefix.back() != '/') { in GetLibCoreDexLocations()
382 prefix += '/'; in GetLibCoreDexLocations()
385 CHECK_GT(location.size(), prefix.size()); in GetLibCoreDexLocations()
386 CHECK_EQ(location.compare(0u, prefix.size(), prefix), 0); in GetLibCoreDexLocations()
387 location.erase(0u, prefix.size()); in GetLibCoreDexLocations()
Dbit_vector.h260 void Dump(std::ostream& os, const char* prefix) const;
269 void DumpHelper(const char* prefix, std::ostringstream& buffer) const;
/art/tools/jfuzz/
Djfuzz.cc321 const char* prefix = tp == kLong ? "Long" : "Integer"; in emitIntrinsic1() local
323 case 1: fprintf(out_, "%s.highestOneBit", prefix); break; in emitIntrinsic1()
324 case 2: fprintf(out_, "%s.lowestOneBit", prefix); break; in emitIntrinsic1()
325 case 3: fprintf(out_, "%s.numberOfLeadingZeros", prefix); break; in emitIntrinsic1()
326 case 4: fprintf(out_, "%s.numberOfTrailingZeros", prefix); break; in emitIntrinsic1()
327 case 5: fprintf(out_, "%s.bitCount", prefix); break; in emitIntrinsic1()
328 case 6: fprintf(out_, "%s.signum", prefix); break; in emitIntrinsic1()
329 case 7: fprintf(out_, "%s.reverse", prefix); break; in emitIntrinsic1()
330 case 8: fprintf(out_, "%s.reverseBytes", prefix); break; in emitIntrinsic1()
366 const char* prefix = tp == kLong ? "Long" : "Integer"; in emitIntrinsic2() local
[all …]
/art/tools/timeout_dumper/
Dtimeout_dumper.cc195 void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument
196 if (prefix != nullptr) { in WritePrefix()
197 os << prefix; in WritePrefix()
206 const char* prefix, in Drain() argument
255 WritePrefix(os, prefix, (*pipe)->odd); in Drain()
282 const char* prefix, in Addr2line() argument
295 Drain(0, prefix, pipe, os); in Addr2line()
327 Drain(2U, prefix, pipe, os); in Addr2line()
519 const char* prefix, in DumpThread() argument
531 LOG(ERROR) << prefix << "(failed to create Backtrace for thread " << tid << ")"; in DumpThread()
[all …]
/art/tools/golem/
Denv65 local prefix="$2"
68 echo >&$out_fd "${prefix}${target}"
/art/test/005-annotations/src/android/test/anno/
DTestAnnotations.java32 static private void printAnnotationArray(String prefix, Annotation[] arr) { in printAnnotationArray() argument
41 System.out.println(prefix + " " + a); in printAnnotationArray()
42 System.out.println(prefix + " " + a.annotationType()); in printAnnotationArray()
/art/libdexfile/dex/
Dutf_test.cc180 for (const auto& prefix : prefixes) { in TEST_F() local
181 const std::vector<uint16_t>& prefix_in = prefix.first; in TEST_F()
182 const std::vector<uint8_t>& prefix_out = prefix.second; in TEST_F()
/art/compiler/optimizing/
Dliveness_test.cc38 const char* prefix) { in DumpBitVector() argument
39 buffer << prefix; in DumpBitVector()
/art/
DCPPLINT.cfg20 # Use 'ART_' as the cpp header guard prefix (e.g. #ifndef ART_PATH_TO_FILE_H_).
/art/test/testrunner/
Denv.py72 ART_HOST_TEST_DIR = tempfile.mkdtemp(prefix = 'test-art-')
/art/dexlayout/
Ddex_visualize.cc40 static std::string MultidexName(const std::string& prefix, in MultidexName() argument
43 return prefix + ((dex_file_index > 0) ? std::to_string(dex_file_index + 1) : "") + suffix; in MultidexName()
/art/test/
DREADME.md6 prefix and containing an info.txt file. For most run tests, the
/art/tools/common/
Dcommon.py292 self._env_path = mkdtemp(dir='/tmp/', prefix=directory_prefix)
382 self._host_env_path = mkdtemp(dir='/tmp/', prefix=directory_prefix)
/art/tools/dexanalyze/
Ddexanalyze_strings.cc81 size_t AddString(uint16_t prefix, const std::string& str) { in AddString() argument
83 chars_.push_back(static_cast<uint8_t>(prefix >> 8)); in AddString()
84 chars_.push_back(static_cast<uint8_t>(prefix >> 0)); in AddString()

12