Searched refs:fm (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-10.3-release/contrib/nvi/common/
H A Ddelete.c38 MARK *fm,
51 for (lno = tm->lno; lno >= fm->lno; --lno) {
75 for (lno = tm->lno; lno > fm->lno; --lno) {
83 if (db_get(sp, fm->lno, DBG_FATAL, &p, &len))
85 GET_SPACE_RETW(sp, bp, blen, fm->cno);
86 MEMCPY(bp, p, fm->cno);
87 if (db_set(sp, fm->lno, bp, fm->cno))
94 if (tm->lno == fm->lno) {
95 if (db_get(sp, fm
36 del( SCR *sp, MARK *fm, MARK *tm, int lmode) argument
[all...]
H A Dsearch.c151 MARK *fm,
172 if (db_get(sp, fm->lno, DBG_FATAL, &l, &len))
174 lno = fm->lno;
189 if ((coff = fm->cno) != 0)
191 } else if (fm->cno + 1 >= len) {
193 lno = fm->lno + 1;
203 coff = fm->cno + 1;
217 if ((wrapped && lno > fm->lno) || db_get(sp, lno, 0, &l, &len)) {
297 MARK *fm,
325 lno = fm
149 f_search( SCR *sp, MARK *fm, MARK *rm, CHAR_T *ptrn, size_t plen, CHAR_T **eptrn, u_int flags) argument
295 b_search( SCR *sp, MARK *fm, MARK *rm, CHAR_T *ptrn, size_t plen, CHAR_T **eptrn, u_int flags) argument
[all...]
H A Dcut.c70 MARK *fm,
105 (LF_ISSET(CUT_LINEMODE) || fm->lno != tm->lno))) {
116 (LF_ISSET(CUT_LINEMODE) || fm->lno != tm->lno))) {
143 for (lno = fm->lno; lno <= tm->lno; ++lno)
151 if (cut_line(sp, fm->lno, fm->cno, fm->lno != tm->lno ?
152 ENTIRE_LINE : (tm->cno - fm->cno) + 1, cbp))
156 for (lno = fm->lno; ++lno < tm->lno;)
161 if (tm->lno != fm
67 cut( SCR *sp, CHAR_T *namep, MARK *fm, MARK *tm, int flags) argument
[all...]
/freebsd-10.3-release/tests/sys/mac/bsdextended/
H A Dmatches_test.sh97 if su -fm $uidinrange -c "$command1"; then
104 if su -fm $uidoutrange -c "$command1"; then
115 if su -fm $uidinrange -c "$command1"; then
122 if su -fm $uidoutrange -c "$command1"; then
134 if su -fm $uidinrange -c "$command1"; then
141 if su -fm $uidoutrange -c "$command1"; then
179 if su -fm $uidinrange -c "$command1"; then
186 if su -fm $uidinrange -c "$command2"; then
194 if su -fm $uidoutrange -c "$command1"; then
201 if su -fm
[all...]
/freebsd-10.3-release/tools/regression/mac/mac_bsdextended/
H A Dtest_matches.sh97 if su -fm $uidinrange -c "$command1"; then
104 if su -fm $uidoutrange -c "$command1"; then
115 if su -fm $uidinrange -c "$command1"; then
122 if su -fm $uidoutrange -c "$command1"; then
134 if su -fm $uidinrange -c "$command1"; then
141 if su -fm $uidoutrange -c "$command1"; then
179 if su -fm $uidinrange -c "$command1"; then
186 if su -fm $uidinrange -c "$command2"; then
194 if su -fm $uidoutrange -c "$command1"; then
201 if su -fm
[all...]
/freebsd-10.3-release/etc/periodic/weekly/
H A D330.catman38 su -fm man || rc=3
46 "$MANPATH" | LC_ALL=$i su -fm man || rc=3
H A D310.locate26 echo /usr/libexec/locate.updatedb | nice -n 5 su -fm nobody || rc=3
/freebsd-10.3-release/tools/tools/vt/mkkfont/
H A Dmkkfont.c93 struct file_mapping fm; local
106 if (fread(&fm, sizeof fm, 1, stdin) != 1) {
113 be32toh(fm.source), be16toh(fm.destination),
114 be16toh(fm.length));
/freebsd-10.3-release/contrib/groff/src/devices/xditview/
H A Dfont.c285 DviFontMap *fm; local
287 for (fm = dw->dvi.font_map; fm; fm=fm->next)
288 if (!strcmp (fm->dvi_name, dvi_name))
289 return fm->x_name;
297 DviFontMap *fm;
299 for (fm = dw->dvi.font_map; fm; f
312 DviFontMap *fm, *new_map; local
[all...]
/freebsd-10.3-release/contrib/nvi/ex/
H A Dex_filter.c42 ex_filter(SCR *sp, EXCMD *cmdp, MARK *fm, MARK *tm, MARK *rp, CHAR_T *cmd, enum filtertype ftype) argument
55 *rp = *fm;
177 if (ex_readfp(sp, "filter", ofp, fm, &nread, 1))
181 if (fm->lno == 0)
234 _exit(ex_writefp(sp, "filter", ifp, fm, tm, NULL, NULL, 1));
264 (cut(sp, NULL, fm, tm, CUT_LINEMODE) ||
265 del(sp, fm, tm, 1))) {
H A Dex_read.c297 ex_readfp(SCR *sp, char *name, FILE *fp, MARK *fm, recno_t *nlinesp, int silent) argument
319 for (lno = fm->lno; !ex_getline(sp, fp, &len); ++lno, ++lcnt) {
H A Dex_write.c286 ex_writefp(SCR *sp, char *name, FILE *fp, MARK *fm, MARK *tm, u_long *nlno, u_long *nch, int silent) argument
301 fline = fm->lno;
/freebsd-10.3-release/contrib/libarchive/libarchive/test/
H A Dtest_sparse_basic.c171 struct fiemap *fm; local
181 fm = (struct fiemap *)buff;
182 fm->fm_start = 0;
183 fm->fm_length = ~0ULL;;
184 fm->fm_flags = FIEMAP_FLAG_SYNC;
185 fm->fm_extent_count = (sizeof(buff) - sizeof(*fm))/
187 r = ioctl(fd, FS_IOC_FIEMAP, fm);
/freebsd-10.3-release/contrib/apr/
H A Dapr.spec91 * Sat Aug 30 2008 Graham Leggett <minfrin@sharp.fm> 1.3.3
95 * Tue Jun 22 2004 Graham Leggett <minfrin@sharp.fm> 1.0.0-1
98 * Tue Jun 22 2004 Graham Leggett <minfrin@sharp.fm> 1.0.0-1
/freebsd-10.3-release/contrib/ntp/libparse/
H A Dparsestreams.c221 struct fmodsw *fm = fmodsw; local
234 while (fm <= fmend)
236 if (!Strncmp(fm->f_name, mname, FMNAMESZ))
243 (fm->f_name[0] == '\0') &&
244 (fm->f_str == (struct streamtab *)0))
249 ifm = fm;
252 fm++;
321 while (fm <= fmend)
323 if (!Strncmp(fm->f_name, mname, FMNAMESZ))
328 fm
[all...]
/freebsd-10.3-release/contrib/libarchive/libarchive/
H A Darchive_read_disk_entry_from_file.c1092 struct fiemap *fm; local
1124 count = (sizeof(buff) - sizeof(*fm))/sizeof(*fe);
1125 fm = (struct fiemap *)buff;
1126 fm->fm_start = 0;
1127 fm->fm_length = ~0ULL;;
1128 fm->fm_flags = FIEMAP_FLAG_SYNC;
1129 fm->fm_extent_count = count;
1135 r = ioctl(*fd, FS_IOC_FIEMAP, fm);
1142 if (fm->fm_mapped_extents == 0)
1144 fe = fm
[all...]
/freebsd-10.3-release/usr.bin/vtfontcvt/
H A Dvtfontcvt.c429 struct file_mapping fm; local
436 fm.source = htobe32(mp->m_char);
437 fm.destination = htobe16(mp->m_glyph->g_index);
438 fm.length = htobe16(mp->m_length - 1);
439 if (fwrite(&fm, sizeof fm, 1, fp) != 1)
/freebsd-10.3-release/contrib/groff/src/roff/troff/
H A Dnode.cpp131 font *fm; member in class:font_info
168 font *fm; member in class:tfont_spec
228 internal_name(nm), external_name(enm), fm(f),
236 return fm != 0 && fm->contains(ci->get_index());
241 return fm != 0 && fm->is_special();
246 return fm == 0;
268 tfont_spec spec(f->external_name, f->number, f->fm, fs, height, slant);
421 return scale(hunits(fm
5859 font *fm = 0; local
[all...]
/freebsd-10.3-release/contrib/less/
H A Dline.c1230 char *fm; local
1244 for (fm = linebuf + old_size_linebuf - 1,
1246 fm >= linebuf; fm--, to--)
1247 *to = *fm;
/freebsd-10.3-release/crypto/openssl/crypto/bn/asm/
H A Dpa-risc2.s92 fm .reg %fr23 label
175 XMPYU flt_0,fw_h,fm ; m[0] = flt_0*fw_h
177 FSTD fm,-8(%sp) ; -8(sp) = m[0]
249 XMPYU flt_0,fw_h,fm ; m = lt*fw_h
250 FSTD fm,-8(%sp) ; -8(sp) = m
341 XMPYU flt_0,fw_h,fm ; m = lt*fw_h
344 FSTD fm,-8(%sp) ; -8(sp) = m
410 XMPYU flt_0,fw_h,fm ; m = lt*fw_h
411 FSTD fm,-8(%sp) ; -8(sp) = m
487 XMPYU fht_0,flt_0,fm ;
[all...]
H A Dpa-risc2W.s84 fm .reg %fr23 label
167 XMPYU flt_0,fw_h,fm ; m[0] = flt_0*fw_h
169 FSTD fm,-8(%sp) ; -8(sp) = m[0]
241 XMPYU flt_0,fw_h,fm ; m = lt*fw_h
242 FSTD fm,-8(%sp) ; -8(sp) = m
331 XMPYU flt_0,fw_h,fm ; m = lt*fw_h
334 FSTD fm,-8(%sp) ; -8(sp) = m
400 XMPYU flt_0,fw_h,fm ; m = lt*fw_h
401 FSTD fm,-8(%sp) ; -8(sp) = m
476 XMPYU fht_0,flt_0,fm ;
[all...]
/freebsd-10.3-release/contrib/sendmail/src/
H A Dcollect.c1048 ** fm -- the from line.
1074 eatfrom(fm, e)
1075 char *volatile fm;
1082 sm_dprintf("eatfrom(%s)\n", fm);
1085 p = fm;
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzfs_context.h93 #include <sys/fm/util.h>
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_fru.c37 #include <fm/libtopo.h>
38 #include <sys/fm/protocol.h>
205 "/usr/lib/fm/%s/libtopo.so", isa);
/freebsd-10.3-release/sys/dev/aac/
H A Daac.c1458 struct aac_fibmap *fm; local
1467 fm = malloc(sizeof(struct aac_fibmap), M_AACBUF, M_NOWAIT|M_ZERO);
1468 if (fm == NULL)
1472 if (bus_dmamem_alloc(sc->aac_fib_dmat, (void **)&fm->aac_fibs,
1473 BUS_DMA_NOWAIT, &fm->aac_fibmap)) {
1476 free(fm, M_AACBUF);
1481 (void)bus_dmamap_load(sc->aac_fib_dmat, fm->aac_fibmap, fm->aac_fibs,
1486 bzero(fm->aac_fibs, sc->aac_max_fibs_alloc * sc->aac_max_fib_size);
1489 fm
1525 struct aac_fibmap *fm; local
[all...]

Completed in 156 milliseconds

12