Home
last modified time | relevance | path

Searched refs:maxcount (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/
H A Dregcomp_study.c2386 SSize_t mincount, maxcount, minnext, deltanext, pos_before = 0; in Perl_study_chunk()
2406 maxcount = REG_INFTY; in Perl_study_chunk()
2452 maxcount = REG_INFTY; in Perl_study_chunk()
2470 maxcount = 1; in Perl_study_chunk()
2473 maxcount = ARG2i(scan); in Perl_study_chunk()
2511 if ((mincount > 1) || (maxcount > 1 && maxcount != REG_INFTY)) in Perl_study_chunk()
2558 && (next_is_eval || !(mincount == 0 && maxcount == 1)) in Perl_study_chunk()
2561 && maxcount <= REG_INFTY/3) /* Complement check for big in Perl_study_chunk()
2580 || (maxcount in Perl_study_chunk()
2479 SSize_t mincount, maxcount, minnext, deltanext, pos_before = 0; Perl_study_chunk() local
[all...]
/openbsd-src/usr.sbin/pkg_add/OpenBSD/
H A DPackageRepository.pm212 if (@$already >= $self->maxcount) {
215 while (@$already >= $self->maxcount) {
549 sub maxcount($) subroutine
839 sub maxcount($) subroutine
/openbsd-src/usr.sbin/pkg_add/OpenBSD/PackageRepository/
H A DPersistent.pm70 sub maxcount($) subroutine
/openbsd-src/gnu/gcc/libcpp/
H A Ddirectives.c1541 int maxcount; in destringize_and_run() local
1544 maxcount = 50; in destringize_and_run()
1545 toks = XNEWVEC (cpp_token, maxcount); in destringize_and_run()
1550 if (count == maxcount) in destringize_and_run()
1552 maxcount = maxcount * 3 / 2; in destringize_and_run()
1553 toks = XRESIZEVEC (cpp_token, toks, maxcount); in destringize_and_run()
/openbsd-src/regress/usr.bin/diff/
H A Dt9.1552 long count, maxcount, error;
554 maxcount = SCARG(uap, bufsize) / sizeof(struct statfs);
559 if (sfsp && count < maxcount &&
577 if (sfsp && count > maxcount)
578 *retval = maxcount;
H A Dt9.2659 size_t count, maxcount;
662 maxcount = SCARG(uap, bufsize) / sizeof(struct statfs);
669 if (sfsp && count < maxcount) {
701 if (sfsp && count > maxcount)
702 *retval = maxcount;
/openbsd-src/sys/kern/
H A Dvfs_syscalls.c676 size_t count, maxcount; in sys_getfsstat() local
679 maxcount = SCARG(uap, bufsize) / sizeof(struct statfs); in sys_getfsstat()
686 if (sfsp && count < maxcount) { in sys_getfsstat()
711 if (sfsp && count > maxcount) in sys_getfsstat()
712 *retval = maxcount; in sys_getfsstat()