/src/sys/arch/arm/iomd/ |
makemodes.awk | 34 # Once the file has been parsed the list of modes is examined to find modes 58 # Number of modes parsed and valid in the modes array. 117 modes[mode, 0] = $2; 125 modes[mode, 1] = $2; 133 modes[mode, 2] = $2; 141 modes[mode, 3] = $2; 149 modes[mode, 4] = $2; 157 modes[mode, 5] = $2 [all...] |
vidc20config.c | 303 struct videomode const *modes; local in function:vidcvideo_coldinit 332 modes = vidc_videomode_list; 335 modes = videomode_list; 340 vidc_currentmode.timings = modes[0]; 344 if (modes[i].flags & (VID_INTERLACE | VID_DBLSCAN)) 351 framerate = (modes[i].dot_clock * 1000 / 352 modes[i].htotal * 2 / modes[i].vtotal + 1) / 2; 353 if (modes[i].hdisplay == bootconfig.width + 1 354 && modes[i].vdisplay == bootconfig.height + [all...] |
/src/sys/dev/videomode/ |
pickmode.c | 112 * Sort modes by refresh rate, aspect ratio (*), then resolution. 113 * Preferred mode or largest mode is first in the list and other modes 120 sort_modes(struct videomode *modes, struct videomode **preferred, int nmodes) 134 if (*preferred != modes) { 135 swap_modes(*preferred, modes); 136 *preferred = modes; 147 if (modes[i].hdisplay > hbest) { 148 hbest = modes[i].hdisplay; 149 vbest = modes[i].vdisplay; 150 mtemp = &modes[i] [all...] |
/src/sys/dev/microcode/aic7xxx/ |
aic79xx.reg | 52 /* Register window Modes */ 336 modes M_CCHAN 345 modes M_CCHAN 354 modes M_CCHAN 364 modes M_CCHAN 408 modes M_DFF0, M_DFF1 428 modes M_CFG 443 modes M_DFF0, M_DFF1 459 modes M_DFF0, M_DFF1 468 modes M_DFF0, M_DFF [all...] |
/src/sys/external/isc/atheros_hal/dist/ar5312/ |
ar5312_power.c | 76 static const char* modes[] = { local in function:ar5312SetPowerMode 86 modes[ahp->ah_powerMode], modes[mode],
|
/src/bin/stty/ |
Makefile | 5 SRCS= cchar.c gfmt.c key.c modes.c print.c stty.c
|
modes.c | 1 /* $NetBSD: modes.c,v 1.18 2015/05/01 17:01:08 christos Exp $ */ 35 static char sccsid[] = "@(#)modes.c 8.3 (Berkeley) 4/2/94"; 37 __RCSID("$NetBSD: modes.c,v 1.18 2015/05/01 17:01:08 christos Exp $"); 50 struct modes { struct 65 const struct modes cmodes[] = { 95 const struct modes imodes[] = { 120 const struct modes lmodes[] = { 155 const struct modes omodes[] = { 176 modeset(const char *name, const struct modes *mp,
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_client_modeset.c | 129 list_for_each_entry(mode, &connector->modes, head) { 142 list_for_each_entry(mode, &connector->modes, head) { 156 list_for_each_entry(mode, &connector->modes, head) { 177 /* attempt to find a matching mode in the list of modes 185 list_for_each_entry(mode, &connector->modes, head) { 218 list_add(&mode->head, &connector->modes); 265 struct drm_display_mode **modes, 292 modes[i] = drm_connector_pick_cmdline_mode(connectors[i]); 293 if (!modes[i]) { 300 if (!drm_mode_match(modes[j], modes[i] 776 struct drm_display_mode **modes; local in function:drm_client_modeset_probe [all...] |
drm_edid.c | 84 /* Force reduced-blanking timings for detailed modes */ 102 int modes; member in struct:detailed_mode_closure 229 * This table is copied from xfree86/modes/xf86EdidModes.c. 588 * These more or less come from the DMT spec. The 720x400 modes are 590 * modes are old-school Mac modes. The EDID spec says the 1152x864@75 mode 594 * The DMT modes have been fact-checked; the rest are mild guesses. 1532 * HDMI 1.4 4k modes. Index using the VIC. 1843 * drm_add_override_edid_modes - add modes from override/firmware EDID 1846 * Add modes from the override/firmware EDID, if available. Only to be used fro 2737 int i, modes = 0; local in function:drm_dmt_modes_for_range 2772 int i, modes = 0; local in function:drm_gtf_modes_for_range 2800 int i, modes = 0; local in function:drm_cvt_modes_for_range 2881 int i, j, m, modes = 0; local in function:drm_est3_modes 2932 int i, modes = 0; local in function:add_established_modes 2991 int i, modes = 0; local in function:add_standard_modes 3020 int i, j, modes = 0; local in function:drm_cvt_modes 3492 int modes = 0; local in function:add_alternate_cea_modes 3606 int modes = 0, i; local in function:do_y420vdb_modes 3653 int i, modes = 0; local in function:do_cea_modes 3715 int modes = 0, i; local in function:add_hdmi_mandatory_stereo_modes 3767 int modes = 0; local in function:add_3d_struct_modes 3817 int modes = 0, offset = 0, i, multi_present = 0, multi_len; local in function:do_hdmi_vsdb_modes 4132 int modes = 0; local in function:add_cea_modes [all...] |
drm_probe_helper.c | 155 /* Only add a GTF mode if we find no matching probed modes */ 338 * drm_helper_probe_single_connector_modes - get complete set of display modes 340 * @maxX: max width for modes 341 * @maxY: max height for modes 344 * &drm_connector_helper_funcs try to detect all valid modes. Modes will first 346 * and the @maxX, @maxY parameters) and put into the normal modes list. 354 * 1. All modes currently on the connector's modes list are marked as stale 356 * 2. New modes are added to the connector's probed_modes list wit [all...] |
/src/sys/dev/scsipi/ |
stvar.h | 63 struct modes { struct 81 struct modes modes[4]; member in struct:quirkdata 128 struct modes modes[4]; /* plus more for each mode */ member in struct:st_softc 129 uint8_t modeflags[4]; /* flags for the modes */
|
/src/usr.sbin/lpr/lpd/ |
modes.c | 1 /* $NetBSD: modes.c,v 1.7 2006/10/22 21:09:47 christos Exp $ */ 35 static char sccsid[] = "@(#)modes.c 8.3 (Berkeley) 4/2/94"; 37 __RCSID("$NetBSD: modes.c,v 1.7 2006/10/22 21:09:47 christos Exp $"); 48 struct modes { struct 58 const struct modes cmodes[] = { 94 const struct modes imodes[] = { 130 const struct modes lmodes[] = { 182 const struct modes omodes[] = { 201 const struct modes *mp;
|
Makefile | 8 SRCS= lpd.c printjob.c recvjob.c lpdchar.c key.c modes.c ttcompat.c rcmd.c
|
/src/sys/external/isc/atheros_hal/dist/ar5210/ |
ar5210_power.c | 98 static const char* modes[] = { local in function:ar5210SetPowerMode 108 modes[ahp->ah_powerMode], modes[mode],
|
/src/sys/external/isc/atheros_hal/dist/ar5211/ |
ar5211_power.c | 100 static const char* modes[] = { local in function:ar5211SetPowerMode 110 modes[ahp->ah_powerMode], modes[mode],
|
/src/sys/external/isc/atheros_hal/dist/ar5416/ |
ar5416_power.c | 120 static const char* modes[] = { local in function:ar5416SetPowerMode 132 modes[ahp->ah_powerMode], modes[mode], setChip ? "set chip " : "");
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
armada-370-seagate-nas-4bay.dts | 92 num-modes = <4>; 93 modes-map = <NS_V2_LED_SATA 0 0 102 num-modes = <4>; 103 modes-map = <NS_V2_LED_SATA 0 0
|
bcm283x-rpi-lan7515.dtsi | 32 microchip,led-modes = <
|
/src/tests/sbin/ifconfig/ |
t_woptions.sh | 49 # Different 802.11 modes are not taken into account, and 163 atf_test_case modes 167 "802.11 modes does not panic (PR kern/45745)" 176 # the four 802.11 modes for non-802.11 devices. 178 modes="11a 11b 11g 11n" 188 for j in $modes; do 198 for j in $modes; do 218 atf_add_test_case modes
|
/src/sys/arch/atari/dev/ |
grfabs.c | 51 * List of available graphic modes 53 static MODES modes; variable in typeref:typename:MODES 94 * Initialize list of possible video modes. 102 LIST_INIT(&modes); 105 (*probe_fun)(&modes); 107 return ((modes.lh_first == NULL) ? 0 : 1); 193 dm = modes.lh_first;
|
/src/sys/external/isc/atheros_hal/dist/ar5212/ |
ar5212_power.c | 124 static const char* modes[] = { local in function:ar5212SetPowerMode 134 modes[ahp->ah_powerMode], modes[mode],
|
/src/sys/kern/ |
kern_ntptime.c | 268 if (ntv.modes != 0 && (error = kauth_authorize_system(l->l_cred, 286 int modes; local in function:ntp_adjtime1 298 modes = ntv->modes; 299 if (modes != 0) 302 if (modes & MOD_MAXERROR) 304 if (modes & MOD_ESTERROR) 306 if (modes & MOD_STATUS) { 317 if (modes & MOD_TIMECONST) { 325 if (modes & MOD_TAI) [all...] |
/src/usr.sbin/wsmoused/ |
config_lex.l | 60 MODE_PROPS button_[0-9]+_down|button_[0-9]+_up|device|fifo|lefthanded|modes|nodaemon|pidfile|slowdown_x|slowdown_y|ttystat|xconsole|xconsole_delay
|
/src/sbin/mknod/ |
mknod.c | 93 void *modes = 0; local in function:main 144 modes = setmode(optarg); 145 if (modes == NULL) 253 if (modes != NULL) 254 mode = getmode(modes, mode);
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/mediatek/ |
mt6358.dtsi | 28 regulator-allowed-modes = <0 1>; 38 regulator-allowed-modes = <0 1>; 47 regulator-allowed-modes = <0 1>; 57 regulator-allowed-modes = <0 1>; 67 regulator-allowed-modes = <0 1>; 76 regulator-allowed-modes = <0 1>; 95 regulator-allowed-modes = <0 1>;
|