Home
last modified time | relevance | path

Searched refs:pPat (Results 1 – 25 of 57) sorted by relevance

123

/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/opt/sim/
H A DsimSymSim.c31 static void Sim_SymmsCreateSquare( Sym_Man_t * p, unsigned * pPat );
49 void Sim_SymmsSimulate( Sym_Man_t * p, unsigned * pPat, Vec_Ptr_t * vMatrsNonSym ) in Sim_SymmsSimulate() argument
56 Sim_SymmsCreateSquare( p, pPat ); in Sim_SymmsSimulate()
79 Sim_SymmsDeriveInfo( p, pPat, pNode, vMatrsNonSym, i ); in Sim_SymmsSimulate()
95 void Sim_SymmsCreateSquare( Sym_Man_t * p, unsigned * pPat ) in Sim_SymmsCreateSquare() argument
104 if ( Sim_HasBit(pPat, i) ) in Sim_SymmsCreateSquare()
130 void Sim_SymmsDeriveInfo( Sym_Man_t * p, unsigned * pPat, Abc_Obj_t * pNode, Vec_Ptr_t * vMatrsNonS… in Sim_SymmsDeriveInfo() argument
145 p->uPatCol[w] = pSupport[w] & pPat[w] & pSimInfo[w]; in Sim_SymmsDeriveInfo()
146 p->uPatRow[w] = pSupport[w] & pPat[w] & ~pSimInfo[w]; in Sim_SymmsDeriveInfo()
159 p->uPatCol[w] = pSupport[w] & ~pPat[w] & pSimInfo[w]; in Sim_SymmsDeriveInfo()
[all …]
H A DsimSupp.c206 Sim_Pat_t * pPat; in Sim_ComputeSuppRoundNode() local
268 pPat = Sim_ManPatAlloc( p ); in Sim_ComputeSuppRoundNode()
269 pPat->Input = iNumCi; in Sim_ComputeSuppRoundNode()
270 pPat->Output = Output; in Sim_ComputeSuppRoundNode()
370 Sim_Pat_t * pPat; in Sim_UtilAssignFromFifo() local
429 Sim_ManPatFree( p, pPat ); in Sim_UtilAssignFromFifo()
455 Sim_Pat_t * pPat; in Sim_SolveTargetsUsingSat() local
501 pPat = Sim_ManPatAlloc( p ); in Sim_SolveTargetsUsingSat()
502 pPat->Input = Input; in Sim_SolveTargetsUsingSat()
503 pPat->Output = Output; in Sim_SolveTargetsUsingSat()
[all …]
H A DsimMan.c263 Sim_Pat_t * pPat; in Sim_ManPatAlloc() local
264 pPat = (Sim_Pat_t *)Extra_MmFixedEntryFetch( p->pMmPat ); in Sim_ManPatAlloc()
265 pPat->Output = -1; in Sim_ManPatAlloc()
266 pPat->pData = (unsigned *)((char *)pPat + sizeof(Sim_Pat_t)); in Sim_ManPatAlloc()
267 memset( pPat->pData, 0, p->nSuppWords * sizeof(unsigned) ); in Sim_ManPatAlloc()
268 return pPat; in Sim_ManPatAlloc()
282 void Sim_ManPatFree( Sim_Man_t * p, Sim_Pat_t * pPat ) in Sim_ManPatFree() argument
284 Extra_MmFixedEntryRecycle( p->pMmPat, (char *)pPat ); in Sim_ManPatFree()
H A Dsim.h186 extern void Sim_ManPatFree( Sim_Man_t * p, Sim_Pat_t * pPat );
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/proof/cec/
H A DcecCore.c238 Cec_ManPat_t * pPat; in Cec_ManSatSolving() local
239 pPat = Cec_ManPatStart(); in Cec_ManSatSolving()
240 Cec_ManSatSolve( pPat, pAig, pPars, NULL, NULL, NULL ); in Cec_ManSatSolving()
243 Cec_ManPatStop( pPat ); in Cec_ManSatSolving()
348 Cec_ManPat_t * pPat; in Cec_ManSatSweeping() local
382 pPat = Cec_ManPatStart(); in Cec_ManSatSweeping()
383 pPat->fVerbose = pPars->fVeryVerbose; in Cec_ManSatSweeping()
439 Cec_ManSatSolveCSat( pPat, pSrm, pParsSat ); in Cec_ManSatSweeping()
443 if ( Cec_ManFraClassesUpdate( p, pSim, pPat, pSrm ) ) in Cec_ManSatSweeping()
525 Abc_PrintTimeP( 1, "Sat ", p->timeSat-pPat->timeTotalSave, Abc_Clock() - (int)clkTotal ); in Cec_ManSatSweeping()
[all …]
H A DcecSolve.c710 if ( pPat ) in Cec_ManSatSolve()
712 pPat->iStart = Vec_StrSize(pPat->vStorage); in Cec_ManSatSolve()
713 pPat->nPats = 0; in Cec_ManSatSolve()
714 pPat->nPatLits = 0; in Cec_ManSatSolve()
715 pPat->nPatLitsMin = 0; in Cec_ManSatSolve()
762 if ( pPat ) in Cec_ManSatSolve()
815 if ( pPat ) in Cec_ManSatSolveCSat()
817 pPat->iStart = Vec_StrSize(pPat->vStorage); in Cec_ManSatSolveCSat()
818 pPat->nPats = 0; in Cec_ManSatSolveCSat()
819 pPat->nPatLits = 0; in Cec_ManSatSolveCSat()
[all …]
H A DcecInt.h192 extern void Cec_ManPatSavePattern( Cec_ManPat_t * pPat, Cec_ManSat_t * p, Gia_Obj…
204 extern void Cec_ManSatSolve( Cec_ManPat_t * pPat, Gia_Man_t * pAig, Cec_ParSat_t * …
205 extern void Cec_ManSatSolveCSat( Cec_ManPat_t * pPat, Gia_Man_t * pAig, Cec_ParSat_…
214 …anFraClassesUpdate( Cec_ManFra_t * p, Cec_ManSim_t * pSim, Cec_ManPat_t * pPat, Gia_Man_t * pNew );
H A DcecSweep.c188 int Cec_ManFraClassesUpdate( Cec_ManFra_t * p, Cec_ManSim_t * pSim, Cec_ManPat_t * pPat, Gia_Man_t … in Cec_ManFraClassesUpdate() argument
195 vInfo = Cec_ManPatCollectPatterns( pPat, Gia_ManCiNum(p->pAig), pSim->nWords ); in Cec_ManFraClassesUpdate()
201 for ( i = 0; i < pPat->nSeries; i++ ) in Cec_ManFraClassesUpdate()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/bool/rsb/
H A DrsbDec6.c136 pPat[w] = Rsb_DecTry2( ~(word)0, g[0][w], f[w] ); in Rsb_DecCheck()
138 pPat[w] = Rsb_DecTry3( ~(word)0, g[0][w], g[1][w], f[w] ); in Rsb_DecCheck()
140 pPat[w] = Rsb_DecTry4( ~(word)0, g[0][w], g[1][w], g[2][w], f[w] ); in Rsb_DecCheck()
142 pPat[w] = Rsb_DecTry5( ~(word)0, g[0][w], g[1][w], g[2][w], g[3][w], f[w] ); in Rsb_DecCheck()
144 iMint = Abc_Tt6FirstBit( (pPat[w] >> iShift) & pPat[w] & uMask ); in Rsb_DecCheck()
153 uTotal |= pPat[w]; in Rsb_DecCheck()
163 … iMint = Abc_Tt6FirstBit( ((pPat[k] | pPat[w]) >> iShift) & (pPat[k] | pPat[w]) & uMask ); in Rsb_DecCheck()
340 unsigned * pPat = (unsigned *)Vec_IntArray(p->vDecPats); in Rsb_DecPerformInt() local
366 uTruth = Rsb_DecCheck( nVars, f, pDivs, Vec_IntSize(p->vFanins), pPat, &iCexA, &iCexB ); in Rsb_DecPerformInt()
399 uTruth = Rsb_DecCheck( nVars, f, pDivs, Vec_IntSize(p->vFanins), pPat, &iCexA, &iCexB ); in Rsb_DecPerformInt()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzlib/sandor_fxs/
H A DPattern.cpp210 UC_PIXEL *pPat = m_pat.get() + y * m_lX + x; in optimalizeSize() local
212 pNPat->r = pPat->r; in optimalizeSize()
213 pNPat->g = pPat->g; in optimalizeSize()
214 pNPat->b = pPat->b; in optimalizeSize()
215 pNPat->m = pPat->m; in optimalizeSize()
/dports/graphics/povray38/povunix-v3.8.0-beta.2-src/source/core/material/
H A Dnormal.cpp128 RipplesPattern* pPat = dynamic_cast<RipplesPattern*>(Tnormal->pattern.get()); in ripples() local
129 if (pPat == nullptr) in ripples()
140 index = length * pPat->waveFrequency + pPat->wavePhase; in ripples()
178 WavesPattern* pPat = dynamic_cast<WavesPattern*>(Tnormal->pattern.get()); in waves() local
179 if (pPat == nullptr) in waves()
193 index = length * pPat->waveFrequency * Thread->waveFrequencies[i] + pPat->wavePhase; in waves()
/dports/multimedia/mxflib/mxflib-1.0.1/mxflib/
H A Dhelper.cpp593 const char *pPat = Pattern; in ReadHexString() local
596 while(*pPat) in ReadHexString()
599 if((*pSrc) != tolower(*pPat)) break; in ReadHexString()
601 pPat++; in ReadHexString()
605 if(!(*pPat)) *Source = pSrc; in ReadHexString()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/qa/unit/
H A Ducalc_sort.cxx544 bool isBold( const ScPatternAttr* pPat ) const in testSortWithCellFormats()
546 if (!pPat) in testSortWithCellFormats()
570 bool isItalic( const ScPatternAttr* pPat ) const in testSortWithCellFormats()
572 if (!pPat) in testSortWithCellFormats()
596 bool isNormal( const ScPatternAttr* pPat ) const in testSortWithCellFormats()
598 if (!pPat) in testSortWithCellFormats()
640 CPPUNIT_ASSERT(pPat); in testSortWithCellFormats()
642 ScPatternAttr aNewPat(*pPat); in testSortWithCellFormats()
652 pPat = m_pDoc->GetPattern(ScAddress(0,3,0)); in testSortWithCellFormats()
653 CPPUNIT_ASSERT(pPat); in testSortWithCellFormats()
[all …]
H A Dsubsequent_filters-test.cxx3750 CPPUNIT_ASSERT(pPat); in testBackgroundColorStandardXLSXML()
3916 CPPUNIT_ASSERT(pPat); in testBorderDirectionsXLSXML()
3950 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
3957 pPat = rDoc.GetPattern(ScAddress(1,3,0)); in testBorderColorsXLSXML()
3958 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
3959 pLine = pPat->GetItem(ATTR_BORDER).GetRight(); in testBorderColorsXLSXML()
3965 pPat = rDoc.GetPattern(ScAddress(1,4,0)); in testBorderColorsXLSXML()
3966 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
3973 pPat = rDoc.GetPattern(ScAddress(1,6,0)); in testBorderColorsXLSXML()
3974 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/qa/unit/
H A Ducalc_sort.cxx619 bool isBold( const ScPatternAttr* pPat ) const in testSortWithCellFormats()
621 if (!pPat) in testSortWithCellFormats()
645 bool isItalic( const ScPatternAttr* pPat ) const in testSortWithCellFormats()
647 if (!pPat) in testSortWithCellFormats()
671 bool isNormal( const ScPatternAttr* pPat ) const in testSortWithCellFormats()
673 if (!pPat) in testSortWithCellFormats()
715 CPPUNIT_ASSERT(pPat); in testSortWithCellFormats()
717 ScPatternAttr aNewPat(*pPat); in testSortWithCellFormats()
727 pPat = m_pDoc->GetPattern(ScAddress(0,3,0)); in testSortWithCellFormats()
728 CPPUNIT_ASSERT(pPat); in testSortWithCellFormats()
[all …]
H A Dsubsequent_filters-test2.cxx1710 CPPUNIT_ASSERT(pPat); in testBackgroundColorStandardXLSXML()
1960 CPPUNIT_ASSERT(pPat); in testBorderDirectionsXLSXML()
1994 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
2001 pPat = rDoc.GetPattern(ScAddress(1, 3, 0)); in testBorderColorsXLSXML()
2002 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
2003 pLine = pPat->GetItem(ATTR_BORDER).GetRight(); in testBorderColorsXLSXML()
2009 pPat = rDoc.GetPattern(ScAddress(1, 4, 0)); in testBorderColorsXLSXML()
2010 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
2017 pPat = rDoc.GetPattern(ScAddress(1, 6, 0)); in testBorderColorsXLSXML()
2018 CPPUNIT_ASSERT(pPat); in testBorderColorsXLSXML()
[all …]
/dports/audio/libmodplug/libmodplug-0.8.9.0/src/
H A Dload_amf.cpp55 VOID AMF_Unpack(MODCOMMAND *pPat, const BYTE *pTrack, UINT nRows, UINT nChannels) in AMF_Unpack() argument
68 MODCOMMAND *m = pPat + row * nChannels; in AMF_Unpack()
80 …if ((rowsrc >= 0) && (rowsrc < (int)nRows)) memcpy(m, &pPat[rowsrc*nChannels],sizeof(pPat[rowsrc*n… in AMF_Unpack()
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/external/libmodplug-0.8.9.0/src/
H A Dload_amf.cpp54 static VOID AMF_Unpack(MODCOMMAND *pPat, const BYTE *pTrack, UINT nRows, UINT nChannels) in AMF_Unpack() argument
67 MODCOMMAND *m = pPat + row * nChannels; in AMF_Unpack()
79 …if ((rowsrc >= 0) && (rowsrc < (int)nRows)) memcpy(m, &pPat[rowsrc*nChannels],sizeof(pPat[rowsrc*n… in AMF_Unpack()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/proof/ssw/
H A DsswSim.c623 void Ssw_SmlAssignDist1( Ssw_Sml_t * p, unsigned * pPat ) in Ssw_SmlAssignDist1() argument
632 Ssw_SmlObjAssignConst( p, pObj, Abc_InfoHasBit(pPat, i), 0 ); in Ssw_SmlAssignDist1()
646 Ssw_SmlObjAssignConst( p, pObj, Abc_InfoHasBit(pPat, nTruePis * f + i), f ); in Ssw_SmlAssignDist1()
650 Ssw_SmlObjAssignConst( p, pObj, Abc_InfoHasBit(pPat, nTruePis * p->nFrames + k++), 0 ); in Ssw_SmlAssignDist1()
674 void Ssw_SmlAssignDist1Plus( Ssw_Sml_t * p, unsigned * pPat ) in Ssw_SmlAssignDist1Plus() argument
682 Ssw_SmlObjAssignConst( p, pObj, Abc_InfoHasBit(pPat, i), 0 ); in Ssw_SmlAssignDist1Plus()
H A DsswInt.h272 extern void Ssw_SmlAssignDist1Plus( Ssw_Sml_t * p, unsigned * pPat );
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/proof/fra/
H A DfraSim.c433 void Fra_SmlAssignDist1( Fra_Sml_t * p, unsigned * pPat ) in Fra_SmlAssignDist1() argument
442 Fra_SmlAssignConst( p, pObj, Abc_InfoHasBit(pPat, i), 0 ); in Fra_SmlAssignDist1()
456 Fra_SmlAssignConst( p, pObj, Abc_InfoHasBit(pPat, nTruePis * f + i), f ); in Fra_SmlAssignDist1()
460 Fra_SmlAssignConst( p, pObj, Abc_InfoHasBit(pPat, nTruePis * p->nFrames + k++), 0 ); in Fra_SmlAssignDist1()
/dports/archivers/zip/zip30/macos/source/
H A Drecurse.c94 int MatchWild( char *pPat, char *pStr, int case_sens);
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/acb/
H A DacbFunc.c928 word * pPat = Vec_WrdEntryP(vPats, NWORDS*i); in Acb_FindArgMaxUnderMask() local
929 Cost = Abc_TtCountOnesVecMask(Mask, pPat, nWords, 0); in Acb_FindArgMaxUnderMask()
949 word * pPat = Vec_WrdEntryP(vPats, NWORDS*i); in Acb_FindArgMaxUnderMask2() local
951 if ( Abc_TtGetBit(pPat, b) ) in Acb_FindArgMaxUnderMask2()
956 word * pPat = Vec_WrdEntryP(vPats, NWORDS*i); in Acb_FindArgMaxUnderMask2() local
960 if ( Abc_TtGetBit(pPat, b) && Abc_TtGetBit(Mask, b) ) in Acb_FindArgMaxUnderMask2()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/data/
H A Dcolumn4.cxx1003 const ScPatternAttr* pPat = mrCol.GetPattern(nRow); in updateScriptType() local
1004 if (!pPat) in updateScriptType()
1012 const ScCondFormatItem& rItem = pPat->GetItem(ATTR_CONDITIONAL); in updateScriptType()
1019 sal_uInt32 nFormat = pPat->GetNumberFormat(mpFormatter, pCondSet); in updateScriptType()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Target/M68k/
H A DM68kInstrInfo.td555 // pPat: What ARID pattern is used
556 MxOperand pOp, ComplexPattern pPat,
592 ComplexPattern PPat = pPat;

123