OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ARMProcFamily
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Target/AArch64/
AArch64Subtarget.h
51
///
ARMProcFamily
- ARM processor family: Cortex-A53, Cortex-A57, and others.
52
ARMProcFamilyEnum
ARMProcFamily
= Others;
162
return
ARMProcFamily
;
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMSubtarget.h
36
///
ARMProcFamily
- ARM processor family: Cortex-A8, Cortex-A9, and others.
37
ARMProcFamilyEnum
ARMProcFamily
;
195
bool isCortexA8() const { return
ARMProcFamily
== CortexA8; }
196
bool isCortexA9() const { return
ARMProcFamily
== CortexA9; }
/external/llvm/lib/Target/ARM/
ARMSubtarget.h
75
///
ARMProcFamily
- ARM processor family: Cortex-A8, Cortex-A9, and others.
76
ARMProcFamilyEnum
ARMProcFamily
= Others;
410
bool isCortexA5() const { return
ARMProcFamily
== CortexA5; }
411
bool isCortexA7() const { return
ARMProcFamily
== CortexA7; }
412
bool isCortexA8() const { return
ARMProcFamily
== CortexA8; }
413
bool isCortexA9() const { return
ARMProcFamily
== CortexA9; }
414
bool isCortexA15() const { return
ARMProcFamily
== CortexA15; }
415
bool isSwift() const { return
ARMProcFamily
== Swift; }
416
bool isCortexM3() const { return
ARMProcFamily
== CortexM3; }
418
bool isCortexR5() const { return
ARMProcFamily
== CortexR5;
[
all
...]
Completed in 80 milliseconds