OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:maxlines
(Results
1 - 2
of
2
) sorted by relevancy
/src/usr.bin/shuffle/
shuffle.c
109
size_t size, nlines = 0,
maxlines
= 128;
local in function:get_lines
110
char **lines = emalloc(sizeof(char *) *
maxlines
);
124
if (nlines >=
maxlines
) {
125
maxlines
*= 2;
126
lines = erealloc(lines, (sizeof(char *) *
maxlines
));
/src/usr.bin/sortinfo/
sortinfo.c
54
size_t
maxlines
;
member in struct:section
69
slist[nsections].
maxlines
= 20;
70
slist[nsections].lines = ecalloc(slist[nsections].
maxlines
,
78
if (s->nlines == s->
maxlines
) {
79
s->
maxlines
+= 20;
80
s->lines = erealloc(s->lines, s->
maxlines
* sizeof(*s->lines));
Completed in 13 milliseconds
Indexes created Fri Oct 03 02:09:57 GMT 2025