Lines Matching refs:cont
584 int cont; in foldCreate() local
655 for (cont = 0; i + cont < gap->ga_len; ++cont) in foldCreate()
656 if (fp[cont].fd_top > end_rel) in foldCreate()
658 if (cont > 0 && ga_grow(&fold_ga, cont) == OK) in foldCreate()
667 if (end_rel < fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1) in foldCreate()
668 end_rel = fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1; in foldCreate()
670 mch_memmove(fold_ga.ga_data, fp, sizeof(fold_T) * cont); in foldCreate()
671 fold_ga.ga_len += cont; in foldCreate()
672 i += cont; in foldCreate()
676 for (j = 0; j < cont; ++j) in foldCreate()
683 gap->ga_len = gap->ga_len + 1 - cont; in foldCreate()