Searched refs:arch (Results 1 - 19 of 19) sorted by path

/system/core/crash_reporter/
H A Dkernel_collector.h66 void set_arch(ArchKind arch) { arch_ = arch; } argument
67 ArchKind arch() const { return arch_; } function in class:KernelCollector
H A Dkernel_collector_test.cc91 EXPECT_NE(KernelCollector::kArchUnknown, collector_.arch());
/system/core/libcutils/
H A DAndroid.mk106 LOCAL_SRC_FILES_arm += arch-arm/memset32.S
107 LOCAL_SRC_FILES_arm64 += arch-arm64/android_memset.S
109 LOCAL_SRC_FILES_mips += arch-mips/android_memset.c
110 LOCAL_SRC_FILES_mips64 += arch-mips/android_memset.c
113 arch-x86/android_memset16.S \
114 arch-x86/android_memset32.S \
117 arch-x86_64/android_memset16.S \
118 arch-x86_64/android_memset32.S \
/system/core/libpixelflinger/
H A DAndroid.mk43 arch-arm64/col32cb16blend.S \
44 arch-arm64/t32cb16blend.S \
50 arch-mips/t32cb16blend.S \
58 arch-mips64/col32cb16blend.S \
59 arch-mips64/t32cb16blend.S \
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp1027 RegisterAllocator::RegisterAllocator(int arch) : mRegs(arch) argument
H A DGGLAssembler.h52 RegisterAllocator(int arch);
62 RegisterFile(int arch);
63 RegisterFile(const RegisterFile& rhs, int arch);
/system/core/libpixelflinger/tests/arch-arm64/col32cb16blend/
H A DAndroid.mk6 ../../../arch-arm64/col32cb16blend.S
/system/core/libpixelflinger/tests/arch-arm64/t32cb16blend/
H A DAndroid.mk6 ../../../arch-arm64/t32cb16blend.S
/system/core/libpixelflinger/tests/arch-mips/col32cb16blend/
H A DAndroid.mk6 ../../../arch-mips/col32cb16blend.S
/system/core/libpixelflinger/tests/arch-mips/t32cb16blend/
H A DAndroid.mk6 ../../../arch-mips/t32cb16blend.S
/system/core/libpixelflinger/tests/arch-mips64/col32cb16blend/
H A DAndroid.mk6 ../../../arch-mips64/col32cb16blend.S
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
H A Dheader.h84 char * arch; member in struct:perf_session_env
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
H A Dheader.h72 char *arch; member in struct:perf_session_env
155 * arch specific callback
/system/extras/simpleperf/
H A Dcmd_dumprecord.cpp67 std::string arch = record_file_reader_->ReadFeatureString(FEAT_ARCH); local
68 if (!arch.empty()) {
69 record_file_arch_ = GetArchType(arch);
139 {FEAT_ARCH, "arch"},
205 PrintIndented(1, "arch: %s\n", s.c_str());
H A Dcmd_report.cpp638 std::string arch = record_file_reader_->ReadFeatureString(PerfFileFormat::FEAT_ARCH); local
639 if (!arch.empty()) {
640 record_file_arch_ = GetArchType(arch);
H A Ddwarf_unwind.cpp97 std::vector<uint64_t> UnwindCallChain(ArchType arch, const ThreadEntry& thread, argument
100 if (arch != GetBuildArch()) {
105 if (!GetSpRegValue(regs, arch, &sp_reg_value)) {
H A Ddwarf_unwind.h30 std::vector<uint64_t> UnwindCallChain(ArchType arch, const ThreadEntry& thread, const RegSet& regs,
H A Dperf_regs.cpp26 ArchType GetArchType(const std::string& arch) { argument
27 if (arch == "x86" || arch == "i686") {
29 } else if (arch == "x86_64") {
31 } else if (arch == "aarch64") {
33 } else if (android::base::StartsWith(arch, "arm")) {
36 LOG(ERROR) << "unsupported arch: " << arch;
40 uint64_t GetSupportedRegMask(ArchType arch) { argument
41 switch (arch) {
75 GetRegName(size_t regno, ArchType arch) argument
130 GetSpRegValue(const RegSet& regs, ArchType arch, uint64_t* value) argument
[all...]
H A Dperf_regs.h58 ArchType GetArchType(const std::string& arch);
59 uint64_t GetSupportedRegMask(ArchType arch);
60 std::string GetRegName(size_t regno, ArchType arch);
64 ScopedCurrentArch(ArchType arch) : saved_arch(current_arch) { argument
65 current_arch = arch;
87 bool GetSpRegValue(const RegSet& regs, ArchType arch, uint64_t* value);

Completed in 696 milliseconds