Home
last modified time | relevance | path

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

/freebsd/stand/efi/loader/
H A Dframebuffer.c712 char *maxres; in efi_get_max_resolution() local
717 maxres = getenv("efi_max_resolution"); in efi_get_max_resolution()
719 if (maxres == NULL) in efi_get_max_resolution()
724 if (efi_resolution_compare(res, maxres)) { in efi_get_max_resolution()
731 maxres = strdup(maxres); in efi_get_max_resolution()
732 if (maxres == NULL) in efi_get_max_resolution()
734 height_start = strchr(maxres, 'x'); in efi_get_max_resolution()
736 free(maxres); in efi_get_max_resolution()
739 width_start = maxres; in efi_get_max_resolution()
744 free(maxres); in efi_get_max_resolution()
/freebsd/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()
/freebsd/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()