Lines Matching refs:count

400   unsigned int count;  in tic30_operand()  local
470 for (count = 1; count < strlen (token); count++) in tic30_operand()
473 ind_buffer[buffer_posn] = TOLOWER (*(token + count)); in tic30_operand()
475 if ((*(token + count - 1) == 'a' || *(token + count - 1) == 'A') in tic30_operand()
476 && (*(token + count) == 'r' || *(token + count) == 'R')) in tic30_operand()
486 if (*(token + count + 1) < '0' || *(token + count + 1) > '7') in tic30_operand()
492 ar_number = *(token + count + 1) - '0'; in tic30_operand()
494 count++; in tic30_operand()
497 if (*(token + count) == '(') in tic30_operand()
502 if (is_digit_char (*(token + count + 1))) in tic30_operand()
513 count++; in tic30_operand()
514 while (*(token + count) != ')') in tic30_operand()
516 if (!is_digit_char (*(token + count))) in tic30_operand()
522 disp[disp_posn++] = *(token + (count++)); in tic30_operand()
526 count--; in tic30_operand()
630 for (count = 0; count < strlen (token); count++) in tic30_operand()
631 if (*(token + count) == '.') in tic30_operand()
881 int count; in tic30_parallel_insn() local
885 for (count = 0; count < 2; count++) in tic30_parallel_insn()
888 for (i = 0; i < p_insn.operands[count]; i++) in tic30_parallel_insn()
890 if ((p_insn.operand_type[count][i]->op_type & in tic30_parallel_insn()
891 p_insn.tm->operand_types[count][i]) == 0) in tic30_parallel_insn()
894 ordinal_names[count], i + 1); in tic30_parallel_insn()
903 if ((p_insn.operand_type[count][i]->op_type & Rn) && i < 2) in tic30_parallel_insn()
905 else if ((p_insn.operand_type[count][i]->op_type & Indirect) in tic30_parallel_insn()
1425 unsigned int count; in md_assemble() local
1603 for (count = 0; count < insn.operands; count++) in md_assemble()
1605 if (insn.operand_type[count]->op_type & insn.tm->operand_types[count]) in md_assemble()
1607 debug ("Operand %d matches\n", count + 1); in md_assemble()
1631 as_bad (_("The %s operand doesn't match"), ordinal_names[count]); in md_assemble()