Home
last modified time | relevance | path

Searched refs:t_next (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/dports/security/clamav-lts/clamav-0.103.5/libclamav/
H A Dtext.c125 text *t_next = t_head->t_next; in textDestroy() local
131 t_head = t_next; in textDestroy()
211 t = t->t_next; in textAdd()
214 t_head->t_next = NULL; in textAdd()
262 t_head->t_next = t->t_next; in textMove()
273 while (t_head->t_next) in textMove()
295 t_head->t_next = t->t_next; in textMove()
296 t->t_next = NULL; in textMove()
356 t->t_next = NULL; in textToBlob()
386 t->t_next = NULL; in textToFileblob()
[all …]
H A Dmessage.c934 m->body_last->t_next = NULL; in messageAddLine()
1022 m->body_last->t_next = NULL; in messageAddStr()
1077 next = u->t_next; in messageMoveText()
1116 while (m->body_last->t_next) { in messageMoveText()
1117 m->body_last = m->body_last->t_next; in messageMoveText()
1294 t_line = t_line->t_next; in messageExport()
1556 last = last->t_next; in messageToText()
1570 last->t_next = NULL; in messageToText()
1631 t_line = t_line->t_next; in messageToText()
1720 last->t_next = NULL; in messageToText()
[all …]
/dports/security/clamav/clamav-0.104.2/libclamav/
H A Dtext.c125 text *t_next = t_head->t_next; in textDestroy() local
131 t_head = t_next; in textDestroy()
211 t = t->t_next; in textAdd()
214 t_head->t_next = NULL; in textAdd()
262 t_head->t_next = t->t_next; in textMove()
273 while (t_head->t_next) in textMove()
295 t_head->t_next = t->t_next; in textMove()
296 t->t_next = NULL; in textMove()
356 t->t_next = NULL; in textToBlob()
386 t->t_next = NULL; in textToFileblob()
[all …]
H A Dmessage.c934 m->body_last->t_next = NULL; in messageAddLine()
1022 m->body_last->t_next = NULL; in messageAddStr()
1077 next = u->t_next; in messageMoveText()
1116 while (m->body_last->t_next) { in messageMoveText()
1117 m->body_last = m->body_last->t_next; in messageMoveText()
1294 t_line = t_line->t_next; in messageExport()
1556 last = last->t_next; in messageToText()
1570 last->t_next = NULL; in messageToText()
1631 t_line = t_line->t_next; in messageToText()
1720 last->t_next = NULL; in messageToText()
[all …]
/dports/cad/ngspice_rework/ngspice-35/src/spicelib/parser/
H A Dinpsymt.c69 t->t_next = tab->INPtermsymtab[key]; in INPtermInsert()
102 t->t_next = tab->INPtermsymtab[key]; in INPmkTerm()
135 t->t_next = tab->INPtermsymtab[key]; in INPgndInsert()
176 t->t_next = tab->INPsymtab[key]; in INPinsert()
203 t->t_next = tab->INPsymtab[key]; in INPinsertNofree()
217 prevp = &t->t_next; in INPremove()
221 *prevp = t->t_next; in INPremove()
237 prevp = &t->t_next; in INPremTerm()
241 *prevp = t->t_next; in INPremTerm()
258 lt = t->t_next; in INPtabEnd()
[all …]
/dports/databases/mantis/mantisbt-2.25.2/core/
H A Dworkflow_api.php65 foreach ( $t_status_arr as $t_next => $t_next_label ) {
66 if( $t_status != $t_next ) {
67 $t_temp_workflow[] = $t_next . ':' . $t_next_label;
98 foreach ( $t_next_arr as $t_next => $t_next_label ) {
100 $t_default[$t_status] = $t_next;
102 $t_exit[$t_status][$t_next] = '';
103 $t_entry[$t_next][$t_status] = '';
/dports/cad/gtkwave/gtkwave-3.3.107/src/
H A Danalyzer.c201 t=t->t_next; in ClearTraces()
215 t=t->t_next; in ClearGroupTraces()
786 t->t_prev->t_next = t->t_next; in RemoveTrace()
827 t2=t->t_next; in FreeCutBuffer()
853 t=t->t_next; in CutBuffer()
916 t=t->t_next; in DeleteBuffer()
1077 t=t->t_next; in PasteBuffer()
1106 t=t->t_next; in PrependBuffer()
1129 t=t->t_next; in PrependBuffer()
1141 t=t->t_next; in PrependBuffer()
[all …]
/dports/math/octave/octave-6.4.0/scripts/ode/private/
H A Drunge_kutta_23.m27 ## @deftypefn {} {[@var{t_next}, @var{x_next}] =} runge_kutta_23 (@var{fun}, @var{t}, @var{x}, @va…
28 ## @deftypefnx {} {[@var{t_next}, @var{x_next}] =} runge_kutta_23 (@var{fun}, @var{t}, @var{x}, @va…
30 …pefnx {} {[@var{t_next}, @var{x_next}] =} runge_kutta_23 (@var{fun}, @var{t}, @var{x}, @var{dt}, @…
31 ## @deftypefnx {} {[@var{t_next}, @var{x_next}, @var{x_est}] =} runge_kutta_23 (@dots{})
32 ## @deftypefnx {} {[@var{t_next}, @var{x_next}, @var{x_est}, @var{k_vals_out}] =} runge_kutta_23 (@…
57 ## The optional sixth argument @var{t_next} (@code{t_next = t + dt}) specifies
59 ## order computed solution at time @var{t_next} (local extrapolation is
69 function [t_next, x_next, x_est, k] = runge_kutta_23 (fun, t, x, dt,
72 t_next = t + dt) variable
102 ## t_next = t + dt;
[all …]
H A Drunge_kutta_45_dorpri.m27 ## @deftypefn {} {[@var{t_next}, @var{x_next}] =} runge_kutta_45_dorpri (@var{@@fun}, @var{t}, @va…
28 ## @deftypefnx {} {[@var{t_next}, @var{x_next}] =} runge_kutta_45_dorpri (@var{@@fun}, @var{t}, @va…
30 … {} {[@var{t_next}, @var{x_next}] =} runge_kutta_45_dorpri (@var{@@fun}, @var{t}, @var{x}, @var{dt…
31 ## @deftypefnx {} {[@var{t_next}, @var{x_next}, @var{x_est}] =} runge_kutta_45_dorpri (@dots{})
32 ## @deftypefnx {} {[@var{t_next}, @var{x_next}, @var{x_est}, @var{k_vals_out}] =} runge_kutta_45_do…
55 ## Seventh input parameter is optional and is the time (@var{t_next}) to
61 ## @var{t_next} (local extrapolation).
70 function [t_next, x_next, x_est, k] = runge_kutta_45_dorpri (fun, t, x, dt,
73 t_next = t + dt) variable
113 ## t_next = t + dt;
[all …]
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavformat/
H A Ddash.c106 … const char *t_next = strchr(t_cur, '$'); // copy over everything up to the first '$' character in ff_dash_fill_tmpl_params() local
107 if (t_next) { in ff_dash_fill_tmpl_params()
108 int num_copy_bytes = FFMIN(t_next - t_cur, buffer_size - dst_pos - 1); in ff_dash_fill_tmpl_params()
112 t_cur = t_next; in ff_dash_fill_tmpl_params()
122 id_type = dash_read_tmpl_id(t_cur, format_tag, sizeof(format_tag), &t_next); in ff_dash_fill_tmpl_params()
144 t_next = &t_cur[1]; in ff_dash_fill_tmpl_params()
153 t_cur = t_next; in ff_dash_fill_tmpl_params()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavformat/
H A Ddash.c106 … const char *t_next = strchr(t_cur, '$'); // copy over everything up to the first '$' character in ff_dash_fill_tmpl_params() local
107 if (t_next) { in ff_dash_fill_tmpl_params()
108 int num_copy_bytes = FFMIN(t_next - t_cur, buffer_size - dst_pos - 1); in ff_dash_fill_tmpl_params()
112 t_cur = t_next; in ff_dash_fill_tmpl_params()
122 id_type = dash_read_tmpl_id(t_cur, format_tag, sizeof(format_tag), &t_next); in ff_dash_fill_tmpl_params()
144 t_next = &t_cur[1]; in ff_dash_fill_tmpl_params()
153 t_cur = t_next; in ff_dash_fill_tmpl_params()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavformat/
H A Ddash.c106 … const char *t_next = strchr(t_cur, '$'); // copy over everything up to the first '$' character in ff_dash_fill_tmpl_params() local
107 if (t_next) { in ff_dash_fill_tmpl_params()
108 int num_copy_bytes = FFMIN(t_next - t_cur, buffer_size - dst_pos - 1); in ff_dash_fill_tmpl_params()
112 t_cur = t_next; in ff_dash_fill_tmpl_params()
122 id_type = dash_read_tmpl_id(t_cur, format_tag, sizeof(format_tag), &t_next); in ff_dash_fill_tmpl_params()
144 t_next = &t_cur[1]; in ff_dash_fill_tmpl_params()
153 t_cur = t_next; in ff_dash_fill_tmpl_params()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavformat/
H A Ddash.c106 … const char *t_next = strchr(t_cur, '$'); // copy over everything up to the first '$' character in ff_dash_fill_tmpl_params() local
107 if (t_next) { in ff_dash_fill_tmpl_params()
108 int num_copy_bytes = FFMIN(t_next - t_cur, buffer_size - dst_pos - 1); in ff_dash_fill_tmpl_params()
112 t_cur = t_next; in ff_dash_fill_tmpl_params()
122 id_type = dash_read_tmpl_id(t_cur, format_tag, sizeof(format_tag), &t_next); in ff_dash_fill_tmpl_params()
144 t_next = &t_cur[1]; in ff_dash_fill_tmpl_params()
153 t_cur = t_next; in ff_dash_fill_tmpl_params()
/dports/multimedia/handbrake/ffmpeg-4.4/libavformat/
H A Ddash.c106 … const char *t_next = strchr(t_cur, '$'); // copy over everything up to the first '$' character in ff_dash_fill_tmpl_params() local
107 if (t_next) { in ff_dash_fill_tmpl_params()
108 int num_copy_bytes = FFMIN(t_next - t_cur, buffer_size - dst_pos - 1); in ff_dash_fill_tmpl_params()
112 t_cur = t_next; in ff_dash_fill_tmpl_params()
122 id_type = dash_read_tmpl_id(t_cur, format_tag, sizeof(format_tag), &t_next); in ff_dash_fill_tmpl_params()
144 t_next = &t_cur[1]; in ff_dash_fill_tmpl_params()
153 t_cur = t_next; in ff_dash_fill_tmpl_params()
/dports/cad/jspice3/jspice3-2.5/src/lib/inp/
H A Dinpsymt.c63 for (t = tab->INPtermsymtab[key]; t; t = t->t_next) {
81 t->t_next = tab->INPtermsymtab[key];
104 for (t = tab->INPtermsymtab[key]; t; t = t->t_next) {
118 t->t_next = tab->INPtermsymtab[key];
140 for (t = tab->INPtermsymtab[key]; t; t = t->t_next) {
158 t->t_next = tab->INPtermsymtab[key];
177 for (t = tab->INPsymtab[key]; t; t = t->t_next)
187 t->t_next = tab->INPsymtab[key];
207 lt = t->t_next;
214 ln = n->t_next;
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/util/test/
H A Dtest_scheduler.cpp72 CTime t_next = t + CTimeSpan(1, 0); in BOOST_AUTO_TEST_CASE() local
98 BOOST_CHECK( sch->HasTasksToExecute(t_next) ); in BOOST_AUTO_TEST_CASE()
100 task_info = sch->GetNextTaskToExecute(t_next); in BOOST_AUTO_TEST_CASE()
165 CTime t_next = t + period; in BOOST_AUTO_TEST_CASE() local
187 sch->TaskExecuted(id, t_next); in BOOST_AUTO_TEST_CASE()
201 BOOST_CHECK( sch->HasTasksToExecute(t_next) ); in BOOST_AUTO_TEST_CASE()
203 task_info = sch->GetNextTaskToExecute(t_next); in BOOST_AUTO_TEST_CASE()
212 sch->TaskExecuted(id, t_next); in BOOST_AUTO_TEST_CASE()
232 CTime t_next = t_fin + period; in BOOST_AUTO_TEST_CASE() local
260 BOOST_CHECK( sch->HasTasksToExecute(t_next) ); in BOOST_AUTO_TEST_CASE()
[all …]
/dports/x11-wm/pwm/pwm-20070720/
H A Dthing.c68 LINK_ITEM(parent->t_children, thing, t_next, t_prev); in link_thing()
76 LINK_ITEM_BEFORE(parent->t_children, before, thing, t_next, t_prev); in link_thing_before()
88 UNLINK_ITEM(parent->t_children, thing, t_next, t_prev); in unlink_thing()
100 first=first->t_next; in get_next_thing()
112 return get_next_thing(first->t_next, filt); in next_thing()
171 if(first->t_next!=NULL) in nth_thing()
172 first=first->t_next; in nth_thing()
/dports/mail/rspamd/rspamd-3.1/contrib/aho-corasick/
H A Dacism.c53 state = t_valid(psp, back) ? t_next(psp, back) : ROOT; in acism_lookup()
61 state = t_next(psp, next); in acism_lookup()
76 state = t_isleaf(psp, next) ? 0 : t_next(psp, next); in acism_lookup()
96 state = t_next(psp, next); in acism_lookup()
105 s = t_valid(psp, b) ? t_next(psp, b) : ROOT; in acism_lookup()
/dports/mail/rspamd-devel/rspamd-93430bb/contrib/aho-corasick/
H A Dacism.c53 state = t_valid(psp, back) ? t_next(psp, back) : ROOT; in acism_lookup()
61 state = t_next(psp, next); in acism_lookup()
76 state = t_isleaf(psp, next) ? 0 : t_next(psp, next); in acism_lookup()
96 state = t_next(psp, next); in acism_lookup()
105 s = t_valid(psp, b) ? t_next(psp, b) : ROOT; in acism_lookup()
/dports/security/tcpcrypt/tcpcrypt-0.5/src/
H A Dtcpcryptd.c49 struct timer *t_next; member
184 t->t_next = _state.s_timer_free.t_next; in alloc_timers()
202 _state.s_timer_free.t_next = t->t_next; in add_timer()
203 t->t_next = NULL; in add_timer()
219 cur = prev->t_next; in add_timer()
223 t->t_next = cur; in add_timer()
232 prev->t_next = t; in add_timer()
235 if (!t->t_next) in add_timer()
251 prev->t_next = t->t_next; in clear_timer()
253 t->t_next = _state.s_timer_free.t_next; in clear_timer()
[all …]
/dports/net/bmon/bmon-4.0/src/
H A Dutils.c372 if (!tok->t_next)
374 tok = tok->t_next;
382 if (!tok->t_next)
384 tok = tok->t_next;
393 if (!tok->t_next)
395 tok = tok->t_next;
405 if (!tok->t_next)
407 tok = tok->t_next;
420 for (tok = tok->t_next ; tok; tok = t) {
421 t = tok->t_next;
/dports/dns/opendnssec2/opendnssec-2.1.10/enforcer/src/enforcer/
H A Denforce_task.c58 time_t t_next; in perform_enforce() local
84 t_next = schedule_SUCCESS; in perform_enforce()
86 t_next = update(engine, dbconn, zone, policy, time_now(), &zone_updated); in perform_enforce()
94 (void)zone_db_set_next_change(zone, t_next); in perform_enforce()
134 return t_next; in perform_enforce()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/tbb-2018_U2/src/tbb/
H A Dcustom_scheduler.h493 task* t_next = NULL; in receive_or_steal_task() local
509 t_next = t->execute(); in receive_or_steal_task()
511 if (t_next) { in receive_or_steal_task()
512 __TBB_ASSERT( t_next->state()==task::allocated, in receive_or_steal_task()
514 reset_extra_state(t_next); in receive_or_steal_task()
515 __TBB_ISOLATION_EXPR( t_next->prefix().isolation = t->prefix().isolation ); in receive_or_steal_task()
517 affinity_id next_affinity=t_next->prefix().affinity; in receive_or_steal_task()
546 … tally_completion_of_predecessor(*t, __TBB_ISOLATION_ARG( t_next, t->prefix().isolation ) ); in receive_or_steal_task()
551 … __TBB_ASSERT( t_next, "reexecution requires that method execute() return another task" ); in receive_or_steal_task()
572 GATHER_STATISTIC( t_next ? ++my_counters.spawns_bypassed : 0 ); in receive_or_steal_task()
[all …]
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/filters/
H A Dthresholding.py701 t_next = np.mean(image)
703 t_next = initial_guess(image)
705 t_next = initial_guess - image_min
707 if not 0 < t_next < np.max(image):
724 iter_callback(t_next + image_min)
733 while abs(t_next - t_curr) > tolerance:
734 t_curr = t_next
743 t_next = ((mean_back - mean_fore)
751 t_curr = t_next
756 t_next = ((mean_back - mean_fore)
[all …]
/dports/devel/concurrentqueue/concurrentqueue-1.0.3-15-g0753496/benchmarks/tbb/
H A Dcustom_scheduler.h458 task* t_next = NULL; in receive_or_steal_task() local
474 t_next = t->execute(); in receive_or_steal_task()
476 if (t_next) { in receive_or_steal_task()
477 __TBB_ASSERT( t_next->state()==task::allocated, in receive_or_steal_task()
479 reset_extra_state(t_next); in receive_or_steal_task()
481 affinity_id next_affinity=t_next->prefix().affinity; in receive_or_steal_task()
495 tally_completion_of_predecessor(*s, t_next); in receive_or_steal_task()
509 tally_completion_of_predecessor(*t, t_next); in receive_or_steal_task()
514 … __TBB_ASSERT( t_next, "reexecution requires that method execute() return another task" ); in receive_or_steal_task()
535 GATHER_STATISTIC( t_next ? ++my_counters.spawns_bypassed : 0 ); in receive_or_steal_task()
[all …]

12345678910>>...12