Home
last modified time | relevance | path

Searched refs:pLevels (Results 1 – 25 of 29) sorted by relevance

12

/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/opt/sbd/
H A DsbdPath.c109 …Sbc_ManCriticalPath_rec( p, pLevels, iDriver, pLevels[iDriver], vPath, Abc_MaxInt(0, pLevels[iDriv… in Sbc_ManCriticalPath_rec()
117 …Sbc_ManCriticalPath_rec( p, pLevels, iFan, pLevels[iFan], vPath, Abc_MaxInt(0, pLevels[iFan]+Slack… in Sbc_ManCriticalPath_rec()
125 pLevels = Vec_IntArray( p->vLevels ); in Sbc_ManCriticalPath()
129 Sbc_ManCriticalPath_rec( p, pLevels, iDriver, pLevels[iDriver], vPath, Slack ); in Sbc_ManCriticalPath()
131 ABC_FREE( pLevels ); in Sbc_ManCriticalPath()
151 int i, k, iFan, nLevels, * pLevels; in Sbc_ManDelayTrace() local
160 nLevels = Gia_ManLutLevel( p, &pLevels ); in Sbc_ManDelayTrace()
162 if ( pLevels[iFan] == nLevels ) in Sbc_ManDelayTrace()
173 if ( pLevels[iFan] +1 < pLevels[i] ) in Sbc_ManDelayTrace()
175 assert( pLevels[iFan] + 1 == pLevels[i] ); in Sbc_ManDelayTrace()
[all …]
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/aig/gia/
H A DgiaBalMap.c194 int * pLevels = ABC_CALLOC( int, Gia_ManObjNum(p) ); in Gia_ManFindLatest() local
198 pLevels[i] = Abc_MaxInt( pLevels[i], pLevels[iFan] ); in Gia_ManFindLatest()
199 pLevels[i]++; in Gia_ManFindLatest()
200 nLevels = Abc_MaxInt( nLevels, pLevels[i] ); in Gia_ManFindLatest()
207 if ( pLevels[Gia_ObjFaninId0p(p, pObj)] >= LevelMax ) in Gia_ManFindLatest()
209 ABC_FREE( pLevels ); in Gia_ManFindLatest()
H A DgiaIso.c76 int * pLevels; member
123 p->pLevels = ABC_CALLOC( int, p->nObjs ); in Gia_IsoManStart()
137 ABC_FREE( p->pLevels ); in Gia_IsoManStop()
210 p->pLevels[0] = 0; in Gia_IsoPrepare()
212 p->pLevels[Gia_ObjId(p->pGia, pObj)] = 0; in Gia_IsoPrepare()
214 …p->pLevels[i] = 1 + Abc_MaxInt( p->pLevels[Gia_ObjFaninId0(pObj, i)], p->pLevels[Gia_ObjFaninId1(p… in Gia_IsoPrepare()
218 p->pLevels[iObj] = 1 + p->pLevels[Gia_ObjFaninId0(pObj, iObj)]; // "1 +" is different! in Gia_IsoPrepare()
219 MaxLev = Abc_MaxInt( MaxLev, p->pLevels[Gia_ObjId(p->pGia, pObj)] ); in Gia_IsoPrepare()
225 pLevSizes[p->pLevels[i]]++; in Gia_IsoPrepare()
243 Gia_IsoSetItem( p, pLevBegins[p->pLevels[i]]++, i ); in Gia_IsoPrepare()
[all …]
H A DgiaIf.c184 *ppLevels = pLevels; in Gia_ManLutLevel()
186 ABC_FREE( pLevels ); in Gia_ManLutLevel()
456 int * pLevels; in Gia_ManPrintMappingStats() local
469 pLevels[i] = Abc_MaxInt( pLevels[i], pLevels[pFanins[0]]+1 ); in Gia_ManPrintMappingStats()
470 pLevels[i] = Abc_MaxInt( pLevels[i], pLevels[pFanins[1]] ); in Gia_ManPrintMappingStats()
471 pLevels[i] = Abc_MaxInt( pLevels[i], pLevels[pFanins[2]] ); in Gia_ManPrintMappingStats()
476 pLevels[i] = Abc_MaxInt( pLevels[i], pLevels[Gia_ObjFaninId0(pObj, i)] ); in Gia_ManPrintMappingStats()
477 pLevels[i] = Abc_MaxInt( pLevels[i], pLevels[Gia_ObjFaninId1(pObj, i)] ); in Gia_ManPrintMappingStats()
488 pLevels[i] = Abc_MaxInt( pLevels[i], pLevels[iFan] ); in Gia_ManPrintMappingStats()
489 pLevels[i]++; in Gia_ManPrintMappingStats()
[all …]
H A DgiaShow.c56 int i, k, iFan, LevelMax, nLevels, * pLevels, Level, Prev; in Gia_ShowPath() local
61 nLevels = Gia_ManLutLevel( p, &pLevels ); in Gia_ShowPath()
63 if ( pLevels[iFan] == nLevels ) in Gia_ShowPath()
75 if ( pLevels[iFan] +1 < pLevels[i] ) in Gia_ShowPath()
77 assert( pLevels[iFan] + 1 == pLevels[i] ); in Gia_ShowPath()
86 ABC_FREE( pLevels ); in Gia_ShowPath()
93 ABC_FREE( pLevels ); in Gia_ShowPath()
100 p->vLevels = Vec_IntAllocArray( pLevels, Gia_ManObjNum(p) ); in Gia_ShowPath()
303 if ( pLevels[iFan] + 1 < pLevels[i] ) in Gia_ShowPath()
305 assert( pLevels[iFan] + 1 == pLevels[i] ); in Gia_ShowPath()
H A DgiaSatEdge.c56 int * pLevels; // levels member
119 ABC_FREE( p->pLevels ); in Seg_ManCountIntLevels()
123 p->pLevels = Vec_IntReleaseArray( p->pGia->vLevels ); in Seg_ManCountIntLevels()
127 p->DelayMax = Gia_ManLutLevel( p->pGia, &p->pLevels ); in Seg_ManCountIntLevels()
137 nVars = p->pLevels[iLut] < 2 ? 0 : p->pLevels[iLut]; in Seg_ManCountIntLevels()
207 ABC_FREE( p->pLevels ); in Seg_ManStop()
H A DgiaCof.c66 int * pLevels; // the linked lists of levels member
208 ABC_FREE( p->pLevels ); in Cof_ManStop()
456 assert( p->pLevels[LevelStart] == 0 ); in Cof_ManCountRemoved()
458 p->pLevels[LevelStart] = Cof_ObjHandle( p, pRoot ); in Cof_ManCountRemoved()
464 for ( iHandle = p->pLevels[i]; in Cof_ManCountRemoved()
496 pNext->iNext = p->pLevels[LevelNext]; in Cof_ManCountRemoved()
497 p->pLevels[LevelNext] = Cof_ObjHandle( p, pNext ); in Cof_ManCountRemoved()
501 p->pLevels[i] = 0; in Cof_ManCountRemoved()
752 p->pLevels = ABC_CALLOC( int, p->nLevels ); in Gia_ManPrintFanio()
/dports/games/flobopuyo/flobopuyo-0.20/
H A Dcorona_palette.cpp66 void PaletteCycler::update(TimedLevel *pLevels) in update() argument
69 if (pLevels->timeStamp - pLevels->lastbeat > 10000000) { in update()
78 if (pLevels->timeStamp - pLevels->lastbeat > 10000000) m_progress += 0.01; in update()
H A Dcorona.cpp327 void Corona::update(TimedLevel *pLevels) in update() argument
330 int beatval = getBeatVal(pLevels); in update()
335 total += 2 * pLevels->frequency[0][i]; in update()
368 pLevels->lastbeat = pLevels->currentTimeMs; in update()
H A Dcorona_palette.h60 void update(TimedLevel *pLevels);
H A Dcorona.h107 void update(TimedLevel *pLevels);
/dports/graphics/libvisual04-plugins/libvisual-plugins-0.4.0/plugins/actor/corona/
H A Dpalette.cpp82 void PaletteCycler::update(TimedLevel *pLevels) in update() argument
85 if (pLevels->timeStamp - pLevels->lastbeat > 10000000) { in update()
94 if (pLevels->timeStamp - pLevels->lastbeat > 10000000) m_progress += 0.01; in update()
H A Dcorona.cpp389 void Corona::update(TimedLevel *pLevels) in update() argument
392 int beatval = getBeatVal(pLevels); in update()
397 total += 2 * pLevels->frequency[0][i]; in update()
430 pLevels->lastbeat = pLevels->timeStamp; in update()
H A Dpalette.h79 void update(TimedLevel *pLevels);
H A Dcorona.h124 void update(TimedLevel *pLevels);
/dports/graphics/libprojectm/projectm-3.1.12/src/museum/projectM-wmp/projectM-wmp/
H A DprojectM-wmp.cpp65 STDMETHODIMP CProjectMwmp::Render(TimedLevel *pLevels, HDC hdc, RECT *prc) in Render() argument
163 STDMETHODIMP CProjectMwmp::RenderFullScreen(TimedLevel *pLevels) in RenderFullScreen() argument
185 Render(pLevels, hdc, &rParent); in RenderFullScreen()
424 STDMETHODIMP CProjectMwmp::RenderWindowed(TimedLevel *pLevels, BOOL fRequiredRender ) in RenderWindowed() argument
445 Render(pLevels, hdc, &rParent); in RenderWindowed()
H A DprojectM-wmp.h62 STDMETHOD(Render)(TimedLevel *pLevels, HDC hdc, RECT *rc);
66 STDMETHOD(RenderFullScreen)(TimedLevel *pLevels);// { return E_NOTIMPL; };
80 STDMETHOD(RenderWindowed)(TimedLevel *pLevels, BOOL fRequiredRender );
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/aig/saig/
H A DsaigSimMv.c84 unsigned char * pLevels; // levels of AIG nodes member
109 static inline int Saig_MvLev( Saig_MvMan_t * p, int iNode ) { return p->pLevels[iNode >> 1]; } in Saig_MvLev()
179 p->pLevels = ABC_REALLOC( unsigned char, p->pLevels, 2*p->nObjsAlloc ); in Saig_MvCreateObj()
187 p->pLevels[p->nObjs] = 1 + Abc_MaxInt( Saig_MvLev(p, iFan0), Saig_MvLev(p, iFan1) ); in Saig_MvCreateObj()
189 p->pLevels[p->nObjs] = 0, p->nPis++; in Saig_MvCreateObj()
236 p->pLevels = ABC_ALLOC( unsigned char, p->nObjsAlloc ); in Saig_MvManStart()
267 ABC_FREE( p->pLevels ); in Saig_MvManStop()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/ui/vba/
H A Dvbalistlevels.cxx33 …explicit ListLevelsEnumWrapper( SwVbaListLevels* pLevels ) : pListLevels( pLevels ), nIndex( 1 ) {} in ListLevelsEnumWrapper() argument
/dports/math/ogdf/OGDF/include/ogdf/layered/
H A DLevel.h78 Level(HierarchyLevels *pLevels, int index, int num) : in Level() argument
79 m_nodes(num), m_pLevels(pLevels), m_index(index) { } in Level()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/ui/vba/
H A Dvbalistlevels.cxx31 …explicit ListLevelsEnumWrapper( SwVbaListLevels* pLevels ) : pListLevels( pLevels ), nIndex( 1 ) {} in ListLevelsEnumWrapper() argument
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/src/
H A Dhistogram.cpp372 const Npp32s* pLevels, int nLevels, Npp8u* pBuffer);
381 const Npp32f* pLevels, int nLevels, Npp8u* pBuffer);
390 const Npp32s* pLevels[4], int nLevels[4], Npp8u* pBuffer);
399 const Npp32f* pLevels[4], int nLevels[4], Npp8u* pBuffer);
455 …const level_t* pLevels[] = {levels[0].ptr<level_t>(), levels[1].ptr<level_t>(), levels[2].ptr<leve… in hist() local
469 …nppSafeCall( func(src.ptr<src_t>(), static_cast<int>(src.step), sz, pHist, pLevels, nLevels, buf.p… in hist()
/dports/math/ogdf/OGDF/src/ogdf/layered/
H A DSugiyamaLayout.cpp961 const HierarchyLevelsBase *pLevels = reduceCrossings(H); in doCall() local
962 const HierarchyLevelsBase &levels = *pLevels; in doCall()
1047 delete pLevels; in doCall()
1113 const HierarchyLevelsBase *pLevels = reduceCrossings(H); in doCall() local
1114 const HierarchyLevelsBase &levels = *pLevels; in doCall()
1164 delete pLevels; in doCall()
1275 HierarchyLevels *pLevels = new HierarchyLevels(H); in reduceCrossings() local
1276 HierarchyLevels levels = *pLevels; in reduceCrossings()
1316 return pLevels; in reduceCrossings()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/data/
H A Ddptabsrc.cxx604 … ScDPLevels* pLevels = pDim->GetHierarchiesObject()->getByIndex(nHierarchy)->GetLevelsObject(); in FillCalcInfo() local
605 sal_Int32 nCount = pLevels->getCount(); in FillCalcInfo()
614 ScDPLevel* pLevel = pLevels->getByIndex(j); in FillCalcInfo()
880 tools::Long nCount = pLevels->getCount(); in CreateRes_Impl()
882 pLevels->getByIndex(j)->GetMembersObject(); // initialize for groups in CreateRes_Impl()
992 ScDPLevels* pLevels = pHier->GetLevelsObject(); in FillLevelList() local
993 sal_Int32 nLevCount = pLevels->getCount(); in FillLevelList()
996 ScDPLevel* pLevel = pLevels->getByIndex(nLev); in FillLevelList()
1370 ScDPLevels* pLevels = GetHierarchiesObject()->getByIndex(nHierarchy)->GetLevelsObject(); in GetSelectedData() local
1371 tools::Long nLevCount = pLevels->getCount(); in GetSelectedData()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/data/
H A Ddptabsrc.cxx600 … ScDPLevels* pLevels = pDim->GetHierarchiesObject()->getByIndex(nHierarchy)->GetLevelsObject(); in FillCalcInfo() local
601 long nCount = pLevels->getCount(); in FillCalcInfo()
610 ScDPLevel* pLevel = pLevels->getByIndex(j); in FillCalcInfo()
876 long nCount = pLevels->getCount(); in CreateRes_Impl()
878 pLevels->getByIndex(j)->GetMembersObject(); // initialize for groups in CreateRes_Impl()
988 ScDPLevels* pLevels = pHier->GetLevelsObject(); in FillLevelList() local
989 long nLevCount = pLevels->getCount(); in FillLevelList()
992 ScDPLevel* pLevel = pLevels->getByIndex(nLev); in FillLevelList()
1366 ScDPLevels* pLevels = GetHierarchiesObject()->getByIndex(nHierarchy)->GetLevelsObject(); in GetSelectedData() local
1367 long nLevCount = pLevels->getCount(); in GetSelectedData()
[all …]

12