Home
last modified time | relevance | path

Searched refs:aOverflow (Results 1 – 4 of 4) sorted by relevance

/external/opencore/pvmi/pvmf/include/
Dpvmf_media_clock.h305 virtual void GetCurrentTick32(uint32& aTimebaseTickCount, bool& aOverflow) = 0;
406 …virtual OSCL_IMPORT_REF void GetStartTime32(uint32& aTime, bool& aOverflow, PVMFMediaClock_TimeUni…
414 …virtual OSCL_IMPORT_REF void GetCurrentTime32(uint32& aClockTime, bool& aOverflow, PVMFMediaClock_…
427 …virtual OSCL_IMPORT_REF void GetCurrentTime32(uint32& aClockTime, bool& aOverflow, PVMFMediaClock_…
716 /*IN*/ bool& aOverflow,
1083 /*IN*/ bool& aOverflow,
1219 OSCL_IMPORT_REF void GetCurrentTick32(uint32& aTimebaseTickCount, bool& aOverflow);
1252 …OSCL_IMPORT_REF void GetStartTime32(uint32& aTime, bool& aOverflow, PVMFMediaClock_TimeUnits aUnit…
1253 …OSCL_IMPORT_REF void GetCurrentTime32(uint32& aTime, bool& aOverflow, PVMFMediaClock_TimeUnits aUn…
1254 …OSCL_IMPORT_REF void GetCurrentTime32(uint32& aTime, bool& aOverflow, PVMFMediaClock_TimeUnits aUn…
[all …]
/external/opencore/pvmi/pvmf/src/
Dpvmf_media_clock.cpp344 OSCL_EXPORT_REF void PVMFMediaClock::GetStartTime32(uint32& aTime, bool& aOverflow, PVMFMediaClock_… in GetStartTime32() argument
346 aOverflow = false; in GetStartTime32()
348 FromClockUnit(iStartClockTime, aTime, aUnits, aOverflow); in GetStartTime32()
472 OSCL_EXPORT_REF void PVMFMediaClock::GetCurrentTick32(uint32& aTimebaseTickCount, bool& aOverflow) in GetCurrentTick32() argument
474 aOverflow = false; in GetCurrentTick32()
478 iClockTimebase->GetCurrentTick32(aTimebaseTickCount, aOverflow); in GetCurrentTick32()
514 OSCL_EXPORT_REF void PVMFMediaClock::GetCurrentTime32(uint32& aClockTime, bool& aOverflow, PVMFMedi… in GetCurrentTime32() argument
518 GetCurrentTime32(aClockTime, aOverflow, aUnits, temp); in GetCurrentTime32()
521 OSCL_EXPORT_REF void PVMFMediaClock::GetCurrentTime32(uint32& aClockTime, bool& aOverflow, PVMFMedi… in GetCurrentTime32() argument
527 aOverflow = false; in GetCurrentTime32()
[all …]
/external/opencore/engines/player/src/
Dpv_player_engine.h626 void GetCurrentTick32(uint32& aTimebaseTickCount, bool& aOverflow) in GetCurrentTick32() argument
631 PVMFTimebase_Tickcount::GetCurrentTick32(tickcount, aOverflow); in GetCurrentTick32()
633 if (aOverflow) in GetCurrentTick32()
/external/sqlite/dist/
Dsqlite3.c29532 Pgno *aOverflow; /* Cache of overflow page locations */ member
30298 sqlite3_free(pCur->aOverflow); in invalidateOverflowCache()
30299 pCur->aOverflow = 0; in invalidateOverflowCache()
33178 if( pCur->isIncrblobHandle && !pCur->aOverflow ){ in accessPayload()
33180 pCur->aOverflow = (Pgno *)sqlite3MallocZero(sizeof(Pgno)*nOvfl); in accessPayload()
33181 if( nOvfl && !pCur->aOverflow ){ in accessPayload()
33190 if( pCur->aOverflow && pCur->aOverflow[offset/ovflSize] ){ in accessPayload()
33192 nextPage = pCur->aOverflow[iIdx]; in accessPayload()
33201 if( pCur->aOverflow ){ in accessPayload()
33202 assert(!pCur->aOverflow[iIdx] || pCur->aOverflow[iIdx]==nextPage); in accessPayload()
[all …]