Home
last modified time | relevance | path

Searched refs:modes (Results 1 – 25 of 182) sorted by relevance

12345678

/dragonfly/usr.bin/window/
HDtth29.c61 int modes = '0'; in h29_setmodes() local
64 modes += 0x01; in h29_setmodes()
66 modes += 0x02; in h29_setmodes()
68 modes += 0x04; in h29_setmodes()
70 modes += 0x08; in h29_setmodes()
72 modes += 0x10; in h29_setmodes()
74 ttputc(modes); in h29_setmodes()
/dragonfly/contrib/gcc-4.7/gcc/
HDmachmode.def2 machine modes used in the GNU compiler.
61 This file defines only those modes which are of use on almost all
62 machines. Other modes can be defined in the target-specific
63 mode definition file, config/ARCH/ARCH-modes.def.
66 other modes must appear after the modes they refer to. However,
67 statements which do not refer to other modes may appear in any
122 to FORMAT. Use in an ARCH-modes.def to reset the format
123 of one of the float modes defined in this file.
138 For all modes presently declared in class CLASS, construct
139 corresponding vector modes having width WIDTH. Modes whose
[all …]
HDread-rtl.c125 static struct iterator_group modes, codes; variable
242 return MAX_MACHINE_MODE + htab_elements (modes.iterators) + mv->number; in mode_attr_index()
259 offset = MAX_MACHINE_MODE + htab_elements (modes.iterators); in apply_mode_maps()
566 modes.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0); in initialize_iterators()
567 modes.iterators = htab_create (13, leading_string_hash, in initialize_iterators()
569 modes.num_builtins = MAX_MACHINE_MODE; in initialize_iterators()
570 modes.find_builtin = find_mode; in initialize_iterators()
571 modes.uses_iterator_p = uses_mode_iterator_p; in initialize_iterators()
572 modes.apply_iterator = apply_mode_iterator; in initialize_iterators()
582 lower = add_mapping (&modes, modes.attrs, "mode"); in initialize_iterators()
[all …]
HDgenmodes.c78 static struct mode_data *modes[MAX_MODE_CLASS]; variable
176 m->next = modes[cl]; in new_mode()
177 modes[cl] = m; in new_mode()
203 for (M = modes[C]; M; M = M->next)
436 for (m = modes[cl]; m; m = m->next) in make_complex_modes()
495 for (m = modes[cl]; m; m = m->next) in make_vector_modes()
803 for (prev = 0, m = modes[c]; m; m = next) in calc_wider_mode()
812 modes[c] = prev; in calc_wider_mode()
816 if (!modes[c]) in calc_wider_mode()
819 for (i = 0, m = modes[c]; m; i++, m = m->next) in calc_wider_mode()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
HDmachmode.def2 machine modes used in the GNU compiler.
60 This file defines only those modes which are of use on almost all
61 machines. Other modes can be defined in the target-specific
62 mode definition file, config/ARCH/ARCH-modes.def.
65 other modes must appear after the modes they refer to. However,
66 statements which do not refer to other modes may appear in any
121 to FORMAT. Use in an ARCH-modes.def to reset the format
122 of one of the float modes defined in this file.
137 For all modes presently declared in class CLASS, construct
138 corresponding vector modes having width WIDTH. Modes whose
[all …]
HDgenmodes.c82 static struct mode_data *modes[MAX_MODE_CLASS]; variable
182 m->next = modes[cl]; in new_mode()
183 modes[cl] = m; in new_mode()
209 for (M = modes[C]; M; M = M->next)
445 for (m = modes[cl]; m; m = m->next) in make_complex_modes()
507 for (m = modes[cl]; m; m = m->next) in make_vector_modes()
908 for (prev = 0, m = modes[c]; m; m = next) in calc_wider_mode()
917 modes[c] = prev; in calc_wider_mode()
921 if (!modes[c]) in calc_wider_mode()
924 for (i = 0, m = modes[c]; m; i++, m = m->next) in calc_wider_mode()
[all …]
/dragonfly/sys/kern/
HDkern_ntptime.c286 int modes; /* mode bits from structure */ in sys_ntp_adjtime() local
302 modes = ntv.modes; in sys_ntp_adjtime()
303 if (modes) in sys_ntp_adjtime()
310 if (modes & MOD_MAXERROR) in sys_ntp_adjtime()
312 if (modes & MOD_ESTERROR) in sys_ntp_adjtime()
314 if (modes & MOD_STATUS) { in sys_ntp_adjtime()
325 if (modes & MOD_TIMECONST) { in sys_ntp_adjtime()
333 if (modes & MOD_TAI) { in sys_ntp_adjtime()
338 if (modes & MOD_PPSMAX) { in sys_ntp_adjtime()
347 if (modes & MOD_NANO) in sys_ntp_adjtime()
[all …]
/dragonfly/contrib/wpa_supplicant/src/drivers/
HDdriver_nl80211_capa.c1297 struct hostapd_hw_modes *modes; member
1656 mode = os_realloc_array(phy_info->modes, in phy_info_band()
1663 phy_info->modes = mode; in phy_info_band()
1665 mode = &phy_info->modes[*(phy_info->num_modes)]; in phy_info_band()
1686 mode = &phy_info->modes[*(phy_info->num_modes) - 1]; in phy_info_band()
1748 wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes, in wpa_driver_nl80211_postprocess_modes() argument
1757 if (!modes[m].num_channels) in wpa_driver_nl80211_postprocess_modes()
1759 if (modes[m].channels[0].freq < 4000) { in wpa_driver_nl80211_postprocess_modes()
1760 modes[m].mode = HOSTAPD_MODE_IEEE80211B; in wpa_driver_nl80211_postprocess_modes()
1761 for (i = 0; i < modes[m].num_rates; i++) { in wpa_driver_nl80211_postprocess_modes()
[all …]
/dragonfly/usr.sbin/ppp/
HDdefs.c97 } modes[] = { variable
114 for (m = 0; modes[m].mode; m++) in mode2Nam()
115 if (modes[m].mode == mode) in mode2Nam()
116 return modes[m].name; in mode2Nam()
128 for (m = 0; modes[m].mode; m++) in Nam2mode()
129 if (!strncasecmp(name, modes[m].name, len)) { in Nam2mode()
130 if (modes[m].name[len] == '\0') in Nam2mode()
131 return modes[m].mode; in Nam2mode()
137 return got == -1 ? 0 : modes[got].mode; in Nam2mode()
/dragonfly/gnu/usr.bin/cc80/cc_tools/tools/
HDMakefile19 min-insn-modes.no \
33 genprogerr= $(genprogmd) genrtl modes gtype hooks cfn-macros match
44 ${BUILD_RTL}: tm.h insn-modes.h insn-modes-inline.h gtype-desc.h insn-constants.h
89 read-md.no: insn-modes.h insn-modes-inline.h
90 gencfn-macros.no: insn-modes.h gtype-desc.h
119 insn-modes.h: genmodes.nx _MIC
121 insn-modes-inline.h: genmodes.nx _MIC
135 min-insn-modes.c: genmodes.nx _MIC
150 insn-modes.c: genmodes.nx _PL
205 tree-check.h genrtl.h insn-modes.h insn-modes-inline.h \
[all …]
/dragonfly/test/sysperf/
HDipitest21 set modes = "`sysctl -n machdep.mwait.CX.supported`"
23 set modes = "$argv"
33 echo "Testing $modes"
38 foreach mode ( $modes )
/dragonfly/tools/tools/ath/athrd/
HDathrd.c1029 int modes = 0; in main() local
1093 modes |= HAL_MODE_11A; in main()
1096 modes |= HAL_MODE_11B; in main()
1099 modes |= HAL_MODE_11G; in main()
1102 modes |= HAL_MODE_HT20; in main()
1105 modes |= HAL_MODE_HT40; in main()
1108 modes |= HAL_MODE_HT; in main()
1111 modes |= HAL_MODE_TURBO | HAL_MODE_108G; in main()
1169 if (modes == 0) { in main()
1171 modes = HAL_MODE_11A | HAL_MODE_11B | in main()
[all …]
/dragonfly/usr.sbin/lpr/lpd/
HDmodes.c40 struct modes { struct
50 struct modes cmodes[] = { argument
92 struct modes imodes[] = {
128 struct modes lmodes[] = {
180 struct modes omodes[] = {
199 struct modes *mp; in msearch()
/dragonfly/sys/dev/drm/
HDdrm_fb_helper.c2018 list_for_each_entry(mode, &fb_connector->connector->modes, head) { in drm_has_preferred_mode()
2052 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) { in drm_pick_cmdline_mode()
2081 list_add(&mode->head, &fb_helper_conn->connector->modes); in drm_pick_cmdline_mode()
2127 struct drm_display_mode **modes, in drm_target_cloned() argument
2156 modes[i] = drm_pick_cmdline_mode(fb_helper_conn); in drm_target_cloned()
2157 if (!modes[i]) { in drm_target_cloned()
2164 if (!drm_mode_equal(modes[j], modes[i])) in drm_target_cloned()
2183 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) { in drm_target_cloned()
2185 modes[i] = mode; in drm_target_cloned()
2187 if (!modes[i]) in drm_target_cloned()
[all …]
HDdrm_edid.c98 int modes; member
2397 int i, modes = 0; in drm_dmt_modes_for_range() local
2407 modes++; in drm_dmt_modes_for_range()
2412 return modes; in drm_dmt_modes_for_range()
2432 int i, modes = 0; in drm_gtf_modes_for_range() local
2440 return modes; in drm_gtf_modes_for_range()
2450 modes++; in drm_gtf_modes_for_range()
2453 return modes; in drm_gtf_modes_for_range()
2460 int i, modes = 0; in drm_cvt_modes_for_range() local
2469 return modes; in drm_cvt_modes_for_range()
[all …]
/dragonfly/bin/stty/
HDmodes.c40 struct modes { struct
50 static struct modes cmodes[] = { argument
92 static struct modes imodes[] = {
128 static struct modes lmodes[] = {
180 static struct modes omodes[] = {
207 struct modes *mp; in msearch()
/dragonfly/gnu/usr.bin/cc47/cc_tools/tools/
HDMakefile14 min-insn-modes.no \
21 ${BUILD_RTL}: tm.h insn-modes.h gtype-desc.h insn-constants.h
26 genprogerr = $(genprogmd) genrtl modes gtype hooks
100 insn-modes.c: genmodes.nx _PL
101 insn-modes.h: genmodes.nx _MIC
103 min-insn-modes.c: genmodes.nx _MIC
134 genrtl.c genrtl.h insn-modes.c insn-modes.h min-insn-modes.c \
/dragonfly/gnu/usr.bin/cc80/support-libs/liblto_plugin/
HDb-header-vars18 …h x86-tune.def target.h target.def target-hooks-macros.h target-insns.def insn-modes.h insn-codes.h
26 …-hooks-def.h tree.h tree-core.h coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn…
27 CORETYPES_H=coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn-modes-inline.h machm…
28 RTL_BASE_H=coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn-modes-inline.h machmo…
30 RTL_H=coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn-modes-inline.h machmode.h …
34 TREE_CORE_H=tree-core.h coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn-modes-in…
35 TREE_H=tree.h tree-core.h coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn-modes-…
49 …=ipa-utils.h tree.h tree-core.h coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn…
51 …statistics.h tree.h tree-core.h coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn…
59 …c-common.def tree.h tree-core.h coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h insn…
[all …]
/dragonfly/sbin/jscan/
HDdump_mirror.c346 jattr->modes = buf_to_int64(buf, recsize); in dump_mirror_payload()
430 if (jattr->modes != (mode_t)-1) in dump_mirror_rebuild_redo()
431 chmod(jattr->pathref, jattr->modes); in dump_mirror_rebuild_redo()
459 if (jattr->path1 && jattr->modes != (mode_t)-1) { in dump_mirror_rebuild_redo()
460 if ((fd = open(jattr->path1, O_CREAT, jattr->modes)) >= 0) { in dump_mirror_rebuild_redo()
487 if (jattr->path1 && jattr->modes != (mode_t)-1) { in dump_mirror_rebuild_redo()
488 mkdir(jattr->path1, jattr->modes); in dump_mirror_rebuild_redo()
581 if (jattr->path1 && jattr->modes != (mode_t)-1) { in dump_mirror_rebuild_undo()
582 mkdir(jattr->path1, jattr->modes); in dump_mirror_rebuild_undo()
658 if (jattr->modes != (mode_t)-1) in dosetattr()
[all …]
/dragonfly/sys/dev/drm/i915/
HDintel_fbdev.c350 struct drm_display_mode **modes, in intel_fb_initial_config() argument
443 modes[i] = drm_pick_cmdline_mode(fb_conn); in intel_fb_initial_config()
446 if (!modes[i]) { in intel_fb_initial_config()
449 modes[i] = drm_has_preferred_mode(fb_conn, width, in intel_fb_initial_config()
454 if (!modes[i] && !list_empty(&connector->modes)) { in intel_fb_initial_config()
457 modes[i] = list_first_entry(&connector->modes, in intel_fb_initial_config()
463 if (!modes[i]) { in intel_fb_initial_config()
479 modes[i] = &connector->state->crtc->mode; in intel_fb_initial_config()
487 modes[i]->hdisplay, modes[i]->vdisplay, in intel_fb_initial_config()
488 modes[i]->flags & DRM_MODE_FLAG_INTERLACE ? "i" :""); in intel_fb_initial_config()
/dragonfly/contrib/gcc-8.0/gcc/config/i386/
HDi386-modes.def20 /* The x86_64 ABI specifies both XF and TF modes.
37 /* Add any extra modes needed to represent the condition code.
39 For the i386, we need separate modes when floating-point
78 /* Vector modes. Note that VEC_CONCAT patterns require vector
107 /* Keep the OI and XI modes from confusing the compiler into thinking
108 that these modes could actually be used for computation. They are
112 /* The symbol Pmode stands for one of the above machine modes (usually SImode).
/dragonfly/sys/dev/netif/ath/ath_hal/ar5312/
HDar5312_power.c75 static const char* modes[] = { in ar5312SetPowerMode() local
85 modes[ah->ah_powerMode], modes[mode], in ar5312SetPowerMode()
/dragonfly/sys/dev/video/fb/pcx/
HDsplash_pcx.c70 static int modes[] = { in pcx_start() local
91 for (i = 0; modes[i] >= 0; ++i) { in pcx_start()
92 if (get_mode_info(adp, modes[i], &info) != 0) in pcx_start()
100 modes[i], in pcx_start()
110 splash_mode = modes[i]; in pcx_start()
/dragonfly/contrib/gdb-7/bfd/
HDbfdio.c87 real_fopen (const char *filename, const char *modes) in real_fopen() argument
96 vms_attr = strchr (modes, ','); in real_fopen()
100 return close_on_exec (fopen (filename, modes)); in real_fopen()
105 size_t modes_len = strlen (modes) + 1; in real_fopen()
110 memcpy (attrs, modes, modes_len); in real_fopen()
122 return close_on_exec (fopen64 (filename, modes)); in real_fopen()
124 return close_on_exec (fopen (filename, modes)); in real_fopen()
/dragonfly/contrib/binutils-2.27/bfd/
HDbfdio.c85 real_fopen (const char *filename, const char *modes) in real_fopen() argument
94 vms_attr = strchr (modes, ','); in real_fopen()
98 return close_on_exec (fopen (filename, modes)); in real_fopen()
103 size_t modes_len = strlen (modes) + 1; in real_fopen()
108 memcpy (attrs, modes, modes_len); in real_fopen()
120 return close_on_exec (fopen64 (filename, modes)); in real_fopen()
122 return close_on_exec (fopen (filename, modes)); in real_fopen()

12345678