Searched refs:prefix (Results 1 - 18 of 18) sorted by relevance

/art/disassembler/
H A Ddisassembler_x86.cc162 uint8_t* prefix, bool load, RegFile src_reg_file,
228 prefix[2], load ? src_reg_file : dst_reg_file);
249 uint8_t prefix[4] = {0, 0, 0, 0}; local
256 prefix[0] = *instr;
265 prefix[1] = *instr;
269 prefix[2] = *instr;
273 prefix[3] = *instr;
373 // In 32-bit mode (!supports_rex_) this is ARPL, with no REX prefix the functionality is the
408 if (prefix[0] == 0xF2) {
410 prefix[
160 DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w, bool no_ops, bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load, RegFile src_reg_file, RegFile dst_reg_file, const uint8_t** instr, uint32_t* address_bits) argument
[all...]
H A Ddisassembler_x86.h39 bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load,
/art/runtime/base/
H A Dhex_dump.h32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) argument
34 prefix_(prefix) {
H A Dbit_vector.cc329 void BitVector::Dump(std::ostream& os, const char *prefix) const {
331 DumpHelper(prefix, buffer);
335 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { argument
337 if (prefix != nullptr) {
338 buffer << prefix; local
H A Dbit_vector.h272 void Dump(std::ostream& os, const char* prefix) const;
281 void DumpHelper(const char* prefix, std::ostringstream& buffer) const;
/art/tools/checker/file_format/checker/
H A Dparser.py25 def __extractLine(prefix, line, arch = None, debuggable = False):
37 prefix + arch_specifier + dbg_specifier + r":"
47 def __processLine(line, lineNo, prefix, fileName):
62 startLine = __extractLine(prefix + "-START", line, arch, debuggable)
67 plainLine = __extractLine(prefix, line)
72 nextLine = __extractLine(prefix + "-NEXT", line)
77 dagLine = __extractLine(prefix + "-DAG", line)
82 notLine = __extractLine(prefix + "-NOT", line)
87 evalLine = __extractLine(prefix + "-EVAL", line)
167 def ParseCheckerStream(fileName, prefix, strea
[all...]
/art/compiler/jit/
H A Djit_compiler.cc176 const char* prefix = "/data/misc/trace"; local
178 const char* prefix = "/tmp";
182 std::string perf_filename = std::string(prefix) + "/perf-" + std::to_string(getpid()) + ".map";
/art/test/005-annotations/src/android/test/anno/
H A DTestAnnotations.java31 static private void printAnnotationArray(String prefix, Annotation[] arr) { argument
40 System.out.println(prefix + " " + a);
41 System.out.println(prefix + " " + a.annotationType());
/art/runtime/
H A Dutils.cc941 bool StartsWith(const std::string& s, const char* prefix) { argument
942 return s.compare(0, strlen(prefix), prefix) == 0;
1032 static inline void WritePrefix(std::ostream* os, const char* prefix, bool odd) { argument
1033 if (prefix != nullptr) {
1034 *os << prefix; local
1042 static bool RunCommand(std::string cmd, std::ostream* os, const char* prefix) { argument
1047 bool wrote_prefix = false; // Have we already written a prefix?
1061 WritePrefix(os, prefix, odd_line);
1069 WritePrefix(os, prefix, odd_lin
1089 Addr2line(const std::string& map_src, uintptr_t offset, std::ostream& os, const char* prefix) argument
1107 DumpNativeStack(std::ostream& os, pid_t tid, BacktraceMap* existing_map, const char* prefix, ArtMethod* current_method, void* ucontext_ptr) argument
1197 DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) argument
1223 os << prefix; local
[all...]
H A Dstack_map.cc85 const std::string& prefix = "v",
87 os << prefix << dex_register_num << ": "
H A Dutf_test.cc178 for (const auto& prefix : prefixes) {
179 const std::vector<uint16_t>& prefix_in = prefix.first;
180 const std::vector<uint8_t>& prefix_out = prefix.second;
H A Dutils.h125 // Tests whether 's' starts with 'prefix'.
126 bool StartsWith(const std::string& s, const char* prefix);
249 const char* prefix = "",
257 const char* prefix = "",
H A Dentrypoints_order_test.cc48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \
49 EXPECT_OFFSET_DIFF(type, prefix . first_field, type, prefix . second_field, diff, \
50 type ## _ ## prefix ## _ ## first_field ## _ ## second_field)
H A Dmonitor.cc269 const char* prefix = is_wait ? "Waiting on " : "Locking "; local
284 prefix,
/art/compiler/optimizing/
H A Dliveness_test.cc37 const char* prefix) {
38 buffer << prefix; local
34 DumpBitVector(BitVector* vector, std::ostream& buffer, size_t count, const char* prefix) argument
/art/dex2oat/
H A Ddex2oat.cc935 // Get the prefix, which is the primary image name (without path components). Strip the
937 std::string prefix = base_img.substr(last_img_slash + 1); local
938 if (prefix.rfind('.') != std::string::npos) {
939 prefix = prefix.substr(0, prefix.rfind('.'));
941 if (!prefix.empty()) {
942 prefix = prefix + "-";
969 std::string image_name = CreateMultiImageName(dex_locations_[i], prefix, infi
985 CreateMultiImageName(std::string in, const std::string& prefix, const std::string& infix, const char* replace_suffix) argument
[all...]
/art/runtime/interpreter/mterp/
H A Dgen_mterp.py400 def emitAsmHeader(outfp, dict, prefix):
408 outfp.write(prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict)
/art/tools/
H A Dcpplint.py803 prefix = os.path.commonprefix([root_dir, project_dir])
804 return fullname[len(prefix) + 1:]
818 prefix = os.path.commonprefix([root_dir, project_dir])
820 # return fullname[len(prefix) + 1:]
821 return "art/" + fullname[len(prefix) + 1:]
3627 'base/sysinfo.h', this function also produces the prefix needed to open the
3643 string: the additional prefix needed to open the header file.
3731 prefix = line[:matched.start()]
3732 if prefix.endswith('std::') or not prefix
[all...]

Completed in 475 milliseconds