Home | History | Annotate | Download | only in arm

Lines Matching defs:Name

56 const char* Registers::Name(int reg) {
83 const char* VFPRegisters::Name(int reg, bool is_double) {
89 int VFPRegisters::Number(const char* name, bool* is_double) {
91 if (strcmp(names_[i], name) == 0) {
102 // No register with the requested name found.
107 int Registers::Number(const char* name) {
110 if (strcmp(names_[i], name) == 0) {
118 if (strcmp(aliases_[i].name, name) == 0) {
124 // No register with the requested name found.