Searched refs:mf (Results 1 - 25 of 347) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/am-utils/dist/amd/
H A Dmntfs.c64 dup_mntfs(mntfs *mf) argument
66 if (mf->mf_refc == 0) {
67 if (mf->mf_cid)
68 untimeout(mf->mf_cid);
69 mf->mf_cid = 0;
71 mf->mf_refc++;
73 return mf;
78 init_mntfs(mntfs *mf, am_ops *ops, am_opts *mo, char *mp, char *info, char *auto_opts, char *mopts, char *remopts) argument
80 mf->mf_ops = ops;
81 mf
109 mntfs *mf = ALLOC(struct mntfs); local
123 mntfs *mf; local
205 mntfs *mf = locate_mntfs(ops, mo, mp, info, auto_opts, mopts, remopts); local
231 uninit_mntfs(mntfs *mf) argument
265 mntfs *mf = v; local
292 mntfs *mf; local
324 mntfs *mf = (mntfs *) arg; local
385 realloc_mntfs(mntfs *mf, am_ops *ops, am_opts *mo, char *mp, char *info, char *auto_opts, char *mopts, char *remopts) argument
[all...]
H A Damfs_root.c55 static int amfs_root_mount(am_node *mp, mntfs *mf);
90 amfs_root_mount(am_node *mp, mntfs *mf) argument
92 mf->mf_mount = strealloc(mf->mf_mount, pid_fsname);
93 mf->mf_private = (opaque_t) mapc_find(mf->mf_info, "", NULL, NULL);
94 mf->mf_prfree = mapc_free;
H A Damfs_nfsl.c59 static int amfs_nfsl_init(mntfs *mf);
60 static int amfs_nfsl_mount(am_node *mp, mntfs *mf);
61 static int amfs_nfsl_umount(am_node *mp, mntfs *mf);
62 static void amfs_nfsl_umounted(mntfs *mf);
63 static fserver *amfs_nfsl_ffserver(mntfs *mf);
137 amfs_nfsl_init(mntfs *mf) argument
140 if (mf->mf_flags & MFF_NFSLINK) {
142 ret = amfs_link_ops.fs_init(mf);
145 ret = nfs_ops.fs_init(mf);
156 amfs_nfsl_mount(am_node *mp, mntfs *mf) argument
175 amfs_nfsl_umount(am_node *mp, mntfs *mf) argument
196 amfs_nfsl_umounted(mntfs *mf) argument
213 amfs_nfsl_ffserver(mntfs *mf) argument
[all...]
H A Damfs_auto.c65 static int amfs_auto_mount(am_node *mp, mntfs *mf);
100 amfs_auto_mount(am_node *mp, mntfs *mf) argument
117 if (mf->mf_info[0] == '.' && mf->mf_info[1] == '\0')
118 mf->mf_info = strealloc(mf->mf_info, mp->am_parent->am_al->al_mnt->mf_info);
131 if (mf->mf_fo->opt_pref) {
133 if (STREQ(mf->mf_fo->opt_pref, "null")) {
139 mp->am_pref = xstrdup(mf->mf_fo->opt_pref);
154 if (mf
[all...]
H A Damfs_program.c54 static int amfs_program_mount(am_node *am, mntfs *mf);
55 static int amfs_program_umount(am_node *am, mntfs *mf);
56 static int amfs_program_init(mntfs *mf);
111 amfs_program_init(mntfs *mf) argument
114 if (mf->mf_private != NULL)
117 if (mf->mf_fo == NULL)
121 if (mf->mf_fo->opt_unmount != NULL)
122 mf->mf_private = (opaque_t) xstrdup(mf->mf_fo->opt_unmount);
124 mf
200 amfs_program_mount(am_node *am, mntfs *mf) argument
207 amfs_program_umount(am_node *am, mntfs *mf) argument
[all...]
H A Damfs_linkx.c53 static int amfs_linkx_mount(am_node *mp, mntfs *mf);
54 static int amfs_linkx_umount(am_node *mp, mntfs *mf);
82 amfs_linkx_mount(am_node *mp, mntfs *mf) argument
93 ln = mf->mf_mount;
108 amfs_linkx_umount(am_node *mp, mntfs *mf) argument
H A Dops_ext.c54 static int ext2_mount(am_node *am, mntfs *mf);
55 static int ext3_mount(am_node *am, mntfs *mf);
56 static int ext4_mount(am_node *am, mntfs *mf);
57 static int ext_umount(am_node *am, mntfs *mf);
184 ext_mount(am_node *am, mntfs *mf, char *mount_type, argument
187 int on_autofs = mf->mf_flags & MFF_ON_AUTOFS;
190 error = mount_ext(mf->mf_mount, mf->mf_info, mf->mf_mopts, on_autofs,
202 ext2_mount(am_node *am, mntfs *mf) argument
208 ext3_mount(am_node *am, mntfs *mf) argument
214 ext4_mount(am_node *am, mntfs *mf) argument
220 ext_umount(am_node *am, mntfs *mf) argument
[all...]
/netbsd-current/external/public-domain/xz/dist/src/liblzma/lz/
H A Dlz_encoder.c31 lzma_mf mf; member in struct:__anon16218
40 /// mf->buffer is a sliding input window, which keeps mf->keep_size_before
46 move_window(lzma_mf *mf) argument
49 // like LZMA use the lowest bits of mf->read_pos to know the
52 assert(mf->read_pos > mf->keep_size_before);
54 = (mf->read_pos - mf->keep_size_before) & ~UINT32_C(15);
56 assert(mf
193 lz_encoder_prepare(lzma_mf *mf, const lzma_allocator *allocator, const lzma_lz_options *lz_options) argument
371 lz_encoder_init(lzma_mf *mf, const lzma_allocator *allocator, const lzma_lz_options *lz_options) argument
467 lzma_mf mf = { local
[all...]
H A Dlz_encoder_mf.c23 lzma_mf_find(lzma_mf *mf, uint32_t *count_ptr, lzma_match *matches) argument
28 const uint32_t count = mf->find(mf, matches);
38 assert(matches[i].len <= mf->nice_len);
39 assert(matches[i].dist < mf->read_pos);
40 assert(memcmp(mf_ptr(mf) - 1,
41 mf_ptr(mf) - matches[i].dist - 2,
52 if (len_best == mf->nice_len) {
57 uint32_t limit = mf_avail(mf) + 1;
58 if (limit > mf
108 normalize(lzma_mf *mf) argument
150 move_pos(lzma_mf *mf) argument
178 move_pending(lzma_mf *mf) argument
305 lzma_mf_hc3_find(lzma_mf *mf, lzma_match *matches) argument
338 lzma_mf_hc3_skip(lzma_mf *mf, uint32_t amount) argument
366 lzma_mf_hc4_find(lzma_mf *mf, lzma_match *matches) argument
417 lzma_mf_hc4_skip(lzma_mf *mf, uint32_t amount) argument
587 lzma_mf_bt2_find(lzma_mf *mf, lzma_match *matches) argument
601 lzma_mf_bt2_skip(lzma_mf *mf, uint32_t amount) argument
620 lzma_mf_bt3_find(lzma_mf *mf, lzma_match *matches) argument
653 lzma_mf_bt3_skip(lzma_mf *mf, uint32_t amount) argument
675 lzma_mf_bt4_find(lzma_mf *mf, lzma_match *matches) argument
726 lzma_mf_bt4_skip(lzma_mf *mf, uint32_t amount) argument
[all...]
H A Dlz_encoder.h92 uint32_t (*find)(lzma_mf *mf, lzma_match *matches);
97 void (*skip)(lzma_mf *mf, uint32_t num);
198 lzma_mf *restrict mf, uint8_t *restrict out,
221 mf_ptr(const lzma_mf *mf) argument
223 return mf->buffer + mf->read_pos;
229 mf_avail(const lzma_mf *mf) argument
231 return mf->write_pos - mf->read_pos;
238 mf_unencoded(const lzma_mf *mf) argument
252 mf_position(const lzma_mf *mf) argument
267 mf_skip(lzma_mf *mf, uint32_t amount) argument
279 mf_read(lzma_mf *mf, uint8_t *out, size_t *out_pos, size_t out_size, size_t *left) argument
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dmsgfmt-611 tmpfiles="$tmpfiles mf-6.po"
12 cat <<EOF > mf-6.po
25 tmpfiles="$tmpfiles mf-6.mo core *.core"
27 ${MSGFMT} --check -o mf-6.mo mf-6.po 2>/dev/null
H A Dmsgfmt-128 tmpfiles="$tmpfiles mf-12.po"
9 cat <<\EOF > mf-12.po
25 tmpfiles="$tmpfiles mf-12.mo"
27 ${MSGFMT} -o mf-12.mo mf-12.po
30 tmpfiles="$tmpfiles mf-12.out"
32 ${MSGUNFMT} -o mf-12.out mf-12.mo
35 tmpfiles="$tmpfiles mf-12.ok"
36 cat <<\EOF > mf
[all...]
H A Dmsgfmt-168 tmpfiles="$tmpfiles mf-16.po"
9 cat <<\EOF > mf-16.po
47 tmpfiles="$tmpfiles mf-16.mo"
49 ${MSGFMT} -o mf-16.mo mf-16.po
52 tmpfiles="$tmpfiles mf-16.out"
54 ${MSGUNFMT} -o mf-16.out mf-16.mo
57 tmpfiles="$tmpfiles mf-16.ok"
58 cat <<\EOF > mf
[all...]
H A Dmsgfmt-78 tmpfiles="$tmpfiles mf-test7.in1"
9 cat <<EOF > mf-test7.in1
29 tmpfiles="$tmpfiles mf-test7.err"
32 ${MSGFMT} --verbose --check mf-test7.in1 -o /dev/null \
33 2>&1 | grep -v '^==' > mf-test7.err
35 tmpfiles="$tmpfiles mf-test7.ok"
36 cat << EOF > mf-test7.ok
37 mf-test7.in1:17: duplicate message definition...
38 mf-test7.in1:16: ...this is the location of the first definition
43 ${DIFF} mf
[all...]
H A Dmsgfmt-88 tmpfiles="$tmpfiles mf-test8.in1"
9 cat <<EOF > mf-test8.in1
29 tmpfiles="$tmpfiles mf-test8.err"
32 ${MSGFMT} --verbose --check mf-test8.in1 -o /dev/null \
33 2>&1 | grep -v '^==' > mf-test8.err
35 tmpfiles="$tmpfiles mf-test8.ok"
36 cat << EOF > mf-test8.ok
37 mf-test8.in1:17: duplicate message definition...
38 mf-test8.in1:16: ...this is the location of the first definition
43 ${DIFF} mf
[all...]
H A Dmsgfmt-98 tmpfiles="$tmpfiles mf-test9.in1"
9 cat <<EOF > mf-test9.in1
32 tmpfiles="$tmpfiles mf-test9.err"
35 ${MSGFMT} --verbose --check mf-test9.in1 -o /dev/null \
36 2>&1 | grep -v '^==' > mf-test9.err
38 tmpfiles="$tmpfiles mf-test9.ok"
39 cat << EOF > mf-test9.ok
40 mf-test9.in1:17: duplicate message definition...
41 mf-test9.in1:15: ...this is the location of the first definition
46 ${DIFF} mf
[all...]
H A Dmsgfmt-108 tmpfiles="$tmpfiles mf-test10.po1"
9 cat <<\EOF > mf-test10.po1
41 ${MSGFMT} --check -o /dev/null mf-test10.po1
44 tmpfiles="$tmpfiles mf-test10.po2"
45 cat <<\EOF > mf-test10.po2
69 tmpfiles="$tmpfiles mf-test10.err"
72 ${MSGFMT} --check -o /dev/null mf-test10.po2 \
73 2>&1 | grep -v '^==' > mf-test10.err
75 tmpfiles="$tmpfiles mf-test10.ok"
76 cat << EOF > mf
[all...]
H A Dmsgfmt-118 tmpfiles="$tmpfiles mf-11.po"
9 cat <<\EOF > mf-11.po
25 tmpfiles="$tmpfiles mf-11.mo core *.core"
27 ${MSGFMT} --check -o mf-11.mo mf-11.po 2>/dev/null
H A Dmsgfmt-138 tmpfiles="$tmpfiles mf-test13.po"
9 cat <<\EOF >mf-test13.po
31 tmpfiles="$tmpfiles mf-test13.mo"
33 ${MSGFMT} mf-test13.po -o mf-test13.mo 2>/dev/null
H A Dmsgfmt-148 tmpfiles="$tmpfiles mf-14.po"
9 cat <<\EOF > mf-14.po
54 tmpfiles="$tmpfiles mf-14.mo"
56 ${MSGFMT} -o mf-14.mo mf-14.po
59 tmpfiles="$tmpfiles mf-14.out"
61 ${MSGUNFMT} -o mf-14.out mf-14.mo
64 tmpfiles="$tmpfiles mf-14.ok"
65 cat <<\EOF > mf
[all...]
H A Dmsgfmt-1515 tmpfiles="$tmpfiles mf-15.po1"
16 cat <<\EOF > mf-15.po1
42 ${MSGFMT} --check -o /dev/null mf-15.po1
45 tmpfiles="$tmpfiles mf-15.po2"
46 cat <<\EOF > mf-15.po2
72 ${MSGFMT} --check -o /dev/null mf-15.po2 2>/dev/null
75 tmpfiles="$tmpfiles mf-15.po3"
76 cat <<\EOF > mf-15.po3
102 ${MSGFMT} --check -o /dev/null mf-15.po3
105 tmpfiles="$tmpfiles mf
[all...]
/netbsd-current/games/sail/
H A Dpl_2.c55 if (mf->readyL & R_LOADING) {
56 if (mf->readyL & R_DOUBLE)
57 mf->readyL = R_LOADING;
59 mf->readyL = R_LOADED;
61 if (mf->readyR & R_LOADING) {
62 if (mf->readyR & R_DOUBLE)
63 mf->readyR = R_LOADING;
65 mf->readyR = R_LOADED;
79 if (mf->FS && (!mc->rig1 || windspeed == 6))
81 if (mf
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
H A Dmf_4.h23 dns_name_t mf; member in struct:dns_rdata_mf
/netbsd-current/external/mpl/bind/dist/lib/dns/rdata/generic/
H A Dmf_4.h22 dns_name_t mf; member in struct:dns_rdata_mf
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dwith-mf.exp20 standard_testfile with-mf-main.c with-mf-inc.c

Completed in 244 milliseconds

1234567891011>>