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

/freebsd-10.0-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.0-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.0-release/sys/contrib/ipfilter/netinet/
H A Dip_frag.c1146 ipf_frag_pkt_next(softc, token, itp)
1149 ipfgeniter_t *itp;
1154 return ipf_frag_next(softc, token, itp, &softf->ipfr_list,
1157 return ipf_frag_next(softc, token, itp, &softf->ipfr_list);
1166 ipf_frag_nat_next(softc, token, itp)
1169 ipfgeniter_t *itp;
1174 return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist,
1177 return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist);
1185 /* itp(I) - pointer to generic iterator from caller */
1197 ipf_frag_next(softc, token, itp, to
[all...]
H A Dip_auth.c918 /* itp(I) - pointer to ipfgeniter structure */
926 ipf_auth_geniter(softc, token, itp, objp)
929 ipfgeniter_t *itp;
936 if (itp->igi_data == NULL) {
941 if (itp->igi_type != IPFGENITER_AUTH) {
947 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.0-release/sys/kern/
H A Dkern_time.c854 itimerdecr(struct itimerval *itp, int usec) argument
857 if (itp->it_value.tv_usec < usec) {
858 if (itp->it_value.tv_sec == 0) {
860 usec -= itp->it_value.tv_usec;
863 itp->it_value.tv_usec += 1000000;
864 itp->it_value.tv_sec--;
866 itp->it_value.tv_usec -= usec;
868 if (timevalisset(&itp->it_value))
872 if (timevalisset(&itp->it_interval)) {
873 itp
[all...]
/freebsd-10.0-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.0-release/sys/sys/
H A Dtime.h443 int itimerdecr(struct itimerval *itp, int usec);

Completed in 150 milliseconds