Searched refs:times (Results 51 - 75 of 159) sorted by relevance

1234567

/freebsd-11.0-release/contrib/unbound/util/
H A Dwinsock_event.c136 base->times = rbtree_create(mini_ev_cmp);
137 if(!base->times) {
172 while((rbnode_t*)(p = (struct event*)rbtree_first(base->times))
193 /* event times out, remove it */
194 (void)rbtree_delete(base->times, p);
463 free(base->times);
565 (void)rbtree_insert(ev->ev_base->times, &ev->node);
584 (void)rbtree_delete(ev->ev_base->times, &ev->node);
/freebsd-11.0-release/crypto/heimdal/lib/krb5/
H A Dget_in_tkt.c187 if(creds->times.starttime) {
194 *a->req_body.from = creds->times.starttime;
196 if(creds->times.endtime){
198 *a->req_body.till = creds->times.endtime;
200 if(creds->times.renew_till){
207 *a->req_body.rtime = creds->times.renew_till;
H A Dget_for_creds.c373 *krb_cred_info->authtime = out_creds->times.authtime;
375 *krb_cred_info->starttime = out_creds->times.starttime;
377 *krb_cred_info->endtime = out_creds->times.endtime;
379 *krb_cred_info->renew_till = out_creds->times.renew_till;
H A Dsendauth.c142 this_cred.times.endtime = 0;
H A Dacache.c213 cred->times.authtime = incred->authtime;
214 cred->times.starttime = incred->starttime;
215 cred->times.endtime = incred->endtime;
216 cred->times.renew_till = incred->renew_till;
356 cred->authtime = incred->times.authtime;
357 cred->starttime = incred->times.starttime;
358 cred->endtime = incred->times.endtime;
359 cred->renew_till = incred->times.renew_till;
H A Dinit_creds_pw.c206 cred->times.starttime = now + start_time;
212 cred->times.endtime = now + tmp;
216 cred->times.renew_till = now + options->renew_life;
415 if (ctx->cred.times.renew_till)
651 if(creds->times.starttime) {
658 *a->req_body.from = creds->times.starttime;
660 if(creds->times.endtime){
662 *a->req_body.till = creds->times.endtime;
664 if(creds->times.renew_till){
671 *a->req_body.rtime = creds->times
[all...]
/freebsd-11.0-release/crypto/heimdal/kuser/
H A Dkdecode_ticket.c151 in.times.endtime = 0;
H A Dcopy_cred_cache.c115 ctx.mcreds.times.endtime = time(NULL) + t;
/freebsd-11.0-release/contrib/gcc/
H A Dipa-inline.c96 cgraph_estimate_size_after_inlining (int times, struct cgraph_node *to, argument
105 size = (what->global.insns - call_insns) * times + to->global.insns;
201 int times = 0; local
213 times++;
216 gcc_assert (times);
256 int times = 0; local
262 times = 1;
266 times++;
282 newsize = cgraph_estimate_size_after_inlining (times, to, what);
658 fprintf (dump_file, " called approx. %.2f times pe
[all...]
H A Dggc-common.c797 int times;
893 loc->times++;
962 size_t collected = 0, freed = 0, allocated = 0, overhead = 0, times = 0;
979 times += d->times;
1005 (long)d->times);
1011 (long)times);
796 int times; member in struct:loc_descriptor
961 size_t collected = 0, freed = 0, allocated = 0, overhead = 0, times = 0; local
H A Dloop-unroll.c50 -- complete peeling of loops that roll (small) constant times.
53 -- unrolling of loops that roll constant times; this is almost always
55 -- unrolling of loops that roll number of times that we can compute
68 how many times we should unroll the loop; the experiments I have made
441 ";; Unable to prove that the loop iterates constant times\n");
538 fprintf (dump_file, ";; Peeled loop completely, %d times\n", (int) npeel);
541 /* Decide whether to unroll LOOP iterating constant number of times
587 ";; Unable to prove that the loop iterates constant times\n");
633 loop->lpt_decision.times = best_unroll;
637 ";; Decided to unroll the constant times rollin
[all...]
H A Dcfgloop.h43 unsigned times; member in struct:lpt_decision
107 /* The probable number of times the loop is executed at runtime.
320 /* True if the loop iterates the constant number of times. */
/freebsd-11.0-release/lib/libc/include/
H A Dlibc_private.h383 int __sys_futimens(int fd, const struct timespec *times) __hidden;
385 const struct timespec *times, int flag) __hidden;
/freebsd-11.0-release/share/mk/
H A Dsrc.sys.mk6 # be reflected there so SRCCONF isn't included multiple times.
H A Dauto.obj.mk22 # We repeat the mkdir -p a number of times to try and work around this.
/freebsd-11.0-release/sys/sys/
H A Dstat.h330 int futimens(int fd, const struct timespec times[2]);
331 int utimensat(int fd, const char *path, const struct timespec times[2],
/freebsd-11.0-release/sys/compat/linux/
H A Dlinux_misc.c702 if (ldebug(times))
703 printf(ARGS(times, "*"));
782 if (args->times) {
783 if ((error = copyin(args->times, &lut, sizeof lut))) {
849 struct timespec times[2], *timesp = NULL; local
863 if (args->times != NULL) {
864 error = copyin(args->times, l_times, sizeof(l_times));
872 times[0].tv_sec = l_times[0].tv_sec;
876 times[0].tv_nsec = UTIME_OMIT;
879 times[
[all...]
/freebsd-11.0-release/contrib/libarchive/cpio/
H A Dcpio.c894 lafe_warnc(0, "Can't restore access times on this platform");
899 struct __timeval times[2];
901 struct timeval times[2];
907 times[1].tv_sec = archive_entry_mtime(entry);
908 times[1].tv_usec = archive_entry_mtime_nsec(entry) / 1000;
910 times[0].tv_sec = archive_entry_atime(entry);
911 times[0].tv_usec = archive_entry_atime_nsec(entry) / 1000;
914 if (fd >= 0 && futimes(fd, times) == 0)
918 * Some platform cannot restore access times if the file descriptor
927 if (lutimes(name, times) !
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/des/
H A Ddes_opts.c86 # include <sys/times.h>
325 /* The following if from times(3) man page. It may need to be changed */
370 times(&tstart);
373 times(&tend);
377 #else /* !times() */
396 # define print_name(name) fprintf(stderr,"Doing %s %ld times\n",name,cb);
/freebsd-11.0-release/contrib/ntp/include/
H A Dntp_refclock.h121 u_char ntimes; /* times following */
123 u_int32 stimes; /* times format sign array */
125 l_fp times[NCLKBUGTIMES]; /* real times */ member in struct:refclockbug
/freebsd-11.0-release/contrib/bmake/
H A Darch.c395 * since we'll be (non-)substituting them three times, but them's
1087 struct utimbuf times; /* Times for utime() call */ local
1096 times.actime = times.modtime = now;
1097 utime(gn->path, &times);
/freebsd-11.0-release/usr.sbin/timed/timed/
H A Dcorrect.c41 #include <sys/times.h>
/freebsd-11.0-release/crypto/heimdal/lib/kafs/
H A Dafskrb5.c104 kt->ct.BeginTimestamp = cred->times.starttime;
105 kt->ct.EndTimestamp = cred->times.endtime;
/freebsd-11.0-release/contrib/bmake/mk/
H A Dauto.obj.mk21 # We repeat the mkdir -p a number of times to try and work around this.
/freebsd-11.0-release/crypto/heimdal/lib/gssapi/krb5/
H A Dinit_sec_context.c239 this_cred.times.endtime = ts + time_req;
241 this_cred.times.endtime = 0;
256 ctx->lifetime = ctx->kcred->times.endtime;
341 creds.times.endtime = 0;
465 ctx->lifetime = ctx->kcred->times.endtime;

Completed in 391 milliseconds

1234567