Lines Matching refs:amt
3620 unsigned amt; in bc_vec_pushIndex() local
3629 amt = sizeof(idx); in bc_vec_pushIndex()
3633 amt--; in bc_vec_pushIndex()
3637 bc_vec_pushByte(v, (SMALL_INDEX_LIMIT - 1) + amt); in bc_vec_pushIndex()
5232 unsigned amt; in xc_program_index() local
5236 amt = *bytes++; in xc_program_index()
5237 if (amt < SMALL_INDEX_LIMIT) { in xc_program_index()
5239 return amt; in xc_program_index()
5241 amt -= (SMALL_INDEX_LIMIT - 1); // amt is 1 or more here in xc_program_index()
5242 *bgn += amt + 1; in xc_program_index()
5249 } while (--amt != 0); in xc_program_index()