OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetGPR
(Results
1 - 9
of
9
) sorted by null
/art/runtime/arch/
context.h
72
virtual uintptr_t
GetGPR
(uint32_t reg) = 0;
/art/runtime/arch/arm/
context_arm.h
62
uintptr_t
GetGPR
(uint32_t reg) OVERRIDE {
/art/runtime/arch/arm64/
context_arm64.h
62
uintptr_t
GetGPR
(uint32_t reg) OVERRIDE {
/art/runtime/arch/mips/
context_mips.h
57
uintptr_t
GetGPR
(uint32_t reg) OVERRIDE {
/art/runtime/arch/mips64/
context_mips64.h
57
uintptr_t
GetGPR
(uint32_t reg) OVERRIDE {
/art/runtime/arch/x86/
context_x86.h
61
uintptr_t
GetGPR
(uint32_t reg) OVERRIDE {
/art/runtime/arch/x86_64/
context_x86_64.h
61
uintptr_t
GetGPR
(uint32_t reg) OVERRIDE {
/art/runtime/
stack.h
786
return is_float ? GetFPR(reg) :
GetGPR
(reg);
790
uintptr_t
GetGPR
(uint32_t reg) const;
stack.cc
493
uintptr_t StackVisitor::
GetGPR
(uint32_t reg) const {
496
return context_->
GetGPR
(reg);
[
all
...]
Completed in 131 milliseconds