Searched refs:exclude_alloc (Results 1 - 3 of 3) sorted by relevance

/netbsd-6-1-5-RELEASE/gnu/dist/grep/lib/
H A Dexclude.c44 int exclude_alloc; member in struct:exclude
53 ex->exclude_alloc = 64;
54 ex->exclude = (char const **) xmalloc (ex->exclude_alloc * sizeof (char *));
75 if (ex->exclude_alloc <= ex->exclude_count)
77 ((ex->exclude_alloc *= 2)
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/
H A Dexclude.c92 size_t exclude_alloc; member in struct:exclude
103 ex->exclude_alloc = (1 << 6); /* This must be a power of 2. */
104 ex->exclude = (struct patopts *) xmalloc (ex->exclude_alloc
197 if (ex->exclude_alloc <= ex->exclude_count)
199 size_t s = 2 * ex->exclude_alloc;
202 ex->exclude_alloc = s;
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/diff/
H A Ddiff.c127 static int exclude_alloc, exclude_count;
144 if (exclude_alloc <= exclude_count)
146 (exclude_alloc == 0
147 ? xmalloc ((exclude_alloc = 64) * sizeof (*exclude))
148 : xrealloc (exclude, (exclude_alloc *= 2) * sizeof (*exclude)));
125 static int exclude_alloc, exclude_count; variable

Completed in 64 milliseconds