HomeSort by relevance Sort by last modified time
    Searched full:instruction_set (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
Android.bp 8 instruction_set: "arm",
  /art/disassembler/
disassembler.cc 38 Disassembler* Disassembler::Create(InstructionSet instruction_set, DisassemblerOptions* options) {
39 if (instruction_set == kArm || instruction_set == kThumb2) {
41 } else if (instruction_set == kArm64) {
43 } else if (instruction_set == kMips) {
45 } else if (instruction_set == kMips64) {
47 } else if (instruction_set == kX86) {
49 } else if (instruction_set == kX86_64) {
52 UNIMPLEMENTED(FATAL) << static_cast<uint32_t>(instruction_set);
66 Disassembler* create_disassembler(InstructionSet instruction_set, DisassemblerOptions* options)
    [all...]
disassembler.h 26 #include "arch/instruction_set.h"
69 static Disassembler* Create(InstructionSet instruction_set, DisassemblerOptions* options);
99 Disassembler* create_disassembler(InstructionSet instruction_set, DisassemblerOptions* options);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
Android.bp 9 instruction_set: "arm",
  /frameworks/av/media/libstagefright/codecs/common/
Android.bp 12 instruction_set: "arm",
  /art/compiler/
compiled_method.cc 25 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
28 instruction_set_(instruction_set),
53 size_t CompiledCode::AlignCode(size_t offset, InstructionSet instruction_set) {
54 return RoundUp(offset, GetInstructionSetAlignment(instruction_set));
61 size_t CompiledCode::CodeDelta(InstructionSet instruction_set) {
62 switch (instruction_set) {
75 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set;
81 InstructionSet instruction_set) {
82 switch (instruction_set) {
97 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set;
    [all...]
elf_writer_quick.h 22 #include "arch/instruction_set.h"
31 std::unique_ptr<ElfWriter> CreateElfWriterQuick(InstructionSet instruction_set,
compiled_method.h 25 #include "arch/instruction_set.h"
40 CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
59 static size_t AlignCode(size_t offset, InstructionSet instruction_set);
64 static size_t CodeDelta(InstructionSet instruction_set);
70 InstructionSet instruction_set);
122 kMethodRelative, // NOTE: Actual patching is instruction_set-dependent.
123 kMethodBssEntry, // NOTE: Actual patching is instruction_set-dependent.
125 kCallRelative, // NOTE: Actual patching is instruction_set-dependent.
126 kTypeRelative, // NOTE: Actual patching is instruction_set-dependent.
127 kTypeBssEntry, // NOTE: Actual patching is instruction_set-dependent
    [all...]
elf_writer_quick.cc 89 ElfWriterQuick(InstructionSet instruction_set,
134 std::unique_ptr<ElfWriter> CreateElfWriterQuick(InstructionSet instruction_set,
138 if (Is64BitInstructionSet(instruction_set)) {
139 return std::make_unique<ElfWriterQuick<ElfTypes64>>(instruction_set,
144 return std::make_unique<ElfWriterQuick<ElfTypes32>>(instruction_set,
152 ElfWriterQuick<ElfTypes>::ElfWriterQuick(InstructionSet instruction_set,
165 builder_(new ElfBuilder<ElfTypes>(instruction_set, features, output_stream_.get())) {}
  /external/libldac/
Android.bp 9 instruction_set: "arm",
30 instruction_set: "arm",
  /art/compiler/utils/
jni_macro_assembler.cc 51 InstructionSet instruction_set,
57 switch (instruction_set) {
76 LOG(FATAL) << "Unknown/unsupported 4B InstructionSet: " << instruction_set;
86 InstructionSet instruction_set,
92 switch (instruction_set) {
111 LOG(FATAL) << "Unknown/unsupported 8B InstructionSet: " << instruction_set;
stack_checks.h 20 #include "arch/instruction_set.h"
  /frameworks/native/cmds/installd/
installd_deps.h 43 const char *instruction_set);
46 // Computes the odex file for the given apk_path and instruction_set, e.g.,
53 const char *instruction_set);
58 const char *instruction_set);
installd.cpp 57 const char *instruction_set) {
79 snprintf(path, PKG_PATH_MAX, "%s/%s/%s.odex", oat_dir, instruction_set, file_name);
84 * Computes the odex file for the given apk_path and instruction_set.
91 const char *instruction_set) {
92 if (strlen(apk_path) + strlen("oat/") + strlen(instruction_set)
107 strcat(path, instruction_set); // path = /system/framework/oat/<isa>\0
120 const char *instruction_set) {
136 strlen(instruction_set) +
147 instruction_set,
155 strlen(instruction_set) + 1
    [all...]
dexopt.h 41 bool move_ab(const char* apk_path, const char* instruction_set, const char* output_path);
57 bool delete_odex(const char* apk_path, const char* instruction_set, const char* output_path);
64 int dexopt(const char *apk_path, uid_t uid, const char *pkgName, const char *instruction_set,
  /art/compiler/linker/
multi_oat_relative_patcher.cc 26 MultiOatRelativePatcher::MultiOatRelativePatcher(InstructionSet instruction_set,
30 linker::RelativePatcher::Create(instruction_set, features, &method_offset_map_)),
32 instruction_set_(instruction_set),
  /external/pdfium/
Android.bp 15 instruction_set: "arm",
  /external/speex/
Android.bp 22 instruction_set: "arm",
59 instruction_set: "arm",
86 instruction_set: "arm",
  /art/runtime/native/
java_util_concurrent_atomic_AtomicLong.cc 21 #include "arch/instruction_set.h"
  /external/flac/libFLAC/
Android.bp 48 instruction_set: "arm",
  /system/nfc/src/
Android.bp 4 instruction_set: "arm",
  /art/compiler/optimizing/
register_allocator.cc 54 InstructionSet instruction_set) {
55 return instruction_set == kArm
56 || instruction_set == kArm64
57 || instruction_set == kMips
58 || instruction_set == kMips64
59 || instruction_set == kThumb2
60 || instruction_set == kX86
61 || instruction_set == kX86_64;
register_allocator.h 20 #include "arch/instruction_set.h"
65 InstructionSet instruction_set);
  /art/compiler/jit/
jit_compiler.cc 21 #include "arch/instruction_set.h"
107 const InstructionSet instruction_set = kRuntimeISA; local
115 instruction_set, str.as_string(), &error_msg);
124 instruction_set, "default", &error_msg);
144 instruction_set,
  /art/runtime/arch/
instruction_set_test.cc 17 #include "instruction_set.h"

Completed in 464 milliseconds

1 2 3 4 5 6