Lines Matching refs:drop
435 int drop;
453 /* Using this run, we can now drop smaller runs */
454 drop = 0;
457 /* Compute how many clusters we can drop */
458 while ((drop < alctx->rl_count)
459 && (alctx->rl[drop].length <= excess)) {
460 excess -= alctx->rl[drop].length;
461 drop++;
464 while (((k + drop) < alctx->rl_count)
465 && (alctx->rl[k + drop].length < count)) {
466 alctx->rl[k] = alctx->rl[k + drop];
471 if (drop > 1) {
472 while ((k + drop) < alctx->rl_count) {
473 alctx->rl[k + 1] = alctx->rl[k + drop];
477 alctx->rl_count -= (drop - 1);