Home
last modified time | relevance | path

Searched refs:temp_time (Results 1 – 25 of 126) sorted by relevance

123456

/dports/net/mpich2/mpich2-1.5/src/mpe2/src/unused/src/
H A Dmpe_log_adjusttime.c24 double temp_time, dif; in MPE_Log_adjtime1() local
36 if (temp_time != 0) { in MPE_Log_adjtime1()
37 dif = temp_time - MPE_Log_tinit; in MPE_Log_adjtime1()
75 MOVEDBL( &temp_time, &ap->time );
78 temp_time );
81 sync_end = temp_time;
83 sync_start = temp_time;
129 MOVEDBL( &temp_time, &ap->time );
130 if (temp_time) {
131 adjustedTime = temp_time * sk + goff;
[all …]
H A Dmpe_log_merge.c197 double temp_time; local
201 MOVEDBL( &temp_time, &hdr->time );
252 temp_time*1000000, i[1], i[2] );
256 i[0], temp_time*1000000, str );
259 fprintf( fp, "0 0 0 %.0f\n", temp_time*1000000);
652 double temp_time; local
660 MOVEDBL( &temp_time, &recHdr->time );
662 *((int*)(recHdr+1)), recHdr->len, recHdr->event, temp_time );
683 double temp_time; local
H A Dmpe_log_genproc.c183 double temp_time; local
190 MOVEDBL( &temp_time, &recHdr->time );
192 MPE_Log_procid, recHdr->len, recHdr->event, temp_time );
/dports/irc/ircd-ratbox/ircd-ratbox-3.0.10/modules/
H A Dm_xline.c81 const char *reason, int temp_time, int perm);
99 int temp_time; in mo_xline() local
108 if((temp_time = valid_temp_time(parv[loc])) >= 0) in mo_xline()
112 temp_time = 0; in mo_xline()
144 target_server, temp_time, name, reason); in mo_xline()
152 "%d %s 2 :%s", temp_time, name, reason); in mo_xline()
174 int temp_time; in me_xline() local
180 temp_time = atoi(parv[1]); in me_xline()
321 if(temp_time > 0) in apply_xline()
324 aconf->hold = rb_current_time() + temp_time; in apply_xline()
[all …]
H A Dm_resv.c86 int temp_time; in mo_resv() local
97 if((temp_time = valid_temp_time(parv[loc])) >= 0) in mo_resv()
101 temp_time = 0; in mo_resv()
131 target_server, temp_time, name, reason); in mo_resv()
139 "%d %s 0 :%s", temp_time, name, reason); in mo_resv()
181 if(temp_time) in notify_resv()
189 temp_time / 60, name); in notify_resv()
261 if(temp_time > 0) in parse_resv()
264 aconf->hold = rb_current_time() + temp_time; in parse_resv()
310 if(temp_time > 0) in parse_resv()
[all …]
/dports/irc/ircd-ratbox-devel/ircd-ratbox-3.0.7/modules/
H A Dm_resv.c86 int temp_time; in mo_resv() local
97 if((temp_time = valid_temp_time(parv[loc])) >= 0) in mo_resv()
101 temp_time = 0; in mo_resv()
131 target_server, temp_time, name, reason); in mo_resv()
139 "%d %s 0 :%s", temp_time, name, reason); in mo_resv()
181 if(temp_time) in notify_resv()
189 temp_time / 60, name); in notify_resv()
261 if(temp_time > 0) in parse_resv()
264 aconf->hold = rb_current_time() + temp_time; in parse_resv()
310 if(temp_time > 0) in parse_resv()
[all …]
H A Dm_xline.c81 const char *reason, int temp_time, int perm);
99 int temp_time; in mo_xline() local
108 if((temp_time = valid_temp_time(parv[loc])) >= 0) in mo_xline()
112 temp_time = 0; in mo_xline()
144 target_server, temp_time, name, reason); in mo_xline()
152 "%d %s 2 :%s", temp_time, name, reason); in mo_xline()
174 int temp_time; in me_xline() local
180 temp_time = atoi(parv[1]); in me_xline()
321 if(temp_time > 0) in apply_xline()
324 aconf->hold = rb_current_time() + temp_time; in apply_xline()
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/bioinspired/samples/ocl/
H A Dretina_ocl.cpp73 int64 temp_time = 0, total_time = 0; in main() local
80 temp_time = cv::getTickCount(); in main()
88 temp_time = cv::getTickCount(); in main()
96 temp_time = (cv::getTickCount() - temp_time); in main()
97 total_time += temp_time; in main()
98 …printf("Frame id %2d: %3.4fms\n", loop_counter, (double)temp_time / cv::getTickFrequency() * 1000.… in main()
/dports/audio/csound/csound-6.15.0/Opcodes/
H A Dphysmod.c202 MYFLT temp_time, alpha; in clarin() local
216 temp_time = vTime; in clarin()
229 alpha = temp_time - (MYFLT)temp; in clarin()
409 MYFLT temp_time, alpha; in flute() local
425 temp_time = v_time; in flute()
439 alpha = temp_time - (MYFLT)temp; in flute()
633 MYFLT temp_time, alpha; in bowed() local
641 temp_time = p->v_time; in bowed()
901 MYFLT temp_time, alpha; in brass() local
913 temp_time = vTime; in brass()
[all …]
H A Dmoog1.c121 MYFLT temp_time, alpha; in Samp_tick() local
130 temp_time = p->time; in Samp_tick()
133 temp_time += p->phase; /* Add phase offset */ in Samp_tick()
134 while (temp_time >= p->wave->flen) /* Check for end of sound */ in Samp_tick()
135 temp_time -= p->wave->flen; /* loop back to beginning */ in Samp_tick()
136 while (temp_time < FL(0.0)) /* Check for end of sound */ in Samp_tick()
137 temp_time += p->wave->flen; /* loop back to beginning */ in Samp_tick()
144 alpha = temp_time - (MYFLT)temp; in Samp_tick()
229 MYFLT temp_time, alpha; in Moog1() local
242 temp_time = p->attk.time; in Moog1()
[all …]
H A Dmodal4.c153 MYFLT temp_time, alpha, lastOutput; in Modal4_tick() local
164 temp_time = m->w_time; in Modal4_tick()
168 temp_time += m->w_phaseOffset; /* Add phase offset */ in Modal4_tick()
200 temp_time = m->v_time; in Modal4_tick()
204 temp_time += m->v_phaseOffset; /* Add phase offset */ in Modal4_tick()
205 while (temp_time >= m->vibr->flen) /* Check for end of sound */ in Modal4_tick()
206 temp_time -= m->vibr->flen; /* loop back to beginning */ in Modal4_tick()
207 while (temp_time < FL(0.0)) /* Check for end of sound */ in Modal4_tick()
208 temp_time += m->vibr->flen; /* loop back to beginning */ in Modal4_tick()
212 itemp = (int32) temp_time; /* Integer part of time address */ in Modal4_tick()
[all …]
H A Dmandolin.c49 MYFLT temp_time, alpha; in infoTick() local
61 temp_time = p->s_time; in infoTick()
63 temp = (int32) temp_time; /* Integer part of time address */ in infoTick()
64 alpha = temp_time - (MYFLT) temp; /* fractional part of time address */ in infoTick()
H A Ddate.c81 time_t temp_time; in datestringset() local
91 if (tmp <= 0) temp_time = time(NULL); in datestringset()
92 else temp_time = (time_t)tmp; in datestringset()
94 time_string = ctime(&temp_time); in datestringset()
/dports/mail/evolution/evolution-3.42.1/src/plugins/save-calendar/
H A Drdf-format.c260 ICalTime *temp_time; in do_save_calendar_rdf() local
290 temp_time = e_cal_component_get_completed (comp); in do_save_calendar_rdf()
291 add_time_to_rdf (node, "completed", temp_time); in do_save_calendar_rdf()
292 g_clear_object (&temp_time); in do_save_calendar_rdf()
294 temp_time = e_cal_component_get_created (comp); in do_save_calendar_rdf()
295 add_time_to_rdf (node, "created", temp_time); in do_save_calendar_rdf()
296 g_clear_object (&temp_time); in do_save_calendar_rdf()
337 temp_time = e_cal_component_get_last_modified (comp); in do_save_calendar_rdf()
338 add_time_to_rdf (node, "lastModified",temp_time); in do_save_calendar_rdf()
339 g_clear_object (&temp_time); in do_save_calendar_rdf()
H A Dcsv-format.c402 ICalTime *temp_time; in do_save_calendar_csv() local
432 temp_time = e_cal_component_get_completed (comp); in do_save_calendar_csv()
433 line = add_time_to_csv (line, temp_time, config); in do_save_calendar_csv()
434 g_clear_object (&temp_time); in do_save_calendar_csv()
436 temp_time = e_cal_component_get_created (comp); in do_save_calendar_csv()
437 line = add_time_to_csv (line, temp_time, config); in do_save_calendar_csv()
438 g_clear_object (&temp_time); in do_save_calendar_csv()
489 temp_time = e_cal_component_get_last_modified (comp); in do_save_calendar_csv()
495 line = add_time_to_csv (line, temp_time, config); in do_save_calendar_csv()
496 g_clear_object (&temp_time); in do_save_calendar_csv()
/dports/math/xspread/xspread-3.1.1c.orig/
H A Dformat.c569 char *temp_time; local
586 temp_time = ctime (&secs);
587 buf[0] = temp_time[8];
588 buf[1] = temp_time[9];
590 buf[3] = temp_time[4];
591 buf[4] = temp_time[5];
592 buf[5] = temp_time[6];
594 buf[7] = temp_time[22];
595 buf[8] = temp_time[23];
/dports/net-mgmt/nagios/nagios-3.5.1/common/
H A Dshared.c491 unsigned long temp_time; in get_time_breakdown() local
497 temp_time = raw_time; in get_time_breakdown()
499 temp_days = temp_time / 86400; in get_time_breakdown()
500 temp_time -= (temp_days * 86400); in get_time_breakdown()
501 temp_hours = temp_time / 3600; in get_time_breakdown()
502 temp_time -= (temp_hours * 3600); in get_time_breakdown()
503 temp_minutes = temp_time / 60; in get_time_breakdown()
504 temp_time -= (temp_minutes * 60); in get_time_breakdown()
505 temp_seconds = (int)temp_time; in get_time_breakdown()
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/jobcomp/mysql/
H A Dmysql_jobcomp_process.c65 time_t temp_time; in mysql_jobcomp_process_get_jobs() local
138 temp_time = atoi(row[JOBCOMP_REQ_STARTTIME]); in mysql_jobcomp_process_get_jobs()
139 slurm_make_time_str(&temp_time, in mysql_jobcomp_process_get_jobs()
144 temp_time = atoi(row[JOBCOMP_REQ_ENDTIME]); in mysql_jobcomp_process_get_jobs()
145 slurm_make_time_str(&temp_time, in mysql_jobcomp_process_get_jobs()
/dports/net-mgmt/nagios4/nagios-4.4.6/common/
H A Dshared.c621 unsigned long temp_time; in get_time_breakdown() local
627 temp_time = raw_time; in get_time_breakdown()
629 temp_days = temp_time / 86400; in get_time_breakdown()
630 temp_time -= (temp_days * 86400); in get_time_breakdown()
631 temp_hours = temp_time / 3600; in get_time_breakdown()
632 temp_time -= (temp_hours * 3600); in get_time_breakdown()
633 temp_minutes = temp_time / 60; in get_time_breakdown()
634 temp_time -= (temp_minutes * 60); in get_time_breakdown()
635 temp_seconds = (int)temp_time; in get_time_breakdown()
/dports/net-im/tox/c-toxcore-0.2.13/toxcore/
H A Dnet_crypto.c249 const uint64_t temp_time = mono_time_get(mono_time); in create_cookie() local
250 memcpy(contents, &temp_time, sizeof(temp_time)); in create_cookie()
280 const uint64_t temp_time = mono_time_get(mono_time); in open_cookie() local
282 if (cookie_time + COOKIE_TIMEOUT < temp_time || temp_time < cookie_time) { in open_cookie()
1006 if ((sent_time + rtt_time) < temp_time) { in handle_request_packet()
1316 dt->sent_time = temp_time; in send_requested_packets()
2512 conn->last_request_packet_sent = temp_time; in send_crypto_packets()
2552 conn->packet_counter_set = temp_time; in send_crypto_packets()
2646 conn->last_packets_left_set = temp_time; in send_crypto_packets()
2663 conn->last_packets_left_set = temp_time; in send_crypto_packets()
[all …]
/dports/security/suricata/suricata-6.0.4/src/
H A Dsource-pcap-file-directory-helper.c342 struct timespec temp_time; in PcapDirectoryPopulateBuffer() local
343 memset(&temp_time, 0, sizeof(struct timespec)); in PcapDirectoryPopulateBuffer()
345 if (PcapDirectoryGetModifiedTime(pathbuff, &temp_time) == 0) { in PcapDirectoryPopulateBuffer()
348 (uintmax_t)SCTimespecAsEpochMillis(&temp_time), in PcapDirectoryPopulateBuffer()
353 if (CompareTimes(&temp_time, &pv->shared->last_processed) <= 0) { in PcapDirectoryPopulateBuffer()
357 else if (CompareTimes(&temp_time, older_than) >= 0) { in PcapDirectoryPopulateBuffer()
382 CopyTime(&temp_time, &file_to_add->modified_time); in PcapDirectoryPopulateBuffer()
/dports/databases/qof/qof-0.8.8/qof/test/
H A Dtest-book-merge.c283 QofTime *base_time, *temp_time; in test_merge() local
429 temp_time = qof_time_add_secs_copy (base_time, 65); in test_merge()
430 do_test ((TRUE == qof_time_is_valid (temp_time)), in test_merge()
432 obj_setDate (target_obj, temp_time); in test_merge()
479 qof_time_free (temp_time); in test_merge()
480 temp_time = target_obj->date; in test_merge()
497 qd = qof_date_from_qtime (temp_time); in test_merge()
505 do_test ((qof_time_cmp (base_time, temp_time) == 0), in test_merge()
/dports/net/mpich2/mpich2-1.5/src/mpe2/src/unused/include/
H A Dmpe_log_genproc.h83 double temp_time; \
87 temp_time = MPI_Wtime(); \
88 MOVEDBL( &b->time, &temp_time ); \
/dports/audio/ario/ario-1.6/src/
H A Dario-util.c88 int temp_time; in ario_util_format_total_time() local
96 temp_time = (time % 86400); in ario_util_format_total_time()
99 hours = (int)(temp_time / 3600); in ario_util_format_total_time()
100 temp_time = (temp_time % 3600); in ario_util_format_total_time()
103 min = (int)(temp_time / 60); in ario_util_format_total_time()
106 sec = (temp_time % 60); in ario_util_format_total_time()
/dports/science/gromacs/gromacs-2021.4/src/gromacs/mdrunutility/
H A Dprinttime.cpp117 time_t temp_time = static_cast<time_t>(the_time); in print_date_and_time() local
119 auto timebuf = gmx_ctime_r(&temp_time); in print_date_and_time()

123456