Home
last modified time | relevance | path

Searched refs:lf (Results 1 – 25 of 104) sorted by path

12345

/freebsd/bin/csh/
H A Ddot.cshrc11 alias lf ls -FA
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.ListProbesWithFunctions39 * /usr/sbin/dtrace -lf profile
43 * /usr/sbin/dtrace -lf genunix
47 * /usr/sbin/dtrace -lf read
51 * /usr/sbin/dtrace -lf genunix:read
56 * /usr/sbin/dtrace -lf sysinfo:genunix:read
61 * /usr/sbin/dtrace -lf :genunix::
65 * /usr/sbin/dtrace -lf ::read:
69 * /usr/sbin/dtrace -lf profile:::profile-97
73 * /usr/sbin/dtrace -lf read -lf write
77 * /usr/sbin/dtrace -lf read -lm fight
[all …]
/freebsd/contrib/bmake/mk/
H A Dstage-install.sh81 lf=
90 if [ -n "$lf" ]; then
95 lf=$f
/freebsd/contrib/diff/src/
H A Dsdiff.c360 lf->infile = infile; in lf_init()
361 lf->bufpos = lf->buffer = lf->buflim = xmalloc (SDIFF_BUFSIZE + 1); in lf_init()
362 lf->buflim[0] = '\n'; in lf_init()
369 size_t s = ck_fread (lf->buffer, SDIFF_BUFSIZE, lf->infile); in lf_refill()
370 lf->bufpos = lf->buffer; in lf_refill()
371 lf->buflim = lf->buffer + s; in lf_refill()
385 lf->bufpos = (char *) memchr (lf->bufpos, '\n', lf->buflim - lf->bufpos); in lf_copy()
391 start = lf->bufpos; in lf_copy()
396 ++lf->bufpos; in lf_copy()
409 lf->bufpos = (char *) memchr (lf->bufpos, '\n', lf->buflim - lf->bufpos); in lf_skip()
[all …]
/freebsd/contrib/elftoolchain/libdwarf/
H A Ddwarf_lineno.c98 Dwarf_LineFile lf; in dwarf_srcfiles() local
146 i < *srccount && lf != NULL; i++, lf = STAILQ_NEXT(lf, lf_next)) { in dwarf_srcfiles()
147 if (lf->lf_fullpath) in dwarf_srcfiles()
148 li->li_lfnarray[i] = lf->lf_fullpath; in dwarf_srcfiles()
150 li->li_lfnarray[i] = lf->lf_fname; in dwarf_srcfiles()
251 Dwarf_LineFile lf; in dwarf_linesrc() local
264 i++, lf = STAILQ_NEXT(lf, lf_next)) in dwarf_linesrc()
267 if (lf == NULL) { in dwarf_linesrc()
272 if (lf->lf_fullpath) { in dwarf_linesrc()
273 *ret_linesrc = (char *) lf->lf_fullpath; in dwarf_linesrc()
[all …]
H A Ddwarf_pro_lineno.c162 Dwarf_LineFile lf; in dwarf_add_file_decl() local
171 if ((lf = malloc(sizeof(struct _Dwarf_LineFile))) == NULL) { in dwarf_add_file_decl()
176 if ((lf->lf_fname = strdup(name)) == NULL) { in dwarf_add_file_decl()
177 free(lf); in dwarf_add_file_decl()
181 lf->lf_dirndx = dirndx; in dwarf_add_file_decl()
182 lf->lf_mtime = mtime; in dwarf_add_file_decl()
183 lf->lf_size = size; in dwarf_add_file_decl()
184 STAILQ_INSERT_TAIL(&li->li_lflist, lf, lf_next); in dwarf_add_file_decl()
H A Dlibdwarf_lineno.c35 Dwarf_LineFile lf; in _dwarf_lineno_add_file() local
48 lf->lf_fullpath = NULL; in _dwarf_lineno_add_file()
53 free(lf); in _dwarf_lineno_add_file()
62 free(lf); in _dwarf_lineno_add_file()
67 if (lf->lf_dirndx > 0) in _dwarf_lineno_add_file()
82 free(lf); in _dwarf_lineno_add_file()
440 free(lf); in _dwarf_lineno_init()
465 free(lf); in _dwarf_lineno_cleanup()
654 Dwarf_LineFile lf; in _dwarf_lineno_gen() local
776 if (lf->lf_fname) in _dwarf_lineno_pro_cleanup()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dwindows257 # verified partly by `wevtutil.exe gli /lf:true dumpfile.evtx`
/freebsd/contrib/flex/
H A DChangeLog2344 * lib/malloc.c: change crlf line ending to lf
/freebsd/contrib/libedit/TEST/
H A Dtc1.c93 const LineInfo *lf = el_line(el); in complete() local
100 for (ptr = lf->cursor - 1; in complete()
101 !isspace((unsigned char)*ptr) && ptr > lf->buffer; ptr--) in complete()
103 len = lf->cursor - ++ptr; in complete()
H A Dwtc1.c63 const LineInfoW *lf = el_wline(el); in complete() local
69 for (ptr = lf->cursor -1; !iswspace(*ptr) && ptr > lf->buffer; --ptr) in complete()
71 len = lf->cursor - ++ptr; in complete()
/freebsd/contrib/libevent/
H A Dbuffer.c1502 char *s_end, *cr, *lf; in find_eol_char() local
1507 lf = memchr(s, '\n', chunk); in find_eol_char()
1509 if (lf && lf < cr) in find_eol_char()
1510 return lf; in find_eol_char()
1512 } else if (lf) { in find_eol_char()
1513 return lf; in find_eol_char()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_flags.cpp73 __lsan::Flags *lf = __lsan::flags(); in InitializeFlags() local
74 lf->SetDefaults(); in InitializeFlags()
77 __lsan::RegisterLsanFlags(&lsan_parser, lf); in InitializeFlags()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan.cpp115 __lsan::Flags *lf = __lsan::flags(); in InitializeFlags() local
116 lf->SetDefaults(); in InitializeFlags()
119 __lsan::RegisterLsanFlags(&lsan_parser, lf); in InitializeFlags()
/freebsd/contrib/llvm-project/libcxx/include/
H A D__hash_table921 …_LIBCPP_ASSERT_PEDANTIC(__mlf > 0, "unordered container::max_load_factor(lf) called with lf <= 0");
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp1327 lostFraction lf; in multiplySignificand() local
1331 lf = shiftRight(fullSignificand, significantParts, bits); in multiplySignificand()
1332 lost_fraction = combineLostFractions(lf, lost_fraction); in multiplySignificand()
1611 lostFraction lf; in normalize() local
1614 lf = shiftSignificandRight(exponentChange); in normalize()
1616 lost_fraction = combineLostFractions(lf, lost_fraction); in normalize()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEInstrFormats.td178 bits<1> lf = 0;
186 let Inst{49} = lf;
H A DVEInstrInfo.td1174 let lf = kind{1};
/freebsd/contrib/lua/src/
H A Dlauxlib.c717 LoadF *lf = (LoadF *)ud; in getF() local
728 *size = fread(lf->buff, 1, sizeof(lf->buff), lf->f); /* read block */ in getF()
730 return lf->buff; in getF()
780 LoadF lf; in luaL_loadfilex() local
786 lf.f = stdin; in luaL_loadfilex()
790 lf.f = fopen(filename, "r"); in luaL_loadfilex()
793 lf.n = 0; in luaL_loadfilex()
795 lf.buff[lf.n++] = '\n'; /* add newline to correct line numbers */ in luaL_loadfilex()
799 lf.f = freopen(filename, "rb", lf.f); /* reopen in binary mode */ in luaL_loadfilex()
805 lf.buff[lf.n++] = c; /* 'c' is the first character of the stream */ in luaL_loadfilex()
[all …]
H A Dlvm.c490 lua_Number lf = fltvalue(l); /* 'l' must be float */ in LTnum() local
492 return luai_numlt(lf, fltvalue(r)); /* both are float */ in LTnum()
494 return LTfloatint(lf, ivalue(r)); in LTnum()
512 lua_Number lf = fltvalue(l); /* 'l' must be float */ in LEnum() local
514 return luai_numle(lf, fltvalue(r)); /* both are float */ in LEnum()
516 return LEfloatint(lf, ivalue(r)); in LEnum()
/freebsd/contrib/ncurses/
H A DNEWS12043 + modify next_char() to treat <cr><lf> the same as <newline>, for
/freebsd/contrib/ncurses/include/
H A DCaps432 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
H A DCaps.aix4432 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
H A DCaps.hpux11434 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
H A DCaps.keys434 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)

12345