Searched refs:nsec (Results 1 - 25 of 97) sorted by relevance

1234

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/profile-n/
H A Derr.D_PDESC_ZEROonensec.d32 * Call profile-1nsec; less than 200 micro seconds.
40 profile-1nsec
42 printf("Call profile-1nsec; less than 200 micro seconds\n");
H A Dtst.profilensec.d32 * Simple profile-nsec simple test.
41 profile-2000000000nsec
43 printf("This test is a simple profile-nsec provider test");
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tick-n/
H A Derr.D_PDESC_ZEROonensec.d32 * Call profile-1nsec; less than 200 micro seconds.
40 profile-1nsec
42 printf("Call profile-1nsec; less than 200 micro seconds\n");
H A Dtst.ticknsec.d32 * tick-nsec simple test.
41 tick-20000000nsec
43 printf("This test is a simple tick-nsec provider test\n");
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/generic/
H A Dnsec_47.c232 dns_rdata_nsec_t *nsec = source; local
239 REQUIRE(nsec->common.rdtype == type);
240 REQUIRE(nsec->common.rdclass == rdclass);
241 REQUIRE(nsec->typebits != NULL || nsec->len == 0);
246 dns_name_toregion(&nsec->next, &region);
251 for (i = 0; i < nsec->len ; i += len) {
252 INSIST(i + 2 <= nsec->len);
253 window = nsec->typebits[i];
254 len = nsec
270 dns_rdata_nsec_t *nsec = target; local
304 dns_rdata_nsec_t *nsec = source; local
[all...]
/freebsd-9.3-release/lib/libc/stdio/
H A Dxprintf_time.c65 int i, prec, nsec, ret; local
70 nsec = tv->tv_usec * 1000;
75 nsec = ts->tv_nsec;
80 nsec = 0;
87 nsec = 0;
116 nsec /= 10;
117 p += sprintf(p, ".%.*d", prec, nsec);
/freebsd-9.3-release/sys/geom/eli/
H A Dg_eli_integrity.c159 u_int i, lsec, nsec, data_secsize, decr_secsize, encr_secsize; local
173 nsec = bp->bio_length / decr_secsize;
175 nsec = (nsec * sc->sc_bytes_per_sector) / encr_secsize;
181 auth = srcdata + encr_secsize * nsec;
185 for (i = 1; i <= nsec; i++) {
260 u_int nsec; local
303 nsec = bp->bio_length / bp->bio_to->sectorsize;
305 nsec = (nsec * s
345 off_t nsec; local
414 u_int i, lsec, nsec, data_secsize, decr_secsize, encr_secsize; local
[all...]
H A Dg_eli_privacy.c235 u_int i, nsec, secsize; local
246 nsec = bp->bio_length / secsize;
255 size = sizeof(*crp) * nsec;
256 size += sizeof(*crd) * nsec;
257 size += sizeof(*uio) * nsec;
258 size += sizeof(*iov) * nsec;
268 bp->bio_children = nsec;
280 for (i = 0, dstoff = bp->bio_offset; i < nsec; i++, dstoff += secsize) {
/freebsd-9.3-release/sys/cddl/compat/opensolaris/sys/
H A Dtime.h61 hrtime_t nsec; local
64 nsec = (hrtime_t)ts.tv_sec * NANOSEC + ts.tv_nsec;
65 return (nsec);
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dnsec.c29 #include <dns/nsec.h>
211 dns_nsec_typepresent(dns_rdata_t *nsec, dns_rdatatype_t type) { argument
217 REQUIRE(nsec != NULL);
218 REQUIRE(nsec->type == dns_rdatatype_nsec);
221 result = dns_rdata_tostruct(nsec, &nsecstruct, NULL);
313 dns_rdata_nsec_t nsec; local
358 "ignoring parent nsec");
367 "ignoring child nsec");
376 "nsec proves name exists (owner) data=%d",
393 (*logit)(arg, ISC_LOG_DEBUG(3), "ignoring parent nsec");
[all...]
/freebsd-9.3-release/sys/sys/
H A Dclock.h73 long nsec; /* nano seconds */ member in struct:clocktime
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.copyin.d46 #pragma D option statusrate=1nsec
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/fm/
H A Dutil.h69 uint64_t nsec; /* nanoseconds past ed_tod_base.sec */ member in struct:erpt_dump::__anon6074
/freebsd-9.3-release/contrib/libarchive/cpio/test/
H A Dtest.h160 #define assertFileAtime(pathname, sec, nsec) \
161 assertion_file_atime(__FILE__, __LINE__, pathname, sec, nsec)
164 #define assertFileBirthtime(pathname, sec, nsec) \
165 assertion_file_birthtime(__FILE__, __LINE__, pathname, sec, nsec)
177 #define assertFileMtime(pathname, sec, nsec) \
178 assertion_file_mtime(__FILE__, __LINE__, pathname, sec, nsec)
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest.h164 #define assertFileAtime(pathname, sec, nsec) \
165 assertion_file_atime(__FILE__, __LINE__, pathname, sec, nsec)
168 #define assertFileBirthtime(pathname, sec, nsec) \
169 assertion_file_birthtime(__FILE__, __LINE__, pathname, sec, nsec)
181 #define assertFileMtime(pathname, sec, nsec) \
182 assertion_file_mtime(__FILE__, __LINE__, pathname, sec, nsec)
/freebsd-9.3-release/contrib/libarchive/tar/test/
H A Dtest.h160 #define assertFileAtime(pathname, sec, nsec) \
161 assertion_file_atime(__FILE__, __LINE__, pathname, sec, nsec)
164 #define assertFileBirthtime(pathname, sec, nsec) \
165 assertion_file_birthtime(__FILE__, __LINE__, pathname, sec, nsec)
177 #define assertFileMtime(pathname, sec, nsec) \
178 assertion_file_mtime(__FILE__, __LINE__, pathname, sec, nsec)
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Dnsec.h18 /* $Id: nsec.h,v 1.14 2011/06/10 23:47:32 tbox Exp $ */
23 /*! \file dns/nsec.h */
59 dns_nsec_typepresent(dns_rdata_t *nsec, dns_rdatatype_t type);
64 *\li 'nsec' points to a valid rdataset of type NSEC
/freebsd-9.3-release/sys/fs/smbfs/
H A Dsmbfs_subr.c73 smb_time_NT2local(int64_t nsec, int tzoff, struct timespec *tsp) argument
75 smb_time_server2local(nsec / 10000000 - DIFF1970TO1601, 0, tsp);
79 smb_time_local2NT(struct timespec *tsp, int tzoff, int64_t *nsec) argument
84 *nsec = (((int64_t)(seconds) & ~1) + DIFF1970TO1601) * (int64_t)10000000;
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_fg.c291 pp->nsec = (BP1(9)*10 + BP2(9)) * 1000000;
292 pp->nsec += BP1(10) * 1000;
297 pp->nsec = (BP1(8)*10 + BP2(8)) * 1000000;
298 pp->nsec += BP1(9) * 1000;
H A Drefclock_tpro.c164 * Note that the refclockproc usec member has now become nsec.
183 &pp->hour, &pp->minute, &pp->second, &pp->nsec)
188 pp->nsec *= 1000; /* Convert usec to nsec */
H A Drefclock_pst.c239 &ampmchar, &pp->hour, &pp->minute, &pp->second, &pp->nsec,
244 pp->nsec *= 1000000;
H A Drefclock_pcf.c202 pp->nsec = buf[16] * 31250000;
204 pp->nsec += 500000000;
H A Drefclock_hopfpci.c209 pp->nsec = m_time.wMilliseconds * 1000000;
218 pp->nsec / 1000000, m_time.wDay, m_time.wMonth,
/freebsd-9.3-release/sys/kern/
H A Dsubr_clock.c174 ts->tv_nsec = ct->nsec;
212 ct->nsec = ts->tv_nsec;
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dadjtime.c323 count = 1e9 * ADJUST_PERIOD / period.nsec;
335 increment_limit = CORR_SLEW_LIMIT * period.nsec;

Completed in 260 milliseconds

1234