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

/freebsd-13-stable/stand/efi/loader/
H A Dframebuffer.c663 char *maxres; local
668 maxres = getenv("efi_max_resolution");
670 if (maxres == NULL)
675 if (efi_resolution_compare(res, maxres)) {
682 maxres = strdup(maxres);
683 if (maxres == NULL)
685 height_start = strchr(maxres, 'x');
687 free(maxres);
690 width_start = maxres;
[all...]
/freebsd-13-stable/stand/i386/libi386/
H A Dvbe.c117 char *maxres; local
122 maxres = getenv("vbe_max_resolution");
124 if (maxres == NULL)
129 if (vbe_resolution_compare(res, maxres)) {
136 maxres = strdup(maxres);
137 if (maxres == NULL)
139 height_start = strchr(maxres, 'x');
141 free(maxres);
144 width_start = maxres;
[all...]
/freebsd-13-stable/contrib/mandoc/
H A Dmansearch.c95 size_t cur, i, maxres, outkey; local
105 cur = maxres = 0;
182 if (cur + 1 > maxres) {
183 maxres += 1024;
185 maxres, sizeof(**res));

Completed in 108 milliseconds