Home
last modified time | relevance | path

Searched refs:pTimeOut (Results 1 – 25 of 256) sorted by relevance

1234567891011

/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/opt/sfm/
H A DsfmTim.c82 pTimeOut[0] = Abc_MaxInt( pTimeOut[0], pTimeIn[0] + tDelayBlockRise ); in Sfm_TimEdgeArrival()
83 pTimeOut[1] = Abc_MaxInt( pTimeOut[1], pTimeIn[1] + tDelayBlockFall ); in Sfm_TimEdgeArrival()
87 pTimeOut[0] = Abc_MaxInt( pTimeOut[0], pTimeIn[1] + tDelayBlockRise ); in Sfm_TimEdgeArrival()
88 pTimeOut[1] = Abc_MaxInt( pTimeOut[1], pTimeIn[0] + tDelayBlockFall ); in Sfm_TimEdgeArrival()
94 pTimeOut[0] = pTimeOut[1] = 0; in Sfm_TimGateArrival()
96 Sfm_TimEdgeArrival( p, pPin, pTimesIn[i++], pTimeOut ); in Sfm_TimGateArrival()
102 int * pTimeOut = Sfm_TimArr(p, pNode); in Sfm_TimNodeArrival() local
106 Sfm_TimGateArrival( p, (Mio_Gate_t *)pNode->pData, pTimesIn, pTimeOut ); in Sfm_TimNodeArrival()
116 pTimeIn[0] = Abc_MinInt( pTimeIn[0], pTimeOut[0] - tDelayBlockRise ); in Sfm_TimEdgeRequired()
129 Sfm_TimEdgeRequired( p, pPin, pTimesIn[i++], pTimeOut ); in Sfm_TimGateRequired()
[all …]
/dports/audio/fdk-aac/fdk-aac-2.0.2/libFDK/src/
H A Dqmf.cpp314 FIXP_DBL *pTimeOut /*!< Pointer to qmf subband slot (output)*/ in qmfInverseModulationLP_even() argument
321 FIXP_DBL *RESTRICT tReal = pTimeOut; in qmfInverseModulationLP_even()
322 FIXP_DBL *RESTRICT tImag = pTimeOut + L; in qmfInverseModulationLP_even()
370 FIXP_DBL *pTimeOut /*!< Pointer to qmf subband slot (output)*/ in qmfInverseModulationLP_odd() argument
378 scaleValuesSaturate(pTimeOut + M, qmfReal, synQmf->lsb, scaleFactorLowBand); in qmfInverseModulationLP_odd()
379 scaleValuesSaturate(pTimeOut + M + synQmf->lsb, qmfReal + synQmf->lsb, in qmfInverseModulationLP_odd()
381 FDKmemclear(pTimeOut + M + synQmf->usb, (L - synQmf->usb) * sizeof(FIXP_DBL)); in qmfInverseModulationLP_odd()
383 dct_IV(pTimeOut + M, L, &shift); in qmfInverseModulationLP_odd()
385 pTimeOut[i] = pTimeOut[L - 1 - i]; in qmfInverseModulationLP_odd()
386 pTimeOut[2 * L - 1 - i] = -pTimeOut[L + i]; in qmfInverseModulationLP_odd()
/dports/multimedia/handbrake/fdk-aac-2.0.1/libFDK/src/
H A Dqmf.cpp601 FIXP_DBL *pTimeOut /*!< Pointer to qmf subband slot (output)*/ in qmfInverseModulationLP_even() argument
608 FIXP_DBL *RESTRICT tReal = pTimeOut; in qmfInverseModulationLP_even()
609 FIXP_DBL *RESTRICT tImag = pTimeOut + L; in qmfInverseModulationLP_even()
657 FIXP_DBL *pTimeOut /*!< Pointer to qmf subband slot (output)*/ in qmfInverseModulationLP_odd() argument
665 scaleValues(pTimeOut + M, qmfReal, synQmf->lsb, scaleFactorLowBand); in qmfInverseModulationLP_odd()
666 scaleValues(pTimeOut + M + synQmf->lsb, qmfReal + synQmf->lsb, in qmfInverseModulationLP_odd()
668 FDKmemclear(pTimeOut + M + synQmf->usb, (L - synQmf->usb) * sizeof(FIXP_DBL)); in qmfInverseModulationLP_odd()
670 dct_IV(pTimeOut + M, L, &shift); in qmfInverseModulationLP_odd()
672 pTimeOut[i] = pTimeOut[L - 1 - i]; in qmfInverseModulationLP_odd()
673 pTimeOut[2 * L - 1 - i] = -pTimeOut[L + i]; in qmfInverseModulationLP_odd()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/abci/
H A DabcTiming.c900 Abc_Time_t * pTimeIn, * pTimeOut; in Abc_NodeDelayTraceArrival() local
907 pTimeOut = Abc_NodeArrival(pNode); in Abc_NodeDelayTraceArrival()
908 pTimeOut->Rise = pTimeOut->Fall = -ABC_INFINITY; in Abc_NodeDelayTraceArrival()
913 *pTimeOut = *pTimeIn; in Abc_NodeDelayTraceArrival()
928 if ( pTimeOut->Rise < pTimeIn->Rise + tDelayBlockRise ) in Abc_NodeDelayTraceArrival()
929 pTimeOut->Rise = pTimeIn->Rise + tDelayBlockRise; in Abc_NodeDelayTraceArrival()
930 if ( pTimeOut->Fall < pTimeIn->Fall + tDelayBlockFall ) in Abc_NodeDelayTraceArrival()
931 pTimeOut->Fall = pTimeIn->Fall + tDelayBlockFall; in Abc_NodeDelayTraceArrival()
935 if ( pTimeOut->Rise < pTimeIn->Fall + tDelayBlockRise ) in Abc_NodeDelayTraceArrival()
936 pTimeOut->Rise = pTimeIn->Fall + tDelayBlockRise; in Abc_NodeDelayTraceArrival()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/psp/
H A Dthread.cpp138 uint32 *pTimeOut = 0; in takeWithTimeOut() local
140 pTimeOut = &timeOut; in takeWithTimeOut()
142 if (sceKernelWaitSema(_handle, 1, pTimeOut) < 0) // we always wait for 1 in takeWithTimeOut()
/dports/games/scummvm/scummvm-2.5.1/backends/platform/psp/
H A Dthread.cpp138 uint32 *pTimeOut = 0; in takeWithTimeOut() local
140 pTimeOut = &timeOut; in takeWithTimeOut()
142 if (sceKernelWaitSema(_handle, 1, pTimeOut) < 0) // we always wait for 1 in takeWithTimeOut()
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/src/network/
H A DHttpServerRequestor.cpp45 QSharedPointer<QNetworkReply> HttpServerRequestor::request(const QUrl& pUrl, int pTimeOut) in request() argument
56 mTimer.start(pTimeOut); in request()
H A DHttpServerRequestor.h31 QSharedPointer<QNetworkReply> request(const QUrl& pUrl, int pTimeOut = 2000);
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dos.c184 int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument
193 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64()
197 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64()
H A Dtest_journal.c815 static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in jtCurrentTime() argument
816 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in jtCurrentTime()
821 static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in jtCurrentTimeInt64() argument
822 return g.pVfs->xCurrentTimeInt64(g.pVfs, pTimeOut); in jtCurrentTimeInt64()
H A Dtest_devsym.c370 static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in devsymCurrentTime() argument
371 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in devsymCurrentTime()
H A Dtest_vfstrace.c659 static int vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vfstraceCurrentTime() argument
662 return pRoot->xCurrentTime(pRoot, pTimeOut); in vfstraceCurrentTime()
664 static int vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in vfstraceCurrentTimeInt64() argument
667 return pRoot->xCurrentTimeInt64(pRoot, pTimeOut); in vfstraceCurrentTimeInt64()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dos.c284 int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument
293 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64()
297 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64()
H A Dtest_journal.c822 static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in jtCurrentTime() argument
823 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in jtCurrentTime()
828 static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in jtCurrentTimeInt64() argument
829 return g.pVfs->xCurrentTimeInt64(g.pVfs, pTimeOut); in jtCurrentTimeInt64()
H A Dtest_devsym.c344 static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in devsymCurrentTime() argument
345 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in devsymCurrentTime()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dos.c264 int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument
273 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64()
277 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64()
H A Dtest_journal.c822 static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in jtCurrentTime() argument
823 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in jtCurrentTime()
828 static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in jtCurrentTimeInt64() argument
829 return g.pVfs->xCurrentTimeInt64(g.pVfs, pTimeOut); in jtCurrentTimeInt64()
H A Dtest_devsym.c371 static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in devsymCurrentTime() argument
372 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in devsymCurrentTime()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dos.c277 int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument
286 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64()
290 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64()
H A Dtest_journal.c822 static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in jtCurrentTime() argument
823 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in jtCurrentTime()
828 static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in jtCurrentTimeInt64() argument
829 return g.pVfs->xCurrentTimeInt64(g.pVfs, pTimeOut); in jtCurrentTimeInt64()
H A Dtest_devsym.c344 static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in devsymCurrentTime() argument
345 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in devsymCurrentTime()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dos.c277 int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument
286 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64()
290 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64()
H A Dtest_journal.c822 static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in jtCurrentTime() argument
823 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in jtCurrentTime()
828 static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in jtCurrentTimeInt64() argument
829 return g.pVfs->xCurrentTimeInt64(g.pVfs, pTimeOut); in jtCurrentTimeInt64()
/dports/net/ntp/ntp-4.2.8p15/include/
H A Dntp_select.h16 fd_set *pExceptFds, struct timeval *pTimeOut);
/dports/databases/sqlcipher/sqlcipher-3.4.2/ext/misc/
H A Dmemvfs.c406 static int memCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in memCurrentTime() argument
407 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in memCurrentTime()

1234567891011