Home | History | Annotate | Download | only in opcodes

Lines Matching defs:plex

1703   lex_t *plex;
1717 plex = opc->syntax;
1725 *plex = SYN_INPUT;
1728 *plex = SYN_OUTPUT;
1731 *plex = SYN_INPUT | SYN_OUTPUT;
1734 *plex++ = SYN_LOPT;
1739 *plex++ = SYN_ROPT;
1743 *plex++ = *str++;
1780 *plex |= LEX_SET_FIELD (k, fidx);
1783 plex++;
1786 *plex = 0;
2480 lex_t *plex;
2482 /* PLEX is the syntax iterator and P is the iterator for input
2484 plex = opc->syntax;
2489 while (*plex)
2491 if (IS_LEX_CHAR (*plex))
2494 if (LEX_CHAR (*plex) != TOLOWER (*p))
2496 if (LEX_CHAR (*plex) == '+' && TOLOWER (*p) == '-')
2503 plex++;
2511 else if (*plex & SYN_LOPT)
2517 while ((*plex & SYN_ROPT) == 0)
2518 plex++;
2521 else if (*plex & SYN_ROPT)
2528 if (!parse_operand (pdesc, pinsn, &p, *plex))
2531 plex++;
2535 if (*plex == 0 && (*p == '\0' || *p == '!' || *p == '#'))