Lines Matching refs:architecture
234 // Result is 0 on r6 architectures, 1 on other architecture revisions.
369 switch (features.architecture) {
618 // Extract architecture from the "CPU Architecture" field.
624 char* architecture = cpu_info.ExtractField("CPU architecture");
625 if (architecture != nullptr) {
627 architecture_ = strtol(architecture, &end, 10);
628 if (end == architecture) {
629 // Kernels older than 3.18 report "CPU architecture: AArch64" on ARMv8.
630 if (strcmp(architecture, "AArch64") == 0) {
636 delete[] architecture;
639 // report an incorrect architecture number of 7!
647 // ARMv6 device that reports architecture 7.
709 // The earliest architecture with Thumb2 is ARMv6T2.