Lines Matching refs:l0

992   char l0 = TOLOWER (src[0]);  in parse_reg_without_prefix()  local
993 char l1 = l0 ? TOLOWER (src[1]) : 0; in parse_reg_without_prefix()
999 if (l0 == 'r') in parse_reg_without_prefix()
1038 if (l0 == 'a') in parse_reg_without_prefix()
1096 if (l0 == 'i' && l1 && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg_without_prefix()
1118 if (l0 == 'x' && l1 >= '0' && l1 <= '1' in parse_reg_without_prefix()
1126 if (l0 == 'y' && l1 >= '0' && l1 <= '1' in parse_reg_without_prefix()
1134 if (l0 == 'm' && l1 >= '0' && l1 <= '1' in parse_reg_without_prefix()
1142 if (l0 == 's' in parse_reg_without_prefix()
1150 if (l0 == 's' && l1 == 'p' && TOLOWER (src[2]) == 'c' in parse_reg_without_prefix()
1157 if (l0 == 's' && l1 == 'g' && TOLOWER (src[2]) == 'r' in parse_reg_without_prefix()
1164 if (l0 == 'd' && l1 == 's' && TOLOWER (src[2]) == 'r' in parse_reg_without_prefix()
1171 if (l0 == 'd' && l1 == 'b' && TOLOWER (src[2]) == 'r' in parse_reg_without_prefix()
1178 if (l0 == 's' && l1 == 'r' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg_without_prefix()
1184 if (l0 == 's' && l1 == 'p' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg_without_prefix()
1191 if (l0 == 'p' && l1 == 'r' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg_without_prefix()
1196 if (l0 == 'p' && l1 == 'c' && ! IDENT_CHAR ((unsigned char) src[2])) in parse_reg_without_prefix()
1203 if (l0 == 'g' && l1 == 'b' && TOLOWER (src[2]) == 'r' in parse_reg_without_prefix()
1209 if (l0 == 'v' && l1 == 'b' && TOLOWER (src[2]) == 'r' in parse_reg_without_prefix()
1216 if (l0 == 't' && l1 == 'b' && TOLOWER (src[2]) == 'r' in parse_reg_without_prefix()
1222 if (l0 == 'm' && l1 == 'a' && TOLOWER (src[2]) == 'c' in parse_reg_without_prefix()
1236 if (l0 == 'm' && l1 == 'o' && TOLOWER (src[2]) == 'd' in parse_reg_without_prefix()
1242 if (l0 == 'f' && l1 == 'r') in parse_reg_without_prefix()
1262 if (l0 == 'd' && l1 == 'r') in parse_reg_without_prefix()
1282 if (l0 == 'x' && l1 == 'd') in parse_reg_without_prefix()
1302 if (l0 == 'f' && l1 == 'v') in parse_reg_without_prefix()
1318 if (l0 == 'f' && l1 == 'p' && TOLOWER (src[2]) == 'u' in parse_reg_without_prefix()
1326 if (l0 == 'f' && l1 == 'p' && TOLOWER (src[2]) == 's' in parse_reg_without_prefix()
1334 if (l0 == 'x' && l1 == 'm' && TOLOWER (src[2]) == 't' in parse_reg_without_prefix()
1555 char l0, l1; in parse_at() local
1558 l0 = TOLOWER (src[0]); in parse_at()
1561 if ((l0 == 'r' && l1 == '8') in parse_at()
1562 || (l0 == 'i' && (l1 == 'x' || l1 == 's'))) in parse_at()
1567 else if ( (l0 == 'r' && l1 == '9') in parse_at()
1568 || (l0 == 'i' && l1 == 'y')) in parse_at()