Home
last modified time | relevance | path

Searched refs:lm (Results 1 – 25 of 144) sorted by relevance

123456

/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.ListProbesWithModules39 * /usr/sbin/dtrace -lm profile
43 * /usr/sbin/dtrace -lm genunix
47 * /usr/sbin/dtrace -lm vtrace:genunix
52 * /usr/sbin/dtrace -lm :genunix::
56 * /usr/sbin/dtrace -lm profile:::profile-97
60 * /usr/sbin/dtrace -lm genunix -lm unix
64 * /usr/sbin/dtrace -lm genunix -lm foounix
68 * /usr/sbin/dtrace -lm foounix -lm unix
72 * /usr/sbin/dtrace -lm fbt:des:des3_crunch_block:return
76 * /usr/sbin/dtrace -lm fbt:genunix'{printf("FOUND");}'
[all …]
H A Dtst.InvalidModule1.d.ksh48 $dtrace -lm :genunix::
H A Dtst.InvalidModule4.d.ksh48 $dtrace -lm unix'/probefunc == "preempt"/{printf("FOUND");}'
H A Dtst.InvalidModule2.d.ksh48 $dtrace -lm profile:::profile-97
H A Dtst.InvalidModule3.d.ksh48 $dtrace -lm fbt:des:des3_crunch_block:return
/freebsd/libexec/rtld-elf/
H A Dlibmap.c21 TAILQ_HEAD(lm_list, lm);
22 struct lm { struct
25 TAILQ_ENTRY(lm) lm_link; argument
318 struct lm *lm; in lm_free() local
323 lm = TAILQ_FIRST(lml); in lm_free()
324 TAILQ_REMOVE(lml, lm, lm_link); in lm_free()
325 free(lm->f); in lm_free()
326 free(lm->t); in lm_free()
327 free(lm); in lm_free()
359 struct lm *lm; in lm_add() local
[all …]
/freebsd/contrib/nvi/common/
H A Dlog.c364 LMARK lm; in log_backward() local
434 memmove(&lm, p + sizeof(u_char), sizeof(LMARK)); in log_backward()
435 m.lno = lm.lno; in log_backward()
436 m.cno = lm.cno; in log_backward()
437 if (mark_set(sp, lm.name, &m, 0)) in log_backward()
466 LMARK lm; in log_setline() local
524 memmove(&lm, p + sizeof(u_char), sizeof(LMARK)); in log_setline()
525 m.lno = lm.lno; in log_setline()
526 m.cno = lm.cno; in log_setline()
527 if (mark_set(sp, lm.name, &m, 0)) in log_setline()
[all …]
/freebsd/crypto/heimdal/lib/ntlm/
H A Dntlm.c818 heim_ntlm_free_buf(&data->lm); in heim_ntlm_free_type3()
843 struct sec_buffer lm, ntlm, target, username, sessionkey, ws; in heim_ntlm_decode_type3() local
860 CHECK(ret_sec_buffer(in, &lm), 0); in heim_ntlm_decode_type3()
861 if (lm.allocated) in heim_ntlm_decode_type3()
862 min_offset = min(min_offset, lm.offset); in heim_ntlm_decode_type3()
885 CHECK(ret_buf(in, &lm, &type3->lm), 0); in heim_ntlm_decode_type3()
918 struct sec_buffer lm, ntlm, target, username, sessionkey, ws; in heim_ntlm_encode_type3() local
924 memset(&lm, 0, sizeof(lm)); in heim_ntlm_encode_type3()
955 lm.offset = ws.offset + ws.allocated; in heim_ntlm_encode_type3()
956 lm.length = type3->lm.length; in heim_ntlm_encode_type3()
[all …]
H A Dtest_ntlm.c251 struct ntlm_buf lm, ntlm; in test_ntlm2_session_resp() local
274 &lm, in test_ntlm2_session_resp()
279 if (lm.length != 24 || memcmp(lm.data, lm_resp, 24) != 0) in test_ntlm2_session_resp()
284 free(lm.data); in test_ntlm2_session_resp()
/freebsd/contrib/dialog/
H A Dmixedgauge.c115 int lm = limit_x - dlg->len_text - 1; in myprint_status() local
140 dlg_print_text(win, dlg->list[item].name, lm, &attr); in myprint_status()
142 (void) wmove(win, y, lm); in myprint_status()
144 (void) wmove(win, y, lm + (cells - (int) strlen(status)) / 2); in myprint_status()
146 (void) wmove(win, y, lm + 1); in myprint_status()
151 (void) wmove(win, y, lm + (cells - (int) strlen(status)) / 2); in myprint_status()
159 (void) wmove(win, y, lm + 1); in myprint_status()
174 (void) wmove(win, y, lm + (cells - (int) strlen(status)) / 2); in myprint_status()
/freebsd/usr.sbin/ctld/
H A Dkernel.c1045 struct ctl_lun_map lm; in kernel_port_add() local
1137 lm.port = port->p_ctl_port; in kernel_port_add()
1138 lm.plun = UINT32_MAX; in kernel_port_add()
1139 lm.lun = 0; in kernel_port_add()
1140 error = ioctl(ctl_fd, CTL_LUN_MAP, &lm); in kernel_port_add()
1148 lm.port = port->p_ctl_port; in kernel_port_add()
1149 lm.plun = i; in kernel_port_add()
1150 lm.lun = targ->t_luns[i]->l_ctl_lun; in kernel_port_add()
1151 error = ioctl(ctl_fd, CTL_LUN_MAP, &lm); in kernel_port_add()
1171 struct ctl_lun_map lm; in kernel_port_update() local
[all …]
/freebsd/crypto/heimdal/lib/gssapi/ntlm/
H A Dinit_sec_context.c353 &type3.lm, in _gss_ntlm_init_sec_context()
373 if (type3.lm.data) in _gss_ntlm_init_sec_context()
374 free(type3.lm.data); in _gss_ntlm_init_sec_context()
386 if (type3.lm.data) in _gss_ntlm_init_sec_context()
387 free(type3.lm.data); in _gss_ntlm_init_sec_context()
479 if (type3.lm.data) in _gss_ntlm_init_sec_context()
480 free(type3.lm.data); in _gss_ntlm_init_sec_context()
/freebsd/crypto/heimdal/lib/roken/
H A Dglob.c245 Char *lm, *ls; in globexp2() local
250 for (lm = patbuf, pm = pattern; pm != ptr; *lm++ = *pm++) in globexp2()
252 ls = lm; in globexp2()
312 for (lm = ls; (pl < pm); *lm++ = *pl++) in globexp2()
318 for (pl = pe + 1; (*lm++ = *pl++) != CHAR_EOS;) in globexp2()
/freebsd/contrib/file/src/
H A DMakefile.am20 libmagic_la_LIBADD = -lm $(LTLIBOBJS) $(MINGWLIBS)
23 file_LDADD = libmagic.la -lm
/freebsd/usr.bin/gzip/
H A Dunlz.c265 lz_rd_decode_len(struct lz_range_decoder *rd, struct lz_len_model *lm, in lz_rd_decode_len() argument
268 if (lz_rd_decode_bit(rd, &lm->choice1) == 0) in lz_rd_decode_len()
269 return lz_rd_decode_tree(rd, lm->bm_low[pos_state], LOW_BITS); in lz_rd_decode_len()
271 if (lz_rd_decode_bit(rd, &lm->choice2) == 0) { in lz_rd_decode_len()
273 lz_rd_decode_tree(rd, lm->bm_mid[pos_state], MID_BITS); in lz_rd_decode_len()
277 lz_rd_decode_tree(rd, lm->bm_high, HIGH_BITS); in lz_rd_decode_len()
/freebsd/contrib/ntp/scripts/monitoring/
H A Dntploopwatch573 local($lm,$l,@f);
983 $lm = 1;
1005 (($l % $lm) == 0 && print("\t$l lines read\n") &&
1006 (($l == 2) && ($lm = 10) ||
1007 ($l == 100) && ($lm = 100) ||
1008 ($l == 500) && ($lm = 500) ||
1009 ($l == 1000) && ($lm = 1000) ||
1010 ($l == 5000) && ($lm = 5000) ||
1011 ($l == 10000) && ($lm = 10000)));
/freebsd/lib/libc/gen/
H A Dglob-compat11.c284 Char *lm, *ls; in globexp2() local
289 for (lm = patbuf, pm = pattern; pm != ptr; *lm++ = *pm++) in globexp2()
291 *lm = EOS; in globexp2()
292 ls = lm; in globexp2()
350 for (lm = ls; (pl < pm); *lm++ = *pl++) in globexp2()
356 for (pl = pe + 1; (*lm++ = *pl++) != EOS;) in globexp2()
H A Dglob.c316 Char *lm, *ls; in globexp2() local
321 for (lm = patbuf, pm = pattern; pm != ptr; *lm++ = *pm++) in globexp2()
323 *lm = EOS; in globexp2()
324 ls = lm; in globexp2()
382 for (lm = ls; (pl < pm); *lm++ = *pl++) in globexp2()
388 for (pl = pe + 1; (*lm++ = *pl++) != EOS;) in globexp2()
/freebsd/crypto/openssh/openbsd-compat/
H A Dglob.c265 Char *lm, *ls; in globexp2() local
270 for (lm = patbuf, pm = pattern; pm != ptr; *lm++ = *pm++) in globexp2()
272 *lm = EOS; in globexp2()
273 ls = lm; in globexp2()
330 for (lm = ls; (pl < pm); *lm++ = *pl++) in globexp2()
337 for (pl = pe + 1; (*lm++ = *pl++) != EOS; ) in globexp2()
/freebsd/contrib/arm-optimized-routines/math/
H A DDir.mk68 $(math-host-tools): HOST_LDLIBS += -lm -lmpfr -lmpc
69 $(math-tools): LDLIBS += $(math-ldlibs) -lm
84 $(CC) $(CFLAGS_ALL) $(LDFLAGS) -static -o $@ $< $(LDLIBS) -lc build/lib/libmathlib.a -lm
/freebsd/crypto/openssl/crypto/chacha/asm/
H A Dchacha-s390x.pl122 lm ($xc,$xc_,"$stdframe+4*8+4*$c2($sp)");
295 lm (@x[0],@x[7],"$stdframe+4*0($sp)"); # load x[0]-x[7]
296 lm (@t[0],@t[1],"$stdframe+4*10($sp)"); # load x[10]-x[11]
297 lm (@x[13],@x[15],"$stdframe+4*13($sp)"); # load x[13]-x[15]
299 lm (@t[0],@t[1],"$stdframe+4*8($sp)"); # load x[8]-x[9]
313 &{$z? \&lmg:\&lm} (@t[0],@t[1],"$frame+3*$SIZE_T($sp)");
353 lm (@x[0],@x[3],"$stdframe+4*8+4*8($sp)"); # load x[8]-x[11]
400 &{$z? \&lmg:\&lm} ("%r6","%r15","$frame+6*$SIZE_T($sp)");
408 lm (@x[0],@x[3],"$stdframe+4*8+4*8($sp)");
674 &{$z? \&lmg:\&lm} ("%r6","%r7","$FRAME+6*$SIZE_T($sp)");
[all …]
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_scan.c383 ipscan_t *isc, *lm; in ipf_scan_match() local
410 lm = NULL; in ipf_scan_match()
428 lm = isc; in ipf_scan_match()
432 isc = lm; in ipf_scan_match()
/freebsd/usr.bin/beep/
H A DMakefile4 LDFLAGS= -lm
/freebsd/sbin/recoverdisk/
H A DMakefile4 LDFLAGS += -lm
/freebsd/tools/regression/usr.bin/cc/
H A DMakefile2 CFLAGS+=-lm

123456