Home
last modified time | relevance | path

Searched defs:m (Results 1 – 25 of 1345) sorted by relevance

12345678910>>...54

/dragonfly/contrib/cvs-1.12/lib/
H A Dstat-macros.h52 # define S_ISBLK(m) 0 argument
60 # define S_ISCHR(m) 0 argument
68 # define S_ISDIR(m) 0 argument
76 # define S_ISDOOR(m) 0 argument
84 # define S_ISFIFO(m) 0 argument
92 # define S_ISLNK(m) 0 argument
101 # define S_ISMPB(m) 0 argument
102 # define S_ISMPC(m) 0 argument
110 # define S_ISNAM(m) 0 argument
118 # define S_ISNWK(m) 0 argument
[all …]
/dragonfly/sys/vm/
H A Dvm_page.c109 vm_page_t m; member
242 vm_page_t m; in vm_add_new_page() local
340 vm_page_t m; in vm_page_startup() local
524 vm_page_t m; in vm_numa_organize() local
637 vm_page_t m; in vm_numa_organize_finalize() local
753 vm_page_t m; in vm_page_startup_finish() local
1605 vm_page_t m; in vm_page_hash_get() local
1734 vm_page_t m; in vm_page_lookup() local
1755 vm_page_t m; in VM_PAGE_DEBUG_EXT() local
1811 vm_page_t m; in VM_PAGE_DEBUG_EXT() local
[all …]
H A Dvm_page2.h396 vm_page_spin_lock(vm_page_t m) in vm_page_spin_lock()
403 vm_page_spin_unlock(vm_page_t m) in vm_page_spin_unlock()
414 vm_page_wire_quick(vm_page_t m) in vm_page_wire_quick()
429 vm_page_unwire_quick(vm_page_t m) in vm_page_unwire_quick()
467 vm_page_flash(vm_page_t m) in vm_page_flash()
480 vm_page_sbusy_hold(vm_page_t m) in vm_page_sbusy_hold()
486 vm_page_sbusy_drop(vm_page_t m) in vm_page_sbusy_drop()
540 vm_page_zero_fill(vm_page_t m) in vm_page_zero_fill()
562 vm_page_free(vm_page_t m) in vm_page_free()
572 vm_page_free_zero(vm_page_t m) in vm_page_free_zero()
[all …]
/dragonfly/contrib/gdb-7/gdb/common/
H A Dgdb_stat.h26 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) argument
29 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) argument
32 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) argument
35 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) argument
38 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) argument
41 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) argument
44 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) argument
47 #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB) argument
48 #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC) argument
51 #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK) argument
/dragonfly/lib/libthread_xu/thread/
H A Dthr_mutex.c73 #define MUTEX_INIT_LINK(m) argument
74 #define MUTEX_ASSERT_IS_OWNED(m) argument
75 #define MUTEX_ASSERT_NOT_OWNED(m) argument
80 #define MUTEX_DESTROY(m) do { \ argument
283 pthread_mutex_t m; in _mutex_fork() local
293 pthread_mutex_t m; in _pthread_mutex_destroy() local
346 pthread_mutex_t m; in mutex_trylock_common() local
410 pthread_mutex_t m; in mutex_lock_common() local
646 pthread_mutex_t m; in mutex_unlock_common() local
736 pthread_mutex_t m; in _mutex_cv_unlock() local
[all …]
/dragonfly/sys/netbt/
H A Dhci_event.c161 hci_event(struct mbuf *m, struct hci_unit *unit) in hci_event()
239 hci_event_command_status(struct hci_unit *unit, struct mbuf *m) in hci_event_command_status()
294 hci_event_command_compl(struct hci_unit *unit, struct mbuf *m) in hci_event_command_compl()
478 hci_event_rssi_result(struct hci_unit *unit, struct mbuf *m) in hci_event_rssi_result()
517 hci_event_con_compl(struct hci_unit *unit, struct mbuf *m) in hci_event_con_compl()
615 hci_event_discon_compl(struct hci_unit *unit, struct mbuf *m) in hci_event_discon_compl()
641 hci_event_con_req(struct hci_unit *unit, struct mbuf *m) in hci_event_con_req()
690 hci_event_auth_compl(struct hci_unit *unit, struct mbuf *m) in hci_event_auth_compl()
845 hci_cmd_read_bdaddr(struct hci_unit *unit, struct mbuf *m) in hci_cmd_read_bdaddr()
992 hci_cmd_read_local_ver(struct hci_unit *unit, struct mbuf *m) in hci_cmd_read_local_ver()
[all …]
H A Dhci_unit.c287 struct mbuf *m; in hci_send_cmd() local
332 struct mbuf *m; in hci_intr() local
423 hci_input_event(struct hci_unit *unit, struct mbuf *m) in hci_input_event()
446 hci_input_acl(struct hci_unit *unit, struct mbuf *m) in hci_input_acl()
468 hci_input_sco(struct hci_unit *unit, struct mbuf *m) in hci_input_sco()
490 hci_output_cmd(struct hci_unit *unit, struct mbuf *m) in hci_output_cmd()
513 hci_output_acl(struct hci_unit *unit, struct mbuf *m) in hci_output_acl()
526 hci_output_sco(struct hci_unit *unit, struct mbuf *m) in hci_output_sco()
539 hci_complete_sco(struct hci_unit *unit, struct mbuf *m) in hci_complete_sco()
/dragonfly/sys/dev/sound/pcm/
H A Dmixer.c616 struct snd_mixer *m; in mixer_obj_create() local
676 struct snd_mixer *m; in mixer_create() local
690 struct snd_mixer *m; in mixer_init() local
771 struct snd_mixer *m; in mixer_uninit() local
824 struct snd_mixer *m; in mixer_reinit() local
852 struct snd_mixer *m; in sysctl_hw_snd_hwvol_mixer() local
878 struct snd_mixer *m; in mixer_hwvol_init() local
912 struct snd_mixer *m; in mixer_hwvol_mute() local
952 struct snd_mixer *m; in mixer_hwvol_step() local
1041 struct snd_mixer *m; in mixer_open() local
[all …]
/dragonfly/sys/netgraph7/rfc1490/
H A Dng_rfc1490.c313 struct mbuf *m; in ng_rfc1490_rcvdata() local
393 mtod(m, u_char *)[0] = HDLC_UI; in ng_rfc1490_rcvdata() local
394 mtod(m, u_char *)[1] = NLPID_PPP; in ng_rfc1490_rcvdata() local
402 mtod(m, u_char *)[0] = HDLC_UI; in ng_rfc1490_rcvdata() local
403 mtod(m, u_char *)[1] = NLPID_IP; in ng_rfc1490_rcvdata() local
414 mtod(m, u_char *)[0] = HDLC_UI; in ng_rfc1490_rcvdata() local
433 mtod(m, u_char *)[0] = HDLC_UI; in ng_rfc1490_rcvdata() local
435 mtod(m, u_char *)[2] = NLPID_SNAP; in ng_rfc1490_rcvdata() local
437 mtod(m, u_char *)[4] = 0x80; in ng_rfc1490_rcvdata() local
438 mtod(m, u_char *)[5] = 0xc2; in ng_rfc1490_rcvdata() local
[all …]
/dragonfly/sys/dev/sound/midi/
H A Dmpu401.c65 #define READ(m) MPUFOI_READ(m, m->cookie, MPU_DATAPORT) argument
106 struct mpu401 *m = (struct mpu401 *)a; in mpu401_timeout() local
113 mpu401_intr(struct mpu401 *m) in mpu401_intr()
123 #define RXRDY(m) ( (STATUS(m) & MPU_INPUTBUSY) == 0) in mpu401_intr() argument
124 #define TXRDY(m) ( (STATUS(m) & MPU_OUTPUTBUSY) == 0) in mpu401_intr() argument
172 struct mpu401 *m; in mpu401_init() local
197 mpu401_uninit(struct mpu401 *m) in mpu401_uninit()
212 struct mpu401 *m = arg; in mpu401_minit() local
237 struct mpu401 *m = arg; in mpu401_muninit() local
257 struct mpu401 *m = arg; in mpu401_mcallback() local
[all …]
/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_mod.c119 BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx) in BN_nnmod()
136 BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_add()
147 BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m) in BN_mod_add_quick()
157 BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_sub()
168 BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m) in BN_mod_sub_quick()
179 BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_mul()
210 BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_sqr()
219 BN_mod_lshift1(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_lshift1()
230 BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m) in BN_mod_lshift1_quick()
241 BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m, BN_CTX *ctx) in BN_mod_lshift()
[all …]
/dragonfly/crypto/openssh/
H A Dmonitor_wrap.c186 struct sshbuf *m; in mm_choose_dh() local
222 struct sshbuf *m; in mm_sshkey_sign() local
258 struct sshbuf *m; in mm_getpwnamallow() local
352 struct sshbuf *m; in mm_auth2_read_banner() local
382 struct sshbuf *m; in mm_inform_authserv() local
402 struct sshbuf *m; in mm_auth_password() local
455 struct sshbuf *m; in mm_key_allowed() local
506 struct sshbuf *m; in mm_sshkey_verify() local
554 struct sshbuf *m; in mm_send_keystate() local
569 struct sshbuf *m; in mm_pty_allocate() local
[all …]
/dragonfly/sys/kern/
H A Duipc_mbuf.c121 struct mbuf *m; member
228 #define mbuftrack(m) argument
229 #define mbufuntrack(m) argument
573 struct mbuf *m = obj; in mbuf_ctor() local
1012 struct mbuf *m; in m_get() local
1050 struct mbuf *m; in m_gethdr() local
1092 struct mbuf *m; in m_getclr() local
1862 struct mbuf *m; in m_adj() local
2106 struct mbuf *m; in m_pullup() local
2174 struct mbuf *m, *n; in m_split() local
[all …]
H A Duipc_mbuf2.c90 m_pulldown(struct mbuf *m, int off, int len, int *offp) in m_pulldown()
237 m_dup1(struct mbuf *m, int off, int len, int wait) in m_dup1()
281 m_tag_prepend(struct mbuf *m, struct m_tag *t) in m_tag_prepend()
290 m_tag_unlink(struct mbuf *m, struct m_tag *t) in m_tag_unlink()
299 m_tag_delete(struct mbuf *m, struct m_tag *t) in m_tag_delete()
309 m_tag_delete_chain(struct mbuf *m) in m_tag_delete_chain()
325 m_tag_locate(struct mbuf *m, uint32_t cookie, int type, struct m_tag *t) in m_tag_locate()
388 m_tag_init(struct mbuf *m) in m_tag_init()
395 m_tag_first(struct mbuf *m) in m_tag_first()
402 m_tag_next(struct mbuf *m, struct m_tag *t) in m_tag_next()
H A Duipc_sockbuf.c84 sbappend(struct sockbuf *sb, struct mbuf *m) in sbappend()
116 sbappendstream(struct sockbuf *sb, struct mbuf *m) in sbappendstream()
128 struct mbuf *m; in _sbcheck() local
234 struct mbuf *m, *n; in sbappendaddr() local
340 sbcompress(struct sockbuf *sb, struct mbuf *m, struct mbuf *tailm) in sbcompress()
475 struct mbuf *m; in sbdrop() local
519 struct mbuf *m; in sbdroprecord() local
548 sbunlinkmbuf(struct sockbuf *sb, struct mbuf *m, struct mbuf **free_chain) in sbunlinkmbuf()
588 struct mbuf *m; in sbcreatecontrol() local
/dragonfly/gnu/usr.bin/grep/libgreputils/sys/
H A Dstat.h415 # define S_ISBLK(m) 0 argument
423 # define S_ISCHR(m) 0 argument
431 # define S_ISDIR(m) 0 argument
436 # define S_ISDOOR(m) 0 argument
451 # define S_ISLNK(m) 0 argument
460 # define S_ISMPB(m) 0 argument
461 # define S_ISMPC(m) 0 argument
466 # define S_ISMPX(m) 0 argument
473 # define S_ISNAM(m) 0 argument
481 # define S_ISNWK(m) 0 argument
[all …]
/dragonfly/usr.bin/netstat/
H A Dinet.c431 #define p(f, m) if (tcpstat.f || sflag <= 1) \ in tcp_stats() argument
433 #define p1a(f, m) if (tcpstat.f || sflag <= 1) \ in tcp_stats() argument
439 #define p3(f, m) if (tcpstat.f || sflag <= 1) \ in tcp_stats() argument
603 #define p(f, m) if (udpstat.f || sflag <= 1) \ in udp_stats() argument
650 #define p(f, m) if (carpstat.f || sflag <= 1) \ in carp_stats() argument
708 #define p(f, m) if (ipstat.f || sflag <= 1) \ in ip_stats() argument
710 #define p1a(f, m) if (ipstat.f || sflag <= 1) \ in ip_stats() argument
800 #define p(f, m) if (icmpstat.f || sflag <= 1) \ in icmp_stats() argument
867 #define p(f, m) if (igmpstat.f || sflag <= 1) \ in igmp_stats() argument
904 #define p(f, m) if (pimstat.f || sflag <= 1) \ in pim_stats() argument
[all …]
/dragonfly/gnu/usr.bin/diff/libdiffutils/sys/
H A Dstat.h646 # define S_ISBLK(m) 0 argument
654 # define S_ISCHR(m) 0 argument
662 # define S_ISDIR(m) 0 argument
667 # define S_ISDOOR(m) 0 argument
682 # define S_ISLNK(m) 0 argument
691 # define S_ISMPB(m) 0 argument
692 # define S_ISMPC(m) 0 argument
697 # define S_ISMPX(m) 0 argument
704 # define S_ISNAM(m) 0 argument
712 # define S_ISNWK(m) 0 argument
[all …]
/dragonfly/contrib/wpa_supplicant/src/eap_peer/
H A Deap_methods.c32 struct eap_method *m; in eap_peer_get_eap_method() local
52 struct eap_method *m; in eap_peer_get_type() local
75 struct eap_method *m; in eap_get_name() local
96 struct eap_method *m; in eap_get_names() local
130 struct eap_method *m; in eap_get_names_as_string_array() local
168 struct eap_method *m; in eap_peer_get_methods() local
235 struct eap_method *m, *prev; in eap_peer_method_unload() local
318 struct eap_method *m, *last = NULL; in eap_peer_method_register() local
353 struct eap_method *m; in eap_peer_unregister_methods() local
/dragonfly/contrib/less/
H A Dmark.c52 static void cmark(struct mark *m, IFILE ifile, POSITION pos, int ln) in cmark()
86 static void mark_set_ifile(struct mark *m, IFILE ifile) in mark_set_ifile()
97 static void mark_get_ifile(struct mark *m) in mark_get_ifile()
130 struct mark *m; in getmark() local
198 struct mark *m; in setmark() local
219 struct mark *m; in clrmark() local
254 struct mark *m; in gomark() local
295 struct mark *m; in markpos() local
352 struct mark *m = &marks[i]; in mark_check_ifile() local
380 struct mark *m = &marks[i]; in save_marks() local
[all …]
/dragonfly/contrib/gdb-7/readline/
H A Dposixstat.h80 #define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK) /* block device */ argument
84 #define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR) /* character device */ argument
88 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) /* directory */ argument
92 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) /* file */ argument
96 #define S_ISFIFO(m) (((m)&S_IFMT) == S_IFIFO) /* fifo - named pipe */ argument
100 #define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK) /* symbolic link */ argument
104 #define S_ISSOCK(m) (((m)&S_IFMT) == S_IFSOCK) /* socket */ argument
/dragonfly/contrib/gcc-8.0/gcc/
H A Dgenmodes.c161 struct mode_data *m; in new_mode() local
425 struct mode_data *m; in complete_all_modes() local
438 struct mode_data *m; in make_complex_modes() local
497 struct mode_data *m; in make_vector_modes() local
721 struct mode_data *m; in make_partial_integer_mode() local
887 struct mode_data *m; in calc_wider_mode() local
1020 struct mode_data *m; in emit_mode_size_inline() local
1064 struct mode_data *m; in emit_mode_nunits_inline() local
1097 struct mode_data *m; in emit_mode_inner_inline() local
1129 struct mode_data *m; in emit_mode_unit_size_inline() local
[all …]
/dragonfly/contrib/smbfs/lib/smb/
H A Dmbuf.c52 struct mbuf *m; in m_get() local
68 m_free(struct mbuf *m) in m_free()
76 struct mbuf *m; in m_freem() local
88 struct mbuf *m = m0; in m_totlen() local
101 struct mbuf *nm, *m; in m_lineup() local
128 struct mbuf *m; in mb_init() local
137 mb_initm(struct mbdata *mbp, struct mbuf *m) in mb_initm()
173 struct mbuf *m, *mp; in m_getm() local
206 struct mbuf *m, *mn; in mb_fit() local
283 struct mbuf *m; in mb_put_mem() local
[all …]
/dragonfly/sys/netinet6/
H A Dip6_input.c205 struct mbuf *m = msg->packet.nm_packet; in ip6_input() local
799 ip6_setdstifaddr(struct mbuf *m, struct in6_ifaddr *ia6) in ip6_setdstifaddr()
810 ip6_getdstifaddr(struct mbuf *m) in ip6_getdstifaddr()
831 struct mbuf *m = *mp; in ip6_hopopts_input() local
1014 ip6_unknown_opt(u_int8_t *optp, struct mbuf *m, int off) in ip6_unknown_opt()
1056 struct mbuf *m) in ip6_savecontrol()
1368 ip6_pullexthdr(struct mbuf *m, size_t off, int nxt) in ip6_pullexthdr()
1421 ip6_get_prevhdr(struct mbuf *m, int off) in ip6_get_prevhdr()
1559 ip6_addaux(struct mbuf *m) in ip6_addaux()
1576 ip6_findaux(struct mbuf *m) in ip6_findaux()
[all …]
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_write_set_options.c40 archive_write_set_format_option(struct archive *a, const char *m, const char *o, in archive_write_set_format_option()
49 archive_write_set_filter_option(struct archive *a, const char *m, const char *o, in archive_write_set_filter_option()
58 archive_write_set_option(struct archive *a, const char *m, const char *o, in archive_write_set_option()
75 archive_set_format_option(struct archive *_a, const char *m, const char *o, in archive_set_format_option()
92 archive_set_filter_option(struct archive *_a, const char *m, const char *o, in archive_set_filter_option()
124 archive_set_option(struct archive *a, const char *m, const char *o, in archive_set_option()

12345678910>>...54