Home
last modified time | relevance | path

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

/src/stand/efi/loader/
H A Dframebuffer.c739 char *maxres; in efi_get_max_resolution() local
744 maxres = getenv("efi_max_resolution"); in efi_get_max_resolution()
746 if (maxres == NULL) in efi_get_max_resolution()
751 if (efi_resolution_compare(res, maxres)) { in efi_get_max_resolution()
758 maxres = strdup(maxres); in efi_get_max_resolution()
759 if (maxres == NULL) in efi_get_max_resolution()
761 height_start = strchr(maxres, 'x'); in efi_get_max_resolution()
763 free(maxres); in efi_get_max_resolution()
766 width_start = maxres; in efi_get_max_resolution()
771 free(maxres); in efi_get_max_resolution()
/src/stand/i386/libi386/
H A Dvbe.c119 char *maxres; in vbe_get_max_resolution() local
124 maxres = getenv("vbe_max_resolution"); in vbe_get_max_resolution()
126 if (maxres == NULL) in vbe_get_max_resolution()
131 if (vbe_resolution_compare(res, maxres)) { in vbe_get_max_resolution()
138 maxres = strdup(maxres); in vbe_get_max_resolution()
139 if (maxres == NULL) in vbe_get_max_resolution()
141 height_start = strchr(maxres, 'x'); in vbe_get_max_resolution()
143 free(maxres); in vbe_get_max_resolution()
146 width_start = maxres; in vbe_get_max_resolution()
151 free(maxres); in vbe_get_max_resolution()
/src/contrib/mandoc/
H A Dmansearch.c95 size_t cur, i, maxres, outkey; in mansearch() local
105 cur = maxres = 0; in mansearch()
182 if (cur + 1 > maxres) { in mansearch()
183 maxres += 1024; in mansearch()
185 maxres, sizeof(**res)); in mansearch()