Searched refs:tsp (Results 1 - 25 of 29) sorted by relevance

12

/external/tcpdump/
H A Dprint-timed.c44 struct tsp { struct
101 const struct tsp *tsp = (const struct tsp *)bp; local
104 ND_TCHECK(tsp->tsp_type);
105 if (tsp->tsp_type < TSPTYPENUMBER)
106 ND_PRINT((ndo, "TSP_%s", tsptype[tsp->tsp_type]));
108 ND_PRINT((ndo, "(tsp_type %#x)", tsp->tsp_type));
110 ND_TCHECK(tsp->tsp_vers);
111 ND_PRINT((ndo, " vers %u", tsp
[all...]
/external/dhcpcd-6.8.2/
H A Dcommon.h62 #define timespecclear(tsp) (tsp)->tv_sec = (time_t)((tsp)->tv_nsec = 0L)
63 #define timespecisset(tsp) ((tsp)->tv_sec || (tsp)->tv_nsec)
64 #define timespeccmp(tsp, usp, cmp) \
65 (((tsp)->tv_sec == (usp)->tv_sec) ? \
66 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
67 ((tsp)
[all...]
H A Deloop.c524 struct timespec now, ts, *tsp; local
555 tsp = &ts;
558 tsp = NULL;
560 if (tsp == NULL && ctx->events_len == 0) {
566 if (tsp == NULL)
568 else if (tsp->tv_sec > INT_MAX / 1000 ||
569 (tsp->tv_sec == INT_MAX / 1000 &&
570 (tsp->tv_nsec + 999999) / 1000000 > INT_MAX % 1000000))
573 timeout = (int)(tsp->tv_sec * 1000 +
574 (tsp
[all...]
H A Ddhcpcd-definitions.conf179 define 122 encap tsp
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/
H A D8-1.c119 struct timespec tsp, rem; local
124 tsp.tv_sec = TIMERSEC;
125 tsp.tv_nsec = 0;
126 if (nanosleep(&tsp, &rem) == -1) {
127 tsp = rem;
128 if (nanosleep(&tsp, &rem) == -1) {
/external/ltp/testcases/kernel/syscalls/utimensat/
H A Dutimensat01.c112 struct timespec *tsp; local
177 tsp = NULL;
198 tsp = ts;
226 printf("tsp is %p", tsp);
227 if (tsp != NULL) {
229 (long)tsp[0].tv_sec, (long)tsp[0].tv_nsec,
230 (long)tsp[1].tv_sec, (long)tsp[
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DBranchFolding.h57 SameTailElt(MPIterator mp, MachineBasicBlock::iterator tsp) argument
58 : MPIter(mp), TailStartPos(tsp) {}
/external/llvm/lib/CodeGen/
H A DBranchFolding.h67 SameTailElt(MPIterator mp, MachineBasicBlock::iterator tsp) argument
68 : MPIter(mp), TailStartPos(tsp) {}
/external/strace/tests/
H A Dppoll.c47 const kernel_ulong_t tsp,
51 long rc = syscall(__NR_ppoll, ufds, nfds, tsp, sigmask, sigsetsize);
45 sys_ppoll(const kernel_ulong_t ufds, const kernel_ulong_t nfds, const kernel_ulong_t tsp, const kernel_ulong_t sigmask, const kernel_ulong_t sigsetsize) argument
/external/strace/tests-m32/
H A Dppoll.c47 const kernel_ulong_t tsp,
51 long rc = syscall(__NR_ppoll, ufds, nfds, tsp, sigmask, sigsetsize);
45 sys_ppoll(const kernel_ulong_t ufds, const kernel_ulong_t nfds, const kernel_ulong_t tsp, const kernel_ulong_t sigmask, const kernel_ulong_t sigsetsize) argument
/external/strace/tests-mx32/
H A Dppoll.c47 const kernel_ulong_t tsp,
51 long rc = syscall(__NR_ppoll, ufds, nfds, tsp, sigmask, sigsetsize);
45 sys_ppoll(const kernel_ulong_t ufds, const kernel_ulong_t nfds, const kernel_ulong_t tsp, const kernel_ulong_t sigmask, const kernel_ulong_t sigsetsize) argument
/external/ltp/testcases/kernel/syscalls/ppoll/
H A Dppoll01.c214 struct timespec ts, *tsp = NULL; local
218 tsp = &ts;
235 sys_ret = tst_syscall(__NR_ppoll, tc->fds, tc->nfds, tsp,
/external/linux-kselftest/tools/testing/selftests/futex/functional/
H A Dfutex_requeue_pi.c287 struct timespec ts, *tsp = NULL; local
302 tsp = &ts;
321 args[i].timeout = tsp;
/external/libpng/contrib/tools/
H A Dpngcp.c455 unsigned int tsp; /* nsp from the last run; this is the member in struct:display
530 png_destroy_write_struct(&dp->write_pp, dp->tsp > 0 ? NULL : &dp->ip);
794 if (sp >= dp->tsp)
835 assert(sp == dp->tsp && sp < SL);
851 dp->tsp = sp+1U;
895 dp->nsp = dp->tsp;
919 assert(sp+1U == dp->tsp && !dp->stack[sp].end);
1130 dp->nsp = dp->tsp;
1168 * set up and dp->tsp will be greater than sp, otherwise a new entry
1173 * 1) When an option is pushed onto the stack dp->nsp and dp->tsp ar
[all...]
/external/python/cpython2/Lib/plat-sunos5/
H A DTYPES.py299 def TIMESTRUC_TO_TICK(tsp): return \
H A DIN.py427 def TIMESTRUC_TO_TICK(tsp): return \
H A DSTROPTS.py424 def TIMESTRUC_TO_TICK(tsp): return \
/external/blktrace/
H A Dblktrace.c502 static inline void make_timespec(struct timespec *tsp, long delta_msec) argument
507 tsp->tv_sec = now.tv_sec;
508 tsp->tv_nsec = 1000L * now.tv_usec;
510 tsp->tv_nsec += (delta_msec * 1000000L);
511 if (tsp->tv_nsec > 1000000000L) {
512 long secs = tsp->tv_nsec / 1000000000L;
514 tsp->tv_sec += secs;
515 tsp->tv_nsec -= (secs * 1000000000L);
/external/valgrind/coregrind/
H A Dm_libcfile.c623 struct vki_timespec *tsp; local
626 tsp = NULL;
630 tsp = &ts;
633 res = VG_(do_syscall4)(__NR_pollsys, (UWord)fds, nfds, (UWord)tsp, 0);
/external/valgrind/memcheck/tests/solaris/
H A Dscalar.stderr.exp2716 Syscall param lwp_cond_wait(tsp) contains uninitialised byte(s)
2738 Syscall param lwp_cond_wait(tsp) points to unaddressable byte(s)
4651 Syscall param lwp_mutex_timedlock(tsp) contains uninitialised byte(s)
4681 Syscall param lwp_mutex_timedlock(tsp) points to unaddressable byte(s)
4722 Syscall param lwp_rwlock_rdlock(tsp) contains uninitialised byte(s)
4753 Syscall param lwp_rwlock(tsp) points to unaddressable byte(s)
4766 Syscall param lwp_rwlock_wrlock(tsp) contains uninitialised byte(s)
4797 Syscall param lwp_rwlock(tsp) points to unaddressable byte(s)
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-solaris.c7399 /* int lwp_cond_wait(lwp_cond_t *cvp, lwp_mutex_t *mp, timespec_t *tsp,
7404 vki_lwp_mutex_t *, mp, vki_timespec_t *, tsp, int, check_part);
7414 PRE_MEM_READ("lwp_cond_wait(tsp)", ARG3, sizeof(vki_timespec_t));
9907 /* int lwp_mutex_timedlock(lwp_mutex_t *lp, timespec_t *tsp,
9913 timespec_t *, tsp, uintptr_t, owner);
9929 PRE_MEM_READ("lwp_mutex_timedlock(tsp)", ARG2, sizeof(vki_timespec_t));
9930 /*PRE_MEM_WRITE("lwp_mutex_timedlock(tsp)", ARG2,
9948 /* int lwp_rwlock_sys(int subcode, lwp_rwlock_t *rwlp, timespec_t *tsp); */
9960 lwp_rwlock_t *, rwlp, timespec_t *, tsp);
9965 lwp_rwlock_t *, rwlp, timespec_t *, tsp);
[all...]
H A Dsyswrap-linux.c1781 struct vki_timespec *, tsp, vki_sigset_t *, sigmask,
1794 PRE_MEM_READ( "ppoll(tsp)", ARG3, sizeof(struct vki_timespec) );
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 1015 milliseconds

12