Lines Matching refs:opnd
917 operand *opnd; in process_operand_table() local
920 for (i = 0, opnd = operands; i < num; ++i, ++opnd) in process_operand_table()
922 opnd->has_inserter = opnd->inserter[0] != '0'; in process_operand_table()
923 opnd->has_extractor = opnd->extractor[0] != '0'; in process_operand_table()
933 operand *opnd; in print_operand_table() local
943 for (i = 0, opnd = operands; i < num; ++i, ++opnd) in print_operand_table()
947 if (opnd->flags[0] != '0') in print_operand_table()
948 sprintf (flags, "%s", opnd->flags); in print_operand_table()
949 if (opnd->has_inserter) in print_operand_table()
955 if (opnd->has_extractor) in print_operand_table()
967 opnd->class, opnd->str, flags, opnd->fields, opnd->desc); in print_operand_table()
978 operand *opnd; in print_operand_inserter() local
995 for (i = 0, opnd = operands; i < num; ++i, ++opnd) in print_operand_inserter()
996 opnd->processed = 0; in print_operand_inserter()
998 for (i = 0, opnd = operands; i < num; ++i, ++opnd) in print_operand_inserter()
1000 if (!opnd->processed && opnd->has_inserter) in print_operand_inserter()
1003 const int len = strlen (opnd->inserter); in print_operand_inserter()
1004 operand *opnd2 = opnd + 1; in print_operand_inserter()
1005 printf (" case %u:\n", (unsigned int)(opnd - operands)); in print_operand_inserter()
1006 opnd->processed = 1; in print_operand_inserter()
1012 && strncmp (opnd->inserter, opnd2->inserter, len) == 0) in print_operand_inserter()
1019 opnd->inserter); in print_operand_inserter()
1034 operand *opnd; in print_operand_extractor() local
1051 for (i = 0, opnd = operands; i < num; ++i, ++opnd) in print_operand_extractor()
1052 opnd->processed = 0; in print_operand_extractor()
1054 for (i = 0, opnd = operands; i < num; ++i, ++opnd) in print_operand_extractor()
1056 if (!opnd->processed && opnd->has_extractor) in print_operand_extractor()
1059 const int len = strlen (opnd->extractor); in print_operand_extractor()
1060 operand *opnd2 = opnd + 1; in print_operand_extractor()
1061 printf (" case %u:\n", (unsigned int)(opnd - operands)); in print_operand_extractor()
1062 opnd->processed = 1; in print_operand_extractor()
1068 && strncmp (opnd->extractor, opnd2->extractor, len) == 0) in print_operand_extractor()
1075 opnd->extractor); in print_operand_extractor()