Searched refs:feature_start (Results 1 – 1 of 1) sorted by relevance
/external/cpuinfo/src/arm/linux/ |
D | cpuinfo.c | 105 const char* feature_start = features_start; in parse_features() local 112 feature_end = feature_start + 1; in parse_features() 118 const size_t feature_length = (size_t) (feature_end - feature_start); in parse_features() 122 if (memcmp(feature_start, "fp", feature_length) == 0) { in parse_features() 127 } else if (memcmp(feature_start, "wp", feature_length) == 0) { in parse_features() 139 if (memcmp(feature_start, "aes", feature_length) == 0) { in parse_features() 146 } else if (memcmp(feature_start, "swp", feature_length) == 0) { in parse_features() 148 } else if (memcmp(feature_start, "fpa", feature_length) == 0) { in parse_features() 150 } else if (memcmp(feature_start, "vfp", feature_length) == 0) { in parse_features() 152 } else if (memcmp(feature_start, "tls", feature_length) == 0) { in parse_features() [all …]
|