HomeSort by: relevance | last modified time | path
    Searched defs:itp (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/libc/gen/
alarm.c 56 struct itimerval *itp = ⁢ local
58 timerclear(&itp->it_interval);
59 itp->it_value.tv_sec = secs;
60 itp->it_value.tv_usec = 0;
61 if (setitimer(ITIMER_REAL, itp, &oitv) == -1)
  /src/usr.bin/tip/aculib/
courier.c 344 struct itimerval *itp = &itv; local
348 timerclear(&itp->it_interval);
349 timerclear(&itp->it_value);
350 if (setitimer(ITIMER_REAL, itp, &oitv) < 0)
357 itp->it_value.tv_sec = napms/1000;
358 itp->it_value.tv_usec = ((napms%1000)*1000);
363 (void)setitimer(ITIMER_REAL, itp, NULL);
t3000.c 354 struct itimerval *itp = &itv; local
358 timerclear(&itp->it_interval);
359 timerclear(&itp->it_value);
360 if (setitimer(ITIMER_REAL, itp, &oitv) < 0)
367 itp->it_value.tv_sec = napms/1000;
368 itp->it_value.tv_usec = ((napms%1000)*1000);
373 (void)setitimer(ITIMER_REAL, itp, NULL);
  /src/sbin/restore/
dirs.c 150 struct inotab *itp; local
194 itp = allocinotab(&curfile, seekpt);
198 itp->t_size = seekpt - itp->t_seekpt;
231 struct inotab *itp; local
237 itp = inotablookup(ino);
238 if (itp == NULL) {
256 rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
280 rst_seekdir(dirp, bpt, itp->t_seekpt)
319 struct inotab *itp; local
536 struct inotab *itp; local
715 struct inotab *itp; local
759 struct inotab *itp; local
774 struct inotab *itp; local
811 struct inotab *itp; local
    [all...]
  /src/sys/kern/
kern_time.c 781 struct itimerspec *itp; local
787 itp = &it->it_time;
788 if (itp->it_value.tv_nsec < nsec) {
789 if (itp->it_value.tv_sec == 0) {
791 nsec -= itp->it_value.tv_nsec;
794 itp->it_value.tv_nsec += 1000000000;
795 itp->it_value.tv_sec--;
797 itp->it_value.tv_nsec -= nsec;
799 if (timespecisset(&itp->it_value))
803 if (timespecisset(&itp->it_interval))
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/lib/
apps.c 905 OSSL_PARAM itp[2]; local
961 itp[0] = OSSL_PARAM_construct_utf8_string(OSSL_STORE_PARAM_INPUT_TYPE,
963 itp[1] = OSSL_PARAM_construct_end();
964 params = itp;
  /src/crypto/external/bsd/openssl/dist/apps/lib/
apps.c 883 OSSL_PARAM itp[2]; local
937 itp[0] = OSSL_PARAM_construct_utf8_string(OSSL_STORE_PARAM_INPUT_TYPE,
939 itp[1] = OSSL_PARAM_construct_end();
940 params = itp;
  /src/external/bsd/libarchive/dist/libarchive/
archive_string.c 2086 ICONV_CONST char *itp; local
2107 itp = (char *)(uintptr_t)_p;
2112 size_t result = iconv(cd, &itp, &remaining, &outp, &avail);
2154 itp += from_size;
2293 const uint8_t *itp; local
2314 itp = (const uint8_t *)_p;
2315 while (*itp && remaining > 0) {
2316 if (*itp > 127) {
2327 archive_strappend_char(as, *itp);
2329 ++itp;
    [all...]

Completed in 36 milliseconds