• Home
  • Raw
  • Download

Lines Matching refs:feature_start

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()
160 if (memcmp(feature_start, "sha1", feature_length) == 0) { in parse_features()
166 } else if (memcmp(feature_start, "sha2", feature_length) == 0) { in parse_features()
172 } else if (memcmp(feature_start, "fphp", feature_length) == 0) { in parse_features()
176 } else if (memcmp(feature_start, "fcma", feature_length) == 0) { in parse_features()
181 } else if (memcmp(feature_start, "half", feature_length) == 0) { in parse_features()
183 } else if (memcmp(feature_start, "edsp", feature_length) == 0) { in parse_features()
185 } else if (memcmp(feature_start, "java", feature_length) == 0) { in parse_features()
187 } else if (memcmp(feature_start, "neon", feature_length) == 0) { in parse_features()
189 } else if (memcmp(feature_start, "lpae", feature_length) == 0) { in parse_features()
191 } else if (memcmp(feature_start, "tlsi", feature_length) == 0) { in parse_features()
203 if (memcmp(feature_start, "pmull", feature_length) == 0) { in parse_features()
209 } else if (memcmp(feature_start, "crc32", feature_length) == 0) { in parse_features()
215 } else if (memcmp(feature_start, "asimd", feature_length) == 0) { in parse_features()
219 } else if (memcmp(feature_start, "cpuid", feature_length) == 0) { in parse_features()
223 } else if (memcmp(feature_start, "jscvt", feature_length) == 0) { in parse_features()
227 } else if (memcmp(feature_start, "lrcpc", feature_length) == 0) { in parse_features()
232 } else if (memcmp(feature_start, "thumb", feature_length) == 0) { in parse_features()
234 } else if (memcmp(feature_start, "26bit", feature_length) == 0) { in parse_features()
236 } else if (memcmp(feature_start, "vfpv3", feature_length) == 0) { in parse_features()
238 } else if (memcmp(feature_start, "vfpv4", feature_length) == 0) { in parse_features()
240 } else if (memcmp(feature_start, "idiva", feature_length) == 0) { in parse_features()
242 } else if (memcmp(feature_start, "idivt", feature_length) == 0) { in parse_features()
251 if (memcmp(feature_start, "iwmmxt", feature_length) == 0) { in parse_features()
253 } else if (memcmp(feature_start, "crunch", feature_length) == 0) { in parse_features()
255 } else if (memcmp(feature_start, "vfpd32", feature_length) == 0) { in parse_features()
263 if (memcmp(feature_start, "evtstrm", feature_length) == 0) { in parse_features()
265 } else if (memcmp(feature_start, "atomics", feature_length) == 0) { in parse_features()
269 } else if (memcmp(feature_start, "asimdhp", feature_length) == 0) { in parse_features()
274 } else if (memcmp(feature_start, "thumbee", feature_length) == 0) { in parse_features()
282 if (memcmp(feature_start, "asimdrdm", feature_length) == 0) { in parse_features()
287 } else if (memcmp(feature_start, "fastmult", feature_length) == 0) { in parse_features()
289 } else if (memcmp(feature_start, "vfpv3d16", feature_length) == 0) { in parse_features()
299 (int) feature_length, feature_start); in parse_features()
302 feature_start = feature_end; in parse_features()
303 for (; feature_start != features_end; feature_start++) { in parse_features()
304 if (*feature_start != ' ') { in parse_features()
308 } while (feature_start != feature_end); in parse_features()