Home | History | Annotate | Download | only in base

Lines Matching defs:architecture

175   // Result is 0 on r6 architectures, 1 on other architecture revisions.
465 // Extract architecture from the "CPU Architecture" field.
471 char* architecture = cpu_info.ExtractField("CPU architecture");
472 if (architecture != NULL) {
474 architecture_ = strtol(architecture, &end, 10);
475 if (end == architecture) {
476 // Kernels older than 3.18 report "CPU architecture: AArch64" on ARMv8.
477 if (strcmp(architecture, "AArch64") == 0) {
483 delete[] architecture;
486 // report an incorrect architecture number of 7!
494 // ARMv6 device that reports architecture 7.
556 // The earliest architecture with Thumb2 is ARMv6T2.