| /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 | 794 struct itimerspec *itp; local 800 itp = &it->it_time; 801 if (itp->it_value.tv_nsec < nsec) { 802 if (itp->it_value.tv_sec == 0) { 804 nsec -= itp->it_value.tv_nsec; 807 itp->it_value.tv_nsec += 1000000000; 808 itp->it_value.tv_sec--; 810 itp->it_value.tv_nsec -= nsec; 812 if (timespecisset(&itp->it_value)) 816 if (timespecisset(&itp->it_interval)) [all...] |
| /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 | 2089 ICONV_CONST char *itp; local 2110 itp = (char *)(uintptr_t)_p; 2115 size_t result = iconv(cd, &itp, &remaining, &outp, &avail); 2157 itp += from_size; 2296 const uint8_t *itp; local 2317 itp = (const uint8_t *)_p; 2318 while (*itp && remaining > 0) { 2319 if (*itp > 127) { 2330 archive_strappend_char(as, *itp); 2332 ++itp; [all...] |
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| apps.c | 910 OSSL_PARAM itp[2]; local 966 itp[0] = OSSL_PARAM_construct_utf8_string(OSSL_STORE_PARAM_INPUT_TYPE, 968 itp[1] = OSSL_PARAM_construct_end(); 969 params = itp;
|