Home
last modified time | relevance | path

Searched refs:featurestr (Results 1 – 1 of 1) sorted by relevance

/external/qemu/target-i386/
Dhelper.c318 char *featurestr, *name = strtok(s, ","); in cpu_x86_find_by_name() local
334 featurestr = strtok(NULL, ","); in cpu_x86_find_by_name()
336 while (featurestr) { in cpu_x86_find_by_name()
338 if (featurestr[0] == '+') { in cpu_x86_find_by_name()
339 …add_flagname_to_bitmaps(featurestr + 1, &plus_features, &plus_ext_features, &plus_ext2_features, &… in cpu_x86_find_by_name()
340 } else if (featurestr[0] == '-') { in cpu_x86_find_by_name()
341 …add_flagname_to_bitmaps(featurestr + 1, &minus_features, &minus_ext_features, &minus_ext2_features… in cpu_x86_find_by_name()
342 } else if ((val = strchr(featurestr, '='))) { in cpu_x86_find_by_name()
344 if (!strcmp(featurestr, "family")) { in cpu_x86_find_by_name()
352 } else if (!strcmp(featurestr, "model")) { in cpu_x86_find_by_name()
[all …]