Searched refs:itp (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.1-release/lib/libc/gen/
H A Dalarm.c47 struct itimerval *itp = ⁢ local
49 timerclear(&itp->it_interval);
50 itp->it_value.tv_sec = secs;
51 itp->it_value.tv_usec = 0;
52 if (setitimer(ITIMER_REAL, itp, &oitv) < 0)
/freebsd-10.1-release/sbin/restore/
H A Ddirs.c135 struct inotab *itp; local
180 itp = allocinotab(&curfile, seekpt);
184 itp->t_size = seekpt - itp->t_seekpt;
217 struct inotab *itp; local
223 itp = inotablookup(ino);
224 if (itp == NULL) {
243 rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
267 rst_seekdir(dirp, bpt, itp
306 struct inotab *itp; local
496 struct inotab *itp; local
676 struct inotab *itp; local
720 struct inotab *itp; local
735 struct inotab *itp; local
772 struct inotab *itp; local
[all...]
/freebsd-10.1-release/sys/contrib/ipfilter/netinet/
H A Dip_frag.c1125 ipf_frag_pkt_next(softc, token, itp)
1128 ipfgeniter_t *itp;
1133 return ipf_frag_next(softc, token, itp, &softf->ipfr_list,
1136 return ipf_frag_next(softc, token, itp, &softf->ipfr_list);
1145 ipf_frag_nat_next(softc, token, itp)
1148 ipfgeniter_t *itp;
1153 return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist,
1156 return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist);
1164 /* itp(I) - pointer to generic iterator from caller */
1176 ipf_frag_next(softc, token, itp, to
[all...]
H A Dip_auth.c891 /* itp(I) - pointer to ipfgeniter structure */
899 ipf_auth_geniter(softc, token, itp, objp)
902 ipfgeniter_t *itp;
909 if (itp->igi_data == NULL) {
914 if (itp->igi_type != IPFGENITER_AUTH) {
920 objp->ipfo_ptr = itp->igi_data;
H A Dip_nat.c6610 /* itp(I) - pointer to ipfgeniter_t structure */
6617 ipf_nat_getnext(softc, t, itp, objp)
6620 ipfgeniter_t *itp;
6630 if (itp->igi_nitems != 1) {
6637 switch (itp->igi_type)
6703 objp->ipfo_ptr = itp->igi_data;
6705 switch (itp->igi_type)
6940 /* itp(I) - pointer to ipfgeniter_t structure */
6949 ipf_nat_iterator(softc, token, itp, obj)
6952 ipfgeniter_t *itp;
[all...]
H A Dip_state.c4821 /* itp(I) - pointer to ipfgeniter structure */
4828 ipf_state_iter(softc, token, itp, obj)
4831 ipfgeniter_t *itp;
4838 if (itp->igi_data == NULL) {
4843 if (itp->igi_nitems < 1) {
4848 if (itp->igi_type != IPFGENITER_STATE) {
4891 obj->ipfo_ptr = itp->igi_data;
H A Dfil.c8024 /* itp(I) - pointer to iterator data */
8027 /* the ipfgeniter_t structure at itp. */
8030 ipf_geniter(softc, token, itp)
8033 ipfgeniter_t *itp;
8037 switch (itp->igi_type)
8040 error = ipf_frag_pkt_next(softc, token, itp);
/freebsd-10.1-release/sys/kern/
H A Dkern_time.c862 itimerdecr(struct itimerval *itp, int usec) argument
865 if (itp->it_value.tv_usec < usec) {
866 if (itp->it_value.tv_sec == 0) {
868 usec -= itp->it_value.tv_usec;
871 itp->it_value.tv_usec += 1000000;
872 itp->it_value.tv_sec--;
874 itp->it_value.tv_usec -= usec;
876 if (timevalisset(&itp->it_value))
880 if (timevalisset(&itp->it_interval)) {
881 itp
[all...]
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_string.c2000 ICONV_CONST char *itp; local
2021 itp = (char *)(uintptr_t)_p;
2026 size_t result = iconv(cd, &itp, &remaining, &outp, &avail);
2068 itp += from_size;
2206 const uint8_t *itp; local
2230 itp = (const uint8_t *)_p;
2233 while (*itp && remaining > 0) {
2234 if (*itp > 127 && (sc->flag & SCONV_TO_UTF8)) {
2251 itp++;
2254 } else if (*itp > 12
[all...]
/freebsd-10.1-release/sys/sys/
H A Dtime.h444 int itimerdecr(struct itimerval *itp, int usec);

Completed in 264 milliseconds