Home
last modified time | relevance | path

Searched refs:mt (Results 1 – 25 of 239) sorted by relevance

12345678910

/openbsd-src/sys/dev/hid/
H A Dhidmt.c110 hidmt_setup(struct device *self, struct hidmt *mt, void *desc, int dlen) in hidmt_setup() argument
120 mt->sc_device = self; in hidmt_setup()
121 mt->sc_rep_input_size = hid_report_size(desc, dlen, hid_input, in hidmt_setup()
122 mt->sc_rep_input); in hidmt_setup()
124 mt->sc_minx = mt->sc_miny = mt->sc_maxx = mt->sc_maxy = 0; in hidmt_setup()
126 capsize = hid_report_size(desc, dlen, hid_feature, mt->sc_rep_cap); in hidmt_setup()
129 if (mt->hidev_report_type_conv == NULL) in hidmt_setup()
132 if (mt->hidev_get_report(mt->sc_device, in hidmt_setup()
133 mt->hidev_report_type_conv(hid_feature), mt->sc_rep_cap, in hidmt_setup()
141 mt->sc_num_contacts = HIDMT_MAX_CONTACTS; in hidmt_setup()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dipa-prop.c73 ipa_methodlist_method_set (ipa_methodlist_p wl, struct cgraph_node *mt) in ipa_methodlist_method_set() argument
75 wl->method_p = mt; in ipa_methodlist_method_set()
110 ipa_add_method (ipa_methodlist_p * wl, struct cgraph_node *mt) in ipa_add_method() argument
115 ipa_methodlist_method_set (temp, mt); in ipa_add_method()
139 ipa_method_formal_count (struct cgraph_node *mt) in ipa_method_formal_count() argument
141 return IPA_NODE_REF (mt)->ipa_arg_num; in ipa_method_formal_count()
146 ipa_method_formal_count_set (struct cgraph_node *mt, int i) in ipa_method_formal_count_set() argument
148 IPA_NODE_REF (mt)->ipa_arg_num = i; in ipa_method_formal_count_set()
153 ipa_method_is_modified (struct cgraph_node *mt, int i) in ipa_method_is_modified() argument
155 return IPA_NODE_REF (mt)->ipa_mod[i]; in ipa_method_is_modified()
[all …]
H A Dipa-cp.c149 ipcp_method_orig_node (struct cgraph_node *mt) in ipcp_method_orig_node() argument
151 return IPA_NODE_REF (mt)->ipcp_orig_node; in ipcp_method_orig_node()
190 ipcp_method_get_scale (struct cgraph_node *mt) in ipcp_method_get_scale() argument
192 return IPA_NODE_REF (mt)->count_scale; in ipcp_method_get_scale()
295 ipcp_method_cval (struct cgraph_node *mt, int info_type) in ipcp_method_cval() argument
297 return &(IPA_NODE_REF (mt)->ipcp_cval[info_type]); in ipcp_method_cval()
304 ipcp_cval_compute (struct ipcp_formal *cval, struct cgraph_node *mt, in ipcp_cval_compute() argument
323 (mt, info_type->formal_id)); in ipcp_cval_compute()
327 (mt, info_type->formal_id)), in ipcp_cval_compute()
352 ipcp_formal_create (struct cgraph_node *mt) in ipcp_formal_create() argument
[all …]
/openbsd-src/regress/lib/libssl/handshake/
H A Dhandshake_table.c81 enum tls13_message_type mt; member
90 .mt = SERVER_HELLO_RETRY_REQUEST,
93 .mt = SERVER_HELLO,
99 .mt = CLIENT_HELLO_RETRY,
104 .mt = SERVER_HELLO,
109 .mt = SERVER_ENCRYPTED_EXTENSIONS,
114 .mt = SERVER_CERTIFICATE_REQUEST,
116 { .mt = SERVER_CERTIFICATE,
120 .mt = SERVER_FINISHED,
126 .mt = SERVER_CERTIFICATE,
[all …]
H A Dvalid_handshakes_terminate.c31 enum tls13_message_type mt = handshakes[i][0]; in main() local
33 if (mt == INVALID) in main()
39 mt = handshakes[i][j]; in main()
40 if (state_machine[mt].handshake_complete) { in main()
/openbsd-src/usr.bin/mandoc/
H A Dman_term.c50 struct mtermp *mt, \
151 struct mtermp mt; in terminal_man() local
161 memset(&mt, 0, sizeof(mt)); in terminal_man()
162 mt.lmargin[mt.lmargincur] = term_len(p, 7); in terminal_man()
163 mt.offset = term_len(p, p->defindent); in terminal_man()
164 mt.pardist = 1; in terminal_man()
183 print_man_nodelist(p, &mt, n, man); in terminal_man()
189 print_man_nodelist(p, &mt, n, man); in terminal_man()
262 mt->pardist = 1; in pre_PD()
267 mt->pardist = term_vspan(p, &su); in pre_PD()
[all …]
/openbsd-src/usr.sbin/amd/amq/
H A Damq.c72 show_mti(amq_mount_tree *mt, enum show_opt e, int *mwid, int *dwid, in show_mti() argument
77 int mw = strlen(mt->mt_mountinfo); in show_mti()
78 int dw = strlen(mt->mt_directory); in show_mti()
79 int tw = strlen(mt->mt_type); in show_mti()
91 time_t t = mt->mt_mounttime; in show_mti()
97 *dwid, *dwid, *mt->mt_directory ? mt->mt_directory : "/", in show_mti()
98 *twid, *twid, mt->mt_type, *mwid, *mwid, in show_mti()
99 mt->mt_mountinfo, mt->mt_mountpoint, mt->mt_mountuid, in show_mti()
100 mt->mt_getattr, mt->mt_lookup, mt->mt_readdir, in show_mti()
101 mt->mt_readlink, mt->mt_statfs, in show_mti()
[all …]
/openbsd-src/sys/dev/wscons/
H A Dwsmouse.c698 struct mt_state *mt = &input->mt; in wsmouse_mtstate()
702 if (slot < 0 || slot >= mt->num_slots) in wsmouse_mtstate()
706 mt->frame |= bit; in wsmouse_mtstate()
708 mts = &mt->slots[slot]; in wsmouse_mtstate()
710 set_x(&mts->pos, x, mt->sync + MTS_X, bit); in wsmouse_mtstate()
711 set_y(&mts->pos, y, mt->sync + MTS_Y, bit); in wsmouse_mtstate()
714 if ((mt->touches & bit) == (mt->sync[MTS_TOUCH] & bit)) in wsmouse_mtstate()
720 mt in wsmouse_mtstate()
701 struct mt_state *mt = &input->mt; wsmouse_mtstate() local
875 struct mt_state *mt = &input->mt; wsmouse_ptr_ctrl() local
929 struct mt_state *mt = &input->mt; wsmouse_mt_convert() local
1202 struct mt_state *mt = &input->mt; wsmouse_id_to_slot() local
1319 struct mt_state *mt = &input->mt; wsmouse_mtframe() local
[all...]
H A Dwstpad.c424 slot = ffs(input->mt.touches & ~(input->mt.ptr | tp->ignore)); in get_2nd_touch()
532 } else if (tp->contacts != 3 || (tp->ignore == input->mt.ptr)) { in wstpad_f2scroll()
655 if (input->mt.ptr_mask != 0) in wstpad_mtbtn_contacts()
731 lifted = (input->mt.sync[MTS_TOUCH] & ~input->mt.touches); in wstpad_tap_touch()
799 (input->mt.touches & input->mt.sync[MTS_TOUCH]))) { in wstpad_tap()
809 if ((slot = ffs(input->mt.ptr_mask) - 1) >= 0 in wstpad_tap()
1038 touches = input->mt.sync[MTS_TOUCH] & ~input->mt.touches; in clear_touchstates()
1052 touches = input->mt.touches & input->mt.sync[MTS_TOUCH]; in wstpad_mt_inputs()
1066 touches = input->mt.touches & input->mt.frame; in wstpad_mt_inputs()
1073 inactive = input->mt.touches & ~tp->mtcycle; in wstpad_mt_inputs()
[all …]
/openbsd-src/sys/dev/i2c/
H A Dimt.c146 struct hidmt *mt = &sc->sc_mt; in imt_attach() local
157 memset(mt, 0, sizeof(sc->sc_mt)); in imt_attach()
160 mt->sc_flags = HIDMT_REVY; in imt_attach()
162 mt->hidev_report_type_conv = ihidev_report_type_conv; in imt_attach()
163 mt->hidev_get_report = imt_hidev_get_report; in imt_attach()
164 mt->hidev_set_report = imt_hidev_set_report; in imt_attach()
165 mt->sc_rep_input = sc->sc_rep_input; in imt_attach()
166 mt->sc_rep_config = sc->sc_rep_config; in imt_attach()
167 mt->sc_rep_cap = sc->sc_rep_cap; in imt_attach()
169 if (hidmt_setup(self, mt, desc, size) != 0) in imt_attach()
[all …]
/openbsd-src/sys/dev/usb/
H A Dumt.c151 struct hidmt *mt = &sc->sc_mt; in umt_attach() local
169 memset(mt, 0, sizeof(sc->sc_mt)); in umt_attach()
172 mt->sc_flags = HIDMT_REVY; in umt_attach()
174 mt->hidev_report_type_conv = uhidev_report_type_conv; in umt_attach()
175 mt->hidev_get_report = umt_hidev_get_report; in umt_attach()
176 mt->hidev_set_report = umt_hidev_set_report; in umt_attach()
177 mt->sc_rep_input = sc->sc_rep_input; in umt_attach()
178 mt->sc_rep_config = sc->sc_rep_config; in umt_attach()
179 mt->sc_rep_cap = sc->sc_rep_cap; in umt_attach()
181 if (hidmt_setup(self, mt, desc, size) != 0) in umt_attach()
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/I18N-LangTags/t/
H A D10_http.t16 …lingon x-klingon en-gb en-us mt-mt mt ja ] EN-au, JA;q=0.14, i-klingon;q=0.83, en-gb;q=0.71, en-u…
17 …klingon en-gb en-us mt-mt mt tli ja ] EN-au, tli;q=0.201, JA;q=0.14, i-klingon;q=0.83, en-gb;q=0.…
20 [ en-au en en-gb en-us mt-mt mt ja ] EN-au, JA;q=0.14, en-gb;q=0.71, en-us;q=0.57, mt-mt;q=0.43, m…
H A D80_all_env.t30 is(scalar I18N::LangTags::Detect::detect(), "eu-mt",
32 is_deeply([I18N::LangTags::Detect::detect()], ["eu-mt"], $what);
38 foreach(['eu-MT', "eu-mt"],
40 'x-plorp', 'i-plorp', 'zaz', 'eu-mt', 'i-klung', 'x-klung'],
42 'x-plorp', 'i-plorp', 'zaz', 'eu-mt', 'i-klung', 'x-klung'],
/openbsd-src/usr.sbin/amd/amd/
H A Dmapc.c224 map_type *mt; in mapc_showtypes() local
227 for (mt = maptypes; mt < maptypes+sizeof(maptypes)/sizeof(maptypes[0]); mt++) { in mapc_showtypes()
228 fprintf(fp, "%s%s", sep, mt->name); in mapc_showtypes()
381 map_type *mt; in mapc_create() local
387 for (mt = maptypes; mt < maptypes+sizeof(maptypes)/sizeof(maptypes[0]); mt++) in mapc_create()
388 if ((*mt->init)(map, &modify) == 0) in mapc_create()
396 alloc = mt->def_alloc; in mapc_create()
411 if (mt->reload == error_reload) { in mapc_create()
412 …plog(XLOG_WARNING, "Map type \"%s\" does not support cache type \"all\"; using \"inc\"", mt->name); in mapc_create()
417 if (mt->reload == error_reload) { in mapc_create()
[all …]
/openbsd-src/gnu/usr.bin/binutils/config/
H A DChangeLog60 mh-necv4, mh-sco, mh-solaris, mh-sysv4, mh-sysv5, mt-v810: Simplify.
68 * mt-aix43: Delete.
109 * mt-armpic: Delete.
110 * mt-elfalphapic: Delete.
111 * mt-i370pic: Delete.
112 * mt-ia64pic: Delete.
113 * mt-m68kpic: Delete.
114 * mt-papic: Delete.
115 * mt-ppcpic: Delete.
116 * mt-s390pic: Delete.
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/config/
H A DChangeLog25 * mt-ppc-aix: Delete.
29 * mt-ppc-aix, mh-ppc-aix: New.
49 * mt-gnu (CXXFLAGS): Include SYSROOT_CFLAGS_FOR_TARGET.
140 * mt-linux: Rename to ...
141 * mt-gnu: ... this.
230 mh-necv4, mh-sco, mh-solaris, mh-sysv4, mh-sysv5, mt-v810: Simplify.
238 * mt-aix43: Delete.
279 * mt-armpic: Delete.
280 * mt-elfalphapic: Delete.
281 * mt-i370pic: Delete.
[all …]
/openbsd-src/usr.bin/vi/common/
H A Dmsg.c39 msgq(SCR *sp, mtype_t mt, const char *fmt, ...) in msgq() argument
56 if (mt == M_BERR) in msgq()
57 mt = M_ERR; in msgq()
58 else if (mt == M_VINFO) in msgq()
59 mt = M_INFO; in msgq()
62 switch (mt) { in msgq()
68 mt = M_ERR; in msgq()
73 mt = M_INFO; in msgq()
117 if (mt == M_SYSERR) { in msgq()
131 if ((mt == M_ERR || mt == M_SYSERR) && in msgq()
[all …]
/openbsd-src/gnu/gcc/config/
H A DChangeLog93 * mt-ppc-aix: Delete.
97 * mt-ppc-aix, mh-ppc-aix: New.
117 * mt-gnu (CXXFLAGS): Include SYSROOT_CFLAGS_FOR_TARGET.
208 * mt-linux: Rename to ...
209 * mt-gnu: ... this.
298 mh-necv4, mh-sco, mh-solaris, mh-sysv4, mh-sysv5, mt-v810: Simplify.
306 * mt-aix43: Delete.
347 * mt-armpic: Delete.
348 * mt-elfalphapic: Delete.
349 * mt-i370pic: Delete.
[all …]
/openbsd-src/bin/mt/
H A Dmt.c267 struct tape_desc *mt; in status() local
269 for (mt = tapes;; mt++) { in status()
270 if (mt->t_type == 0) { in status()
275 if (mt->t_type == bp->mt_type) in status()
278 (void)printf("%s tape drive, residual=%d\n", mt->t_name, bp->mt_resid); in status()
279 printreg("ds", bp->mt_dsreg, mt->t_dsbits); in status()
280 printreg("\ner", bp->mt_erreg, mt->t_erbits); in status()
H A DMakefile4 PROG= mt
5 SRCS= mt.c mtrmt.c
9 LINKS= ${BINDIR}/mt ${BINDIR}/eject
/openbsd-src/distrib/special/mt/
H A DMakefile3 PROG= mt
4 SRCS= mt.c
8 .PATH: ${.CURDIR}/../../../bin/mt
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/llvm/tools/llvm-mt/
H A DBUILD.gn5 visibility = [ ":llvm-mt" ]
9 driver_executable("llvm-mt") {
16 sources = [ "llvm-mt.cpp" ]
/openbsd-src/gnu/gcc/gcc/config/mt/
H A Dt-mt28 # LIB1ASMSRC = mt/lib1funcs.asm
31 LIB2FUNCS_EXTRA = $(srcdir)/config/mt/lib2extra-funcs.c
52 $(T)crti.o: $(srcdir)/config/mt/crti.asm $(GCC_PASSES)
54 -c -o $(T)crti.o -x assembler $(srcdir)/config/mt/crti.asm
56 $(T)crtn.o: $(srcdir)/config/mt/crtn.asm $(GCC_PASSES)
58 -c -o $(T)crtn.o -x assembler $(srcdir)/config/mt/crtn.asm
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/po/
H A DPOTFILES.in108 mt-asm.c
109 mt-desc.c
110 mt-desc.h
111 mt-dis.c
112 mt-ibld.c
113 mt-opc.c
114 mt-opc.h
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A DMakefile.am42 mt-desc.h mt-opc.h \
143 mt-asm.c \
144 mt-desc.c \
145 mt-dis.c \
146 mt-ibld.c \
147 mt-opc.c \
275 mt-asm.lo \
276 mt-desc.lo \
277 mt-dis.lo \
278 mt-ibld.lo \
[all …]

12345678910