| /freebsd-12-stable/contrib/gcc/ |
| D | timevar.c | 138 struct timevar_time_def start_time; member 178 static struct timevar_time_def start_time; variable 223 struct timevar_time_def *start_time, in timevar_accumulate() argument 226 timer->user += stop_time->user - start_time->user; in timevar_accumulate() 227 timer->sys += stop_time->sys - start_time->sys; in timevar_accumulate() 228 timer->wall += stop_time->wall - start_time->wall; in timevar_accumulate() 229 timer->ggc_mem += stop_time->ggc_mem - start_time->ggc_mem; in timevar_accumulate() 282 timevar_accumulate (&stack->timevar->elapsed, &start_time, &now); in timevar_push_1() 286 start_time = now; in timevar_push_1() 322 timevar_accumulate (&popped->timevar->elapsed, &start_time, &now); in timevar_pop_1() [all …]
|
| /freebsd-12-stable/contrib/tcpdump/ |
| D | print-cnfp.c | 75 uint32_t start_time; /* sys_uptime value at start of flow */ member 107 uint32_t start_time; /* sys_uptime value at start of flow */ member 141 uint32_t start_time; /* sys_uptime value at start of flow */ member 200 EXTRACT_32BITS(&nr->start_time)/1000, in cnfp_v1_print() 201 EXTRACT_32BITS(&nr->start_time)%1000, in cnfp_v1_print() 290 EXTRACT_32BITS(&nr->start_time)/1000, in cnfp_v5_print() 291 EXTRACT_32BITS(&nr->start_time)%1000, in cnfp_v5_print() 386 EXTRACT_32BITS(&nr->start_time)/1000, in cnfp_v6_print() 387 EXTRACT_32BITS(&nr->start_time)%1000, in cnfp_v6_print()
|
| /freebsd-12-stable/contrib/xz/src/xz/ |
| D | mytime.c | 21 static uint64_t start_time; variable 53 start_time = mytime_now(); in mytime_set_start_time() 61 return mytime_now() - start_time; in mytime_get_elapsed()
|
| /freebsd-12-stable/usr.sbin/makefs/ |
| D | makefs.c | 85 struct timespec start_time; variable 120 ch = clock_gettime(CLOCK_REALTIME, &start_time); in main() 123 start_time.tv_sec = start.tv_sec; in main() 124 start_time.tv_nsec = start.tv_usec * 1000; in main() 283 (long)start_time.tv_sec, (long)start_time.tv_nsec, in main() 284 ctime(&start_time.tv_sec)); in main()
|
| D | walk.c | 440 stbuf.st_ctime = start_time.tv_sec; in apply_specdir() 443 stbuf.st_ctimensec = start_time.tv_nsec; in apply_specdir() 525 dirnode->inode->st.st_ctime = start_time.tv_sec; in apply_specentry() 529 dirnode->inode->st.st_ctimensec = start_time.tv_nsec; in apply_specentry()
|
| /freebsd-12-stable/contrib/ofed/librdmacm/examples/ |
| D | cmtime.c | 112 #define start_time(s) gettimeofday(×[s][0], NULL) macro 360 start_time(STEP_CREATE_ID); in alloc_nodes() 386 start_time(STEP_DESTROY); in cleanup_nodes() 512 start_time(STEP_BIND); in run_client() 527 start_time(STEP_RESOLVE_ADDR); in run_client() 546 start_time(STEP_RESOLVE_ROUTE); in run_client() 564 start_time(STEP_CREATE_QP); in run_client() 580 start_time(STEP_CONNECT); in run_client() 597 start_time(STEP_DISCONNECT); in run_client()
|
| /freebsd-12-stable/share/dtrace/ |
| D | disklatency | 41 start_time[arg0] = timestamp; 45 /this->start = start_time[arg0]/ 53 start_time[arg0] = 0;
|
| D | disklatencycmd | 50 start_time[arg0] = timestamp; 54 /this->start = start_time[arg0]/ 62 start_time[arg0] = 0;
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | dsrec.c | 59 time_t start_time, end_time; in load_srec() local 77 start_time = time (NULL); in load_srec() 171 report_transfer_performance (data_count, start_time, end_time); in load_srec()
|
| D | dve3900-rom.c | 871 time_t start_time, end_time; /* for timing of download */ in r3900_load() local 916 start_time = time (NULL); in r3900_load() 930 report_transfer_performance (data_count, start_time, end_time); in r3900_load()
|
| /freebsd-12-stable/contrib/unbound/util/data/ |
| D | msgreply.h | 624 struct timeval* start_time); 645 struct timeval* start_time); 666 struct timeval* start_time); 688 struct timeval* start_time);
|
| D | msgreply.c | 1127 struct timeval* start_time) in inplace_cb_reply_call_generic() argument 1140 rcode, edns, &opt_list_out, repinfo, region, start_time, cb->id, cb->cb_arg); in inplace_cb_reply_call_generic() 1149 struct timeval* start_time) in inplace_cb_reply_call() argument 1153 qstate, rep, rcode, edns, repinfo, region, start_time); in inplace_cb_reply_call() 1160 struct timeval* start_time) in inplace_cb_reply_cache_call() argument 1164 qinfo, qstate, rep, rcode, edns, repinfo, region, start_time); in inplace_cb_reply_cache_call() 1171 struct timeval* start_time) in inplace_cb_reply_local_call() argument 1175 qinfo, qstate, rep, rcode, edns, repinfo, region, start_time); in inplace_cb_reply_local_call() 1182 struct timeval* start_time) in inplace_cb_reply_servfail_call() argument 1190 region, start_time); in inplace_cb_reply_servfail_call()
|
| /freebsd-12-stable/contrib/ncurses/ncurses/tinfo/ |
| D | write_entry.c | 272 static time_t start_time; /* time at start of writes */ in _nc_write_entry() 366 start_time = 0; in _nc_write_entry() 380 if (start_time > 0 && in _nc_write_entry() 382 && statbuf.st_mtime >= start_time) { in _nc_write_entry() 404 if (start_time == 0) { in _nc_write_entry() 406 || (start_time = statbuf.st_mtime) == 0) { in _nc_write_entry() 435 statbuf.st_mtime < start_time) { in _nc_write_entry()
|
| /freebsd-12-stable/sys/netinet/ |
| D | sctp_sysctl.c | 313 xladdr.start_time.tv_sec = (uint32_t)laddr->start_time.tv_sec; in sctp_sysctl_copy_out_local_addresses() 314 xladdr.start_time.tv_usec = (uint32_t)laddr->start_time.tv_usec; in sctp_sysctl_copy_out_local_addresses() 464 xstcb.start_time.tv_sec = (uint32_t)stcb->asoc.start_time.tv_sec; in sctp_sysctl_handle_assoclist() 465 xstcb.start_time.tv_usec = (uint32_t)stcb->asoc.start_time.tv_usec; in sctp_sysctl_handle_assoclist() 519 xraddr.start_time.tv_sec = (uint32_t)net->start_time.tv_sec; in sctp_sysctl_handle_assoclist() 520 xraddr.start_time.tv_usec = (uint32_t)net->start_time.tv_usec; in sctp_sysctl_handle_assoclist()
|
| /freebsd-12-stable/sys/contrib/octeon-sdk/ |
| D | cvmx-tim.h | 122 uint64_t start_time; /**< Time the timer started in cycles */ member 232 work_bucket = (((ticks_from_now * cvmx_tim.tick_cycles) + cycles - cvmx_tim.start_time) in cvmx_tim_add_entry()
|
| D | cvmx-tim.c | 174 cvmx_tim.start_time = 0; in cvmx_tim_setup() 248 cvmx_tim.start_time = cvmx_clock_get_count(CVMX_CLOCK_TIM); in cvmx_tim_start()
|
| /freebsd-12-stable/contrib/unbound/dynlibmod/examples/ |
| D | helloworld.c | 36 struct timeval* start_time, int id, void* callback); 122 struct timeval* start_time, int id, void* callback) { in reply_callback() argument
|
| /freebsd-12-stable/crypto/heimdal/lib/krb5/ |
| D | init_creds_pw.c | 185 krb5_deltat start_time, in init_cred() argument 205 if (start_time) in init_cred() 206 cred->times.starttime = now + start_time; in init_cred() 349 krb5_deltat start_time, in get_init_creds_common() argument 396 ret = init_cred(context, &ctx->cred, client, start_time, options); in get_init_creds_common() 413 if (start_time) in get_init_creds_common() 1350 krb5_deltat start_time, in krb5_init_creds_init() argument 1365 ret = get_init_creds_common(context, client, start_time, options, ctx); in krb5_init_creds_init() 1964 krb5_deltat start_time, in krb5_get_init_creds_password() argument 1974 ret = krb5_init_creds_init(context, client, prompter, data, start_time, options, &ctx); in krb5_get_init_creds_password() [all …]
|
| /freebsd-12-stable/sys/fs/nfsserver/ |
| D | nfs_nfsdsocket.c | 559 struct bintime start_time; in nfsrvd_dorpc() local 561 binuptime(&start_time); in nfsrvd_dorpc() 562 nfsrvd_statstart(nfsv3to4op[nd->nd_procnum], &start_time); in nfsrvd_dorpc() 579 /*now*/ NULL, /*then*/ &start_time); in nfsrvd_dorpc() 633 struct bintime start_time; in nfsrvd_compound() local 777 binuptime(&start_time); in nfsrvd_compound() 778 nfsrvd_statstart(op, &start_time); in nfsrvd_compound() 1094 /*then*/ &start_time); in nfsrvd_compound() 1109 /*then*/ &start_time); in nfsrvd_compound()
|
| /freebsd-12-stable/crypto/heimdal/kuser/ |
| D | kinit.c | 358 krb5_deltat start_time = 0; in get_new_tickets() local 481 start_time = tmp; in get_new_tickets() 513 start_time, in get_new_tickets() 524 start_time, in get_new_tickets() 554 start_time, in get_new_tickets()
|
| /freebsd-12-stable/usr.bin/truss/ |
| D | truss.h | 111 struct timespec start_time; member
|
| /freebsd-12-stable/contrib/unbound/services/ |
| D | mesh.c | 277 &m->reply_list->start_time); in mesh_make_new_space() 1162 struct mesh_cb* r, struct timeval* start_time) in mesh_do_callback() argument 1183 rep, rcode, &r->edns, NULL, m->s.region, start_time)) in mesh_do_callback() 1187 &r->edns, NULL, m->s.region, start_time)) in mesh_do_callback() 1204 LDNS_RCODE_NOERROR, &r->edns, NULL, m->s.region, start_time) || in mesh_do_callback() 1352 rep, rcode, &r->edns, &r->query_reply, m->s.region, &r->start_time)) in mesh_send_reply() 1356 &r->edns, &r->query_reply, m->s.region, &r->start_time)) in mesh_send_reply() 1392 LDNS_RCODE_NOERROR, &r->edns, &r->query_reply, m->s.region, &r->start_time) || in mesh_send_reply() 1399 rep, LDNS_RCODE_SERVFAIL, &r->edns, &r->query_reply, m->s.region, &r->start_time)) in mesh_send_reply() 1414 timeval_subtract(&duration, &end_time, &r->start_time); in mesh_send_reply() [all …]
|
| /freebsd-12-stable/contrib/wpa/hostapd/ |
| D | hostapd.eap_user_sqlite | 37 start_time TEXT,
|
| /freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/ |
| D | kmp_stats.h | 667 void push_back(uint64_t start_time, uint64_t stop_time, int nest_level, in push_back() argument 680 kmp_stats_event(start_time, stop_time, nest_level, name); in push_back() 762 inline void push_event(uint64_t start_time, uint64_t stop_time, in push_event() argument 764 _event_vector.push_back(start_time, stop_time, nest_level, name); in push_event()
|
| /freebsd-12-stable/contrib/unbound/dynlibmod/ |
| D | dynlibmod.c | 217 struct timeval* start_time, int id, void* callback) { in dynlib_inplace_cb_reply_generic() argument 219 …r->cb)(qinfo, qstate, rep, rcode, edns, opt_list_out, repinfo, region, start_time, id, cb_pair->cb… in dynlib_inplace_cb_reply_generic()
|