Home
last modified time | relevance | path

Searched refs:tOld (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/dports/math/scilab/scilab-6.1.1/scilab/modules/scicos/src/c/
H A Dddaskr.h53 typedef void (*DDASResFn) (realtype *tOld, realtype *y, realtype *yp, realtype *res, int *flag, rea…
54 typedef void (*DDASRootFn) (int *neq, realtype *tOld, realtype *y, int *ng, realtype *groot, realty…
55 typedef void (*DDASJacPsolFn) (realtype *res, int *ires, int *neq, realtype *tOld, realtype *actual…
58 typedef void (*DDASPsolFn) (int *neq, realtype *tOld, realtype *actual, realtype *actualP,
99 int DDaskrReInit (void * ddaskr_mem, realtype tOld, N_Vector yy0, N_Vector yp0);
135 int DDaskrSolve (void * ddaskr_mem, realtype tOut, realtype * tOld, N_Vector yOut, N_Vector ypOut, …
H A Dlsodar.c189 int LSodarReInit (void * lsodar_mem, realtype tOld, N_Vector y) in LSodarReInit() argument
211 tStart = tOld; in LSodarReInit()
388 int LSodar (void * lsodar_mem, realtype tOut, N_Vector yOut, realtype * tOld, int itask) in LSodar() argument
417 tStart = *tOld; in LSodar()
425 *tOld = tStart; in LSodar()
H A Dlsodar.h78 int LSodarReInit (void * lsodar_mem, realtype tOld, N_Vector y);
93 int LSodar (void * lsodar_mem, realtype tOut, N_Vector yVec, realtype * tOld, int itask);
H A Dddaskr.c264 int DDaskrReInit (void * ddaskr_mem, realtype tOld, N_Vector yy0, N_Vector yp0) in DDaskrReInit() argument
293 tStart = tOld; in DDaskrReInit()
734 int DDaskrSolve (void * ddaskr_mem, realtype tOut, realtype * tOld, N_Vector yOut, N_Vector ypOut, … in DDaskrSolve() argument
759 if (tOld == NULL) in DDaskrSolve()
775 tStart = *tOld; in DDaskrSolve()
785 *tOld = tStart; in DDaskrSolve()
H A Dscicos.c266 static void simblklsodar(int * nequations, realtype * tOld, realtype * actual, realtype * res);
267 static void grblklsodar(int * nequations, realtype * tOld, realtype * actual, int * ngc, realtype *…
273 static void psol(int *nequations, realtype *tOld, realtype *actual, realtype *actualP,
4183 static void simblklsodar(int * nequations, realtype * tOld, realtype * actual, realtype * res) in simblklsodar() argument
4188 tx = (double) * tOld; in simblklsodar()
4217 tx = (double) * tOld; in grblklsodar()
4370 tx = (double) * tOld; in simblkddaskr()
4404 tx = (double) * tOld; in grblkddaskr()
4442 tx = *tOld; in jacpsol()
4459 simblkddaskr(tOld, actual, actualP, e, ires, dummy1, dummy2); in jacpsol()
[all …]
/dports/audio/ft2play/ft2play-5730b16/ft2play/src/
H A Dposix.c53 static struct termios tOld, tNew; variable
89 tcgetattr(0, &tOld); in modifyTerminal()
91 tNew = tOld; in modifyTerminal()
104 tcsetattr(0, TCSANOW, &tOld); in revertTerminal()
/dports/science/libgeodecomp/libgeodecomp-0.4.0/src/misc/test/unit/
H A Dscopedtimertest.h23 double tOld = ScopedTimer::time(); in testTimeOverflow() local
29 TS_ASSERT(tNew > tOld); in testTimeOverflow()
30 tOld = tNew; in testTimeOverflow()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Security/
H A DFormsAuthentication.cs366 public static FormsAuthenticationTicket RenewTicketIfOld (FormsAuthenticationTicket tOld) in RenewTicketIfOld() argument
368 if (tOld == null) in RenewTicketIfOld()
372 TimeSpan toIssue = now - tOld.IssueDate; in RenewTicketIfOld()
373 TimeSpan toExpiration = tOld.Expiration - now; in RenewTicketIfOld()
375 return tOld; in RenewTicketIfOld()
377 FormsAuthenticationTicket tNew = tOld.Clone (); in RenewTicketIfOld()
378 tNew.SetDates (now, now + (tOld.Expiration - tOld.IssueDate)); in RenewTicketIfOld()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Security/
H A DFormsAuthentication.cs612 public static FormsAuthenticationTicket RenewTicketIfOld(FormsAuthenticationTicket tOld) { in RenewTicketIfOld() argument
613 if (tOld == null) in RenewTicketIfOld()
617 TimeSpan ticketAge = utcNow - tOld.IssueDateUtc; in RenewTicketIfOld()
618 TimeSpan ticketRemainingLifetime = tOld.ExpirationUtc - utcNow; in RenewTicketIfOld()
621 return tOld; // no need to renew in RenewTicketIfOld()
626 TimeSpan originalTicketTotalLifetime = tOld.ExpirationUtc - tOld.IssueDateUtc; in RenewTicketIfOld()
630 tOld.Version /* version */, in RenewTicketIfOld()
631 tOld.Name /* name */, in RenewTicketIfOld()
634 tOld.IsPersistent /* isPersistent */, in RenewTicketIfOld()
635 tOld.UserData /* userData */, in RenewTicketIfOld()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/differential_equations/src/c/
H A DEx-daskr.c8 void pjac1( resfunc res, int *ires, int *nequations, double *tOld, double *actual, double *actualP, in pjac1() argument
26 tx = *tOld; in pjac1()
76 void psol1( int *nequations, double *tOld, double *actual, double *actualP, in psol1() argument
H A DEx-daskr.h25 void pjac1( resfunc res, int *ires, int *nequations, double *tOld, double *actual, double *actualP,
29 void psol1( int *nequations, double *tOld, double *actual, double *actualP,
/dports/devel/p5-Inline-CPP/Inline-CPP-0.80/t/
H A D08cppguess.t26 "\tOld Makefile.PL: [$old_compiler].\n";
30 "\tOld Makefile.PL: [$old_libs].";
/dports/graphics/ospray/ospray-2.8.0/ospray/common/
H A DFilterIntersect.ih44 const float tOld = ray->t;
62 ray->t = tOld;
81 ray->t = tOld;
/dports/math/gfan/gfan0.6.2/src/
H A Dintegergb.cpp287 IntegerVectorList tOld; in changeCone() local
288 tOld.push_back(ridgeVector); in changeCone()
289 tOld.push_back(-rayVector); in changeCone()
290 MatrixTermOrder TOld(tOld); in changeCone()
/dports/math/gfanlib/gfan0.6.2/src/
H A Dintegergb.cpp287 IntegerVectorList tOld; in changeCone() local
288 tOld.push_back(ridgeVector); in changeCone()
289 tOld.push_back(-rayVector); in changeCone()
290 MatrixTermOrder TOld(tOld); in changeCone()
/dports/x11/virtualgl/virtualgl-3.0/diags/
H A Dtcbench.cpp249 int t, tOld = -1; in main() local
255 if(t != tOld) { tOld = t; printf("%.2d\b\b", t); } in main()
/dports/graphics/wdune/wdune-1.926/src/
H A DSceneTreeView.cpp737 TreeNode *tOld = NULL; in MakePath() local
741 list[i--] = tOld ? tOld->field : 0; in MakePath()
754 tOld = t; in MakePath()
/dports/x11-fonts/fontmatrix/fontmatrix-0.9.100/src/
H A Dfmfontdb.h130 void editTag (const QString& tOld, const QString& tNew);
/dports/net/p5-Net-Daemon/Net-Daemon-0.48/t/
H A Dthread.t33 "\tOld threads style supplanted by ithreads after ".
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dfkey.c971 Token tOld = { "old", 3 }; /* Literal "old" token */ in fkActionTrigger() local
992 sqlite3PExpr(pParse, TK_ID, 0, 0, &tOld), in fkActionTrigger()
1007 sqlite3PExpr(pParse, TK_ID, 0, 0, &tOld), in fkActionTrigger()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dfkey.c1203 Token tOld = { "old", 3 }; /* Literal "old" token */ in fkActionTrigger() local
1224 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
1238 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dfkey.c1224 Token tOld = { "old", 3 }; /* Literal "old" token */ in fkActionTrigger() local
1245 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
1259 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dfkey.c1221 Token tOld = { "old", 3 }; /* Literal "old" token */ in fkActionTrigger() local
1242 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
1256 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dfkey.c1221 Token tOld = { "old", 3 }; /* Literal "old" token */ in fkActionTrigger() local
1242 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
1256 sqlite3ExprAlloc(db, TK_ID, &tOld, 0), in fkActionTrigger()
/dports/devel/openocd/openocd-0.11.0/tcl/target/
H A Dicepick.cfg67 # echo "\tOld router value:\t0x[format %x $old_dr_value]"

12345678910>>...14