Searched refs:lf (Results 51 - 66 of 66) sorted by relevance

123

/freebsd-11.0-release/crypto/heimdal/appl/gssmask/
H A Dgssmask.c1229 const char *lf = logfile_str; local
1230 if (lf == NULL)
1231 lf = "/dev/tty";
1233 logfile = fopen(lf, "w");
1235 err(1, "error opening %s", lf);
/freebsd-11.0-release/contrib/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp290 int lf = (c1 << 8) + c2; local
291 int toread = lf*4 - 2;
303 if (lf < 6) {
320 if (6 + lh + (ec - bc + 1) + nw + nh + nd + ni + nl + nk + ne + np != lf) {
371 assert(ptr == buf + lf*4 - 2);
/freebsd-11.0-release/contrib/groff/src/preproc/pic/
H A Dtroff.cpp562 printf(".lf %d\n", n);
564 printf(".lf %d %s\n", n, s);
/freebsd-11.0-release/sys/boot/pc98/boot2/
H A Dboot1.S273 je putc.lf
291 putc.lf: add %cx,%di
/freebsd-11.0-release/sys/compat/ndis/
H A Dsubr_ndis.c2665 ndis_find_sym(lf, filename, suffix, sym)
2666 linker_file_t lf;
2698 *sym = linker_file_lookup_symbol(lf, fullsym, 0);
2715 NdisCheckModule(linker_file_t lf, void *context) argument
2721 if (ndis_find_sym(lf, nc->afilename, "_start", &kldstart))
2723 if (ndis_find_sym(lf, nc->afilename, "_end", &kldend))
2725 nc->fh->nf_vp = lf;
2859 linker_file_t lf; local
2883 lf = fh->nf_vp;
2884 if (ndis_find_sym(lf, f
[all...]
/freebsd-11.0-release/sys/compat/linprocfs/
H A Dlinprocfs.c1344 struct linker_file *lf;
1346 TAILQ_FOREACH(lf, &linker_files, link) {
1347 sbuf_printf(sb, "%-20s%8lu%4d\n", lf->filename,
1348 (unsigned long)lf->size, lf->refs);
/freebsd-11.0-release/sys/dev/digi/
H A Ddigi.c773 linker_file_t lf; local
786 if ((res = linker_reference_module(modfile, NULL, &lf)) != 0)
794 symptr = linker_file_lookup_symbol(lf, sym, 0);
798 linker_release_module(NULL, NULL, lf);
806 linker_release_module(NULL, NULL, lf);
828 linker_release_module(NULL, NULL, lf);
/freebsd-11.0-release/contrib/sendmail/libmilter/
H A Dengine.c1387 #define ARGV_FCT(lf, rf, idx) \
1389 sfsistat (*lf) __P((SMFICTX *, char **)); \
1396 (lf = g->a_ctx->ctx_smfi->rf) == NULL) \
1400 r = (*lf)(g->a_ctx, argv); \
/freebsd-11.0-release/crypto/openssh/
H A Dsftp.c1734 const LineInfo *lf; local
1781 lf = el_line(el);
1787 if (lastarg || *(lf->cursor) != ' ')
1827 const LineInfo *lf; local
1926 lf = el_line(el);
1931 if (*(lf->cursor - 1) != '/' &&
1932 (lastarg || *(lf->cursor) != ' '))
1952 const LineInfo *lf; local
1955 lf = el_line(el);
1960 cursor = lf
[all...]
/freebsd-11.0-release/sys/kern/
H A Dsys_generic.c1011 int error, lf, ndu; local
1017 lf = fdp->fd_lastfile;
1018 if (nd > lf + 1)
1019 nd = lf + 1;
H A Dkern_sig.c3367 struct flock lf; local
3425 lf.l_whence = SEEK_SET;
3426 lf.l_start = 0;
3427 lf.l_len = 0;
3428 lf.l_type = F_WRLCK;
3429 locked = (VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &lf, F_FLOCK) == 0);
3450 lf.l_type = F_UNLCK;
3451 VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &lf, F_FLOCK);
/freebsd-11.0-release/contrib/ntp/sntp/libevent/
H A Dbuffer.c1490 char *s_end, *cr, *lf; local
1495 lf = memchr(s, '\n', chunk);
1497 if (lf && lf < cr)
1498 return lf;
1500 } else if (lf) {
1501 return lf;
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DAPFloat.cpp1048 lostFraction lf;
1052 lf = shiftRight(fullSignificand, significantParts, bits);
1053 lost_fraction = combineLostFractions(lf, lost_fraction);
1319 lostFraction lf;
1322 lf = shiftSignificandRight(exponentChange);
1324 lost_fraction = combineLostFractions(lf, lost_fraction);
/freebsd-11.0-release/usr.sbin/syslogd/
H A Dsyslogd.c1141 char nul[] = "", space[] = " ", lf[] = "\n", crlf[] = "\r\n"; local
1320 v->iov_base = lf;
1342 v->iov_base = lf;
/freebsd-11.0-release/sys/dev/hwpmc/
H A Dhwpmc_mod.c4680 pmc_kld_load(void *arg __unused, linker_file_t lf) argument
4692 (uintfptr_t) lf->address, lf->filename);
/freebsd-11.0-release/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c16682 dtrace_kld_load(void *arg __unused, linker_file_t lf)
16685 dtrace_module_loaded(lf);
16689 dtrace_kld_unload_try(void *arg __unused, linker_file_t lf, int *error)
16695 dtrace_module_unloaded(lf, error);

Completed in 174 milliseconds

123