Lines Matching full:suffix
38 const char *suffix,
47 /* The first possible suffix element is the precision specifier from
51 switch (suffix[0]) {
54 suffix++;
58 suffix++;
62 suffix++;
69 /* The next possible suffix element is the condition code modifier selection
73 if (suffix[0] == 'C') {
75 suffix++;
80 /* The final possible suffix element is the saturation selector from
84 if (strcmp(suffix, "_SAT") == 0) {
86 suffix += 4;
91 /* It is an error for all of the suffix string not to be consumed.
93 return suffix[0] == '\0';