HomeSort by relevance Sort by last modified time
    Searched refs:nsec (Results 1 - 25 of 65) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/profile-n/
err.D_PDESC_ZEROonensec.d 32 * Call profile-1nsec; less than 200 micro seconds.
40 profile-1nsec
42 printf("Call profile-1nsec; less than 200 micro seconds\n");
tst.profilensec.d 32 * Simple profile-nsec simple test.
41 profile-2000000000nsec
43 printf("This test is a simple profile-nsec provider test");
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/tick-n/
err.D_PDESC_ZEROonensec.d 32 * Call profile-1nsec; less than 200 micro seconds.
40 profile-1nsec
42 printf("Call profile-1nsec; less than 200 micro seconds\n");
tst.ticknsec.d 32 * tick-nsec simple test.
41 tick-20000000nsec
43 printf("This test is a simple tick-nsec provider test\n");
  /onnv/onnv-gate/usr/src/lib/libast/common/tm/
tmsleep.c 35 tmsleep(time_t sec, time_t nsec)
40 tv.tv_nsec = nsec;
tmxscan.c 40 int32_t nsec; member in struct:__anon95
55 #define CLEAR(s) (s.year=s.mon=s.week=s.weektype=s.yday=s.mday=s.wday=s.hour=s.min=s.sec=s.meridian=(-1),s.nsec=1000000000L,s.zone=TM_LOCALZONE)
123 if (set->nsec < 1000000000L)
124 tm->tm_nsec = set->nsec;
152 if (set->nsec < 1000000000L)
159 tm->tm_nsec = set->nsec;
307 set.nsec = n;
  /onnv/onnv-gate/usr/src/uts/i86pc/sys/
machclock.h 67 #define TODOP_SETWD(top, nsec) ((top)->tod_set_watchdog_timer(top, nsec))
69 #define TODOP_SETWAKE(top, nsec) ((top)->tod_set_wake_alarm(top, nsec))
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/lib/nwamd/
defines.h 56 #define NSEC_TO_SEC(nsec) (nsec) / NANOSEC
  /onnv/onnv-gate/usr/src/lib/libc/port/sys/
time_util.c 42 uint32_t sec, nsec, tmp; local
56 nsec = (uint32_t)hrt - (tmp << 9);
57 while (nsec >= NANOSEC) {
58 nsec -= NANOSEC;
62 tsp->tv_nsec = nsec;
  /onnv/onnv-gate/usr/src/lib/fm/libfmd_log/common/
fmd_filter.c 85 uint64_t nsec = ((struct timeval *)arg)->tv_usec * (NANOSEC / MICROSEC); local
86 return (rp->rec_sec == sec ? rp->rec_nsec <= nsec : rp->rec_sec <= sec);
94 uint64_t nsec = ((struct timeval *)arg)->tv_usec * (NANOSEC / MICROSEC); local
95 return (rp->rec_sec == sec ? rp->rec_nsec >= nsec : rp->rec_sec >= sec);
  /onnv/onnv-gate/usr/src/uts/common/os/
timers.c 91 int usec, nsec; local
100 * Fast algorithm to convert nsec to usec -- see hrt2ts()
103 nsec = ts.tv_nsec;
104 usec = nsec + (nsec >> 2);
105 usec = nsec + (usec >> 1);
106 usec = nsec + (usec >> 2);
107 usec = nsec + (usec >> 4);
108 usec = nsec - (usec >> 3);
109 usec = nsec + (usec >> 2)
899 int nsec; local
945 int64_t nsec; local
1175 uint32_t sec, nsec, tmp; local
1249 uint32_t sec, nsec, tmp; local
    [all...]
  /onnv/onnv-gate/usr/src/pkgdefs/common_files/
r.manifest 88 while [ ${nsec:=0} -lt $wait_time ]; do
97 nsec=`expr ${nsec} + 1`
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/safety/
tst.copyin.d 44 #pragma D option statusrate=1nsec
  /onnv/onnv-gate/usr/src/cmd/fm/modules/sun4u/datapath-retire/
cda_main.c 189 hrtime_t nsec; local
207 nsec = fmd_prop_get_int64(hdl, "cpu_delay");
208 cda.cda_cpu_delay.tv_sec = nsec / NANOSEC;
209 cda.cda_cpu_delay.tv_nsec = nsec % NANOSEC;
  /onnv/onnv-gate/usr/src/uts/common/sys/fm/
util.h 72 uint64_t nsec; /* nanoseconds past ed_tod_base.sec */ member in struct:erpt_dump::__anon7122
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWfcprtr/
preinstall 89 while [ ${nsec:=0} -lt $STOP_DELAY ]; do
98 nsec=`expr ${nsec} + 1`
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
bios.c 30 int nsec, int segment);
45 /* Read/write NSEC sectors starting from SECTOR in DRIVE disk with GEOMETRY
52 unsigned int sector, int nsec, int segment)
80 dap.blocks = nsec;
90 if (err == 0 && dap.blocks != nsec)
104 return biosdisk (read, drive, geometry, sector, nsec, segment);
125 nsec, segment);
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWiscsir/
preinstall 92 while [ ${nsec:=0} -lt $STOP_DELAY ]; do
101 nsec=`expr ${nsec} + 1`
  /onnv/onnv-gate/usr/src/cmd/sa/
timex.c 45 #define NSEC_TO_TICK(nsec) ((nsec) / nsec_per_tick)
46 #define NSEC_TO_TICK_ROUNDUP(nsec) NSEC_TO_TICK((nsec) + \
  /onnv/onnv-gate/usr/src/lib/libsmbfs/smb/
subr.c 258 smb_time_NT2local(uint64_t nsec, int tzoff, struct timeval *tsp)
260 smb_time_server2local(nsec / 10000000 - DIFF1970TO1601, 0, tsp);
265 smb_time_local2NT(struct timeval *tsp, int tzoff, uint64_t *nsec)
270 *nsec = (((uint64_t)(seconds) & ~1) + DIFF1970TO1601) *
  /onnv/onnv-gate/usr/src/cmd/fm/fmd/common/
fmd_time.c 119 uint32_t sec, nsec, tmp; local
133 nsec = (uint32_t)hrt - (tmp << 9);
135 while (nsec >= NANOSEC) {
136 nsec -= NANOSEC;
141 ftv->ftv_nsec = nsec;
  /onnv/onnv-gate/usr/src/uts/common/sys/
time.h 259 * Macros to convert from common units of time (sec, msec, usec, nsec,
280 #define NSEC_TO_TICK(nsec) ((nsec) / nsec_per_tick)
281 #define NSEC_TO_TICK_ROUNDUP(nsec) \
282 ((nsec) == 0 ? 0 : NSEC_TO_TICK((nsec) - 1) + 1)
  /onnv/onnv-gate/usr/src/grub/grub-0.97/grub/
asmstub.c 934 unsigned int sector, int nsec, int segment)
973 if (sector == 0 && nsec > 1)
982 nsec--;
985 if (nread (fd, buf, nsec * SECTOR_SIZE) != nsec * SECTOR_SIZE)
994 nsec, sector, drive, device_map[drive]);
995 hex_dump (buf, nsec * SECTOR_SIZE);
998 if (nwrite (fd, buf, nsec * SECTOR_SIZE) != nsec * SECTOR_SIZE)
  /onnv/onnv-gate/usr/src/uts/sun4u/sys/
machclock.h 182 #define TODOP_SETWD(top, nsec) ((top).tod_set_watchdog_timer(nsec))
  /onnv/onnv-gate/usr/src/common/openssl/crypto/ocsp/
ocsp_cl.c 308 * rejecting otherwise valid time we allow the times to be within 'nsec' of the current time.
313 int OCSP_check_validity(ASN1_GENERALIZEDTIME *thisupd, ASN1_GENERALIZEDTIME *nextupd, long nsec, long maxsec)
318 /* Check thisUpdate is valid and not more than nsec in the future */
326 t_tmp = t_now + nsec;
348 /* Check nextUpdate is valid and not more than nsec in the past */
356 t_tmp = t_now - nsec;

Completed in 1560 milliseconds

1 2 3