Home
last modified time | relevance | path

Searched refs:lfp (Results 1 – 14 of 14) sorted by relevance

/freebsd-10-stable/sys/fs/nfsserver/
Dnfs_nfsdstate.c118 static void nfsrv_freenfslockfile(struct nfslockfile *lfp);
129 struct nfslock *insert_lop, struct nfsstate *stp, struct nfslockfile *lfp);
131 struct nfslock **other_lopp, struct nfslockfile *lfp);
151 static int nfsrv_cleandeleg(vnode_t vp, struct nfslockfile *lfp,
160 static int nfsrv_locallock(vnode_t vp, struct nfslockfile *lfp, int flags,
162 static void nfsrv_localunlock(vnode_t vp, struct nfslockfile *lfp,
164 static int nfsrv_dolocal(vnode_t vp, struct nfslockfile *lfp, int flags,
167 static void nfsrv_locallock_rollback(vnode_t vp, struct nfslockfile *lfp,
169 static void nfsrv_locallock_commit(struct nfslockfile *lfp, int flags,
171 static void nfsrv_locklf(struct nfslockfile *lfp);
[all …]
/freebsd-10-stable/cddl/contrib/opensolaris/common/ctf/
Dctf_types.c561 ctf_type_cmp(ctf_file_t *lfp, ctf_id_t ltype, ctf_file_t *rfp, ctf_id_t rtype) in ctf_type_cmp() argument
572 if (lfp == rfp) in ctf_type_cmp()
575 if (CTF_TYPE_ISPARENT(ltype) && lfp->ctf_parent != NULL) in ctf_type_cmp()
576 lfp = lfp->ctf_parent; in ctf_type_cmp()
581 if (lfp < rfp) in ctf_type_cmp()
584 if (lfp > rfp) in ctf_type_cmp()
597 ctf_type_compat(ctf_file_t *lfp, ctf_id_t ltype, in ctf_type_compat() argument
605 if (ctf_type_cmp(lfp, ltype, rfp, rtype) == 0) in ctf_type_compat()
608 ltype = ctf_type_resolve(lfp, ltype); in ctf_type_compat()
609 lkind = ctf_type_kind(lfp, ltype); in ctf_type_compat()
[all …]
/freebsd-10-stable/contrib/tcpdump/
Dprint-ntp.c223 p_ntp_time(register const struct l_fixedpt *lfp) in p_ntp_time() argument
230 i = EXTRACT_32BITS(&lfp->int_part); in p_ntp_time()
231 uf = EXTRACT_32BITS(&lfp->fraction); in p_ntp_time()
258 register const struct l_fixedpt *lfp) in p_ntp_delta() argument
267 u = EXTRACT_32BITS(&lfp->int_part); in p_ntp_delta()
269 uf = EXTRACT_32BITS(&lfp->fraction); in p_ntp_delta()
272 p_ntp_time(lfp); in p_ntp_delta()
/freebsd-10-stable/contrib/ntp/libparse/
Dgpstolfp.c45 l_fp * lfp in gpstolfp() argument
53lfp->l_ui = (uint32_t)(weeks * SECSPERWEEK + days * SECSPERDAY + seconds + GPSORIGIN); /* convert … in gpstolfp()
54 lfp->l_uf = 0; in gpstolfp()
/freebsd-10-stable/contrib/ntp/libntp/
Dhextolfp.c15 l_fp *lfp in hextolfp() argument
67 lfp->l_ui = dec_i; in hextolfp()
68 lfp->l_uf = dec_f; in hextolfp()
Datolfp.c32 l_fp *lfp in atolfp() argument
119 lfp->l_ui = dec_i; in atolfp()
120 lfp->l_uf = dec_f; in atolfp()
Dmstolfp.c14 l_fp *lfp in mstolfp() argument
99 return atolfp(buf, lfp); in mstolfp()
/freebsd-10-stable/contrib/ntp/sntp/tests/
DMakefile.am6 debug-output-lfp-bin \
7 debug-output-lfp-dec \
60 data/debug-input-lfp-bin \
61 data/debug-input-lfp-dec \
80 data/debug-output-lfp-dec \
82 data/debug-output-lfp-bin \
DMakefile.in736 CLEANFILES = debug-output-lfp-bin debug-output-lfp-dec \
740 data/debug-output-pkt data/debug-output-lfp-dec \
741 data/kod-output-blank data/debug-output-lfp-bin $(NULL) \
763 data/debug-input-lfp-bin \
764 data/debug-input-lfp-dec \
/freebsd-10-stable/contrib/ntp/ntpq/
Dntpq.c2047 l_fp *lfp in rtdatetolfp() argument
2072 L_CLR(lfp); in rtdatetolfp()
2121 L_CLR(lfp); in rtdatetolfp()
2157 lfp->l_ui = caltontp(&cal); in rtdatetolfp()
2158 lfp->l_uf = 0; in rtdatetolfp()
2170 l_fp *lfp in decodets() argument
2181 return hextolfp(str+2, lfp); in decodets()
2193 return rtdatetolfp(buf, lfp); in decodets()
2201 return hextolfp(str, lfp); in decodets()
2207 if (atolfp(str, lfp)) in decodets()
[all …]
Dntpq-subs.c335 l_fp lfp; /* NTP_LFP */ member
3774 decodets(val, &pvdc->v.lfp); in collect_display_vdc()
3827 prettydate(&pvdc->v.lfp)); in collect_display_vdc()
/freebsd-10-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
Ddt_parser.c338 ctf_file_t *lfp = lp->dn_ctfp; in dt_type_promote() local
344 ctf_id_t lbase = ctf_type_resolve(lfp, ltype); in dt_type_promote()
345 uint_t lkind = ctf_type_kind(lfp, lbase); in dt_type_promote()
358 lfp = DT_INT_CTFP(dtp); in dt_type_promote()
367 if (ctf_type_encoding(lfp, lbase, &le) == CTF_ERR) { in dt_type_promote()
368 yypcb->pcb_hdl->dt_ctferr = ctf_errno(lfp); in dt_type_promote()
397 *ofp = lfp; in dt_type_promote()
1049 ctf_file_t *lfp = lp->dn_ctfp; in dt_node_is_ptrcompat() local
1088 lbase = ctf_type_resolve(lfp, lp->dn_type); in dt_node_is_ptrcompat()
1089 lkind = ctf_type_kind(lfp, lbase); in dt_node_is_ptrcompat()
[all …]
/freebsd-10-stable/contrib/file/magic/Magdir/
Dimages1476 # Typical file extensions: .lfp .lfr .lfx
/freebsd-10-stable/contrib/ntp/
DCommitLog13446 sntp/tests/data/debug-output-lfp-bin@1.1 +3 -0
13447 BitKeeper file /home/viperus/Desktop/ntp-stable-unity/sntp/tests/data/debug-output-lfp-bin
13449 sntp/tests/data/debug-output-lfp-bin@1.0 +0 -0
13451 sntp/tests/data/debug-output-lfp-dec@1.1 +3 -0
13452 BitKeeper file /home/viperus/Desktop/ntp-stable-unity/sntp/tests/data/debug-output-lfp-dec
13454 sntp/tests/data/debug-output-lfp-dec@1.0 +0 -0
93722 remove lfp.l_f signed fraction, which has little legit use.
94047 [Bug2100] conversion lfp --> timeval fixed
115378 BitKeeper/deleted/9f/debug-input-lfp-hex~523a3dc59a6a4e86@1.3 +0 -0
115379 …Rename: sntp/tests/data/debug-input-lfp-hex -> BitKeeper/deleted/9f/debug-input-lfp-hex~523a3dc59a…
[all …]