Home
last modified time | relevance | path

Searched refs:vNames (Results 1 – 25 of 69) sorted by relevance

123

/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/ver/
H A DverFormula.c85 Vec_PtrClear( vNames ); in Ver_FormulaParser()
240 v = Ver_FormulaParserFindVar( pTemp, vNames ); in Ver_FormulaParser()
384 int Ver_FormulaParserFindVar( char * pString, Vec_Ptr_t * vNames ) in Ver_FormulaParserFindVar() argument
408 for ( i = 0; i < Vec_PtrSize(vNames)/2; i++ ) in Ver_FormulaParserFindVar()
410 nLength2 = (int)(ABC_PTRUINT_T)Vec_PtrEntry( vNames, 2*i + 0 ); in Ver_FormulaParserFindVar()
413 pTemp2 = (char *)Vec_PtrEntry( vNames, 2*i + 1 ); in Ver_FormulaParserFindVar()
419 Vec_PtrPush( vNames, (void *)(ABC_PTRUINT_T)nLength ); in Ver_FormulaParserFindVar()
420 Vec_PtrPush( vNames, pString ); in Ver_FormulaParserFindVar()
455 Vec_PtrClear( vNames ); in Ver_FormulaReduction()
458 v = Ver_FormulaParserFindVar( pFormula, vNames ); in Ver_FormulaReduction()
[all …]
H A Dver.h68 Vec_Ptr_t * vNames; member
91 extern void * Ver_FormulaParser( char * pFormula, void * pMan, Vec_Ptr_t * vNames, Vec_Ptr_…
92 extern void * Ver_FormulaReduction( char * pFormula, void * pMan, Vec_Ptr_t * vNames, char …
H A DverCore.c117 p->vNames = Vec_PtrAlloc( 100 ); in Ver_ParseStart()
147 Vec_PtrFree( p->vNames ); in Ver_ParseStop()
777 Vec_PtrClear( pMan->vNames ); in Ver_ParseConstant()
787 Vec_PtrPush( pMan->vNames, (void *)0 ); in Ver_ParseConstant()
1153 if ( Limit != Vec_PtrSize(pMan->vNames) ) in Ver_ParseAssign()
1156 Vec_PtrSize(pMan->vNames), Buffer, Limit ); in Ver_ParseAssign()
1164 if ( Vec_PtrEntry( pMan->vNames, Limit-1-i ) ) in Ver_ParseAssign()
1230 Vec_PtrClear( pMan->vNames ); in Ver_ParseAssign()
1252 Vec_PtrPush( pMan->vNames, pEquation ); in Ver_ParseAssign()
1285 for ( i = 0; i < Vec_PtrSize(pMan->vNames)/2; i++ ) in Ver_ParseAssign()
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/DataExchange/Formats/
H A DTrueKeyCsv4.cs65 string[] vNames = csv.ReadLine(); in Import()
66 if((vNames == null) || (vNames.Length == 0)) { Debug.Assert(false); return; } in Import()
68 for(int i = 0; i < vNames.Length; ++i) in Import()
69 vNames[i] = (vNames[i] ?? string.Empty).ToLowerInvariant(); in Import()
80 Debug.Assert(v.Length == vNames.Length); in Import()
81 int m = Math.Min(v.Length, vNames.Length); in Import()
88 string strName = vNames[i]; in Import()
H A DSteganosCsv20.cs107 string[] vNames = csv.ReadLine(); in Import()
108 if((vNames == null) || (vNames.Length == 0)) { Debug.Assert(false); return; } in Import()
110 for(int i = 0; i < vNames.Length; ++i) in Import()
112 string str = vNames[i]; in Import()
130 vNames[i] = str; in Import()
154 string strName = ((i < vNames.Length) ? vNames[i] : PwDefs.NotesField); in Import()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/abc/
H A DabcCheck.c861 Vec_Ptr_t * vNames; in Abc_NtkCheckUniqueCiNames() local
865 vNames = Vec_PtrAlloc( Abc_NtkCiNum(pNtk) ); in Abc_NtkCheckUniqueCiNames()
867 Vec_PtrPush( vNames, Abc_ObjName(pObj) ); in Abc_NtkCheckUniqueCiNames()
870 … if ( !strcmp( (const char *)Vec_PtrEntry(vNames,i-1), (const char *)Vec_PtrEntry(vNames,i) ) ) in Abc_NtkCheckUniqueCiNames()
872 …k: Repeated CI names: %s and %s.\n", (char*)Vec_PtrEntry(vNames,i-1), (char*)Vec_PtrEntry(vNames,i… in Abc_NtkCheckUniqueCiNames()
875 Vec_PtrFree( vNames ); in Abc_NtkCheckUniqueCiNames()
892 Vec_Ptr_t * vNames; in Abc_NtkCheckUniqueCoNames() local
896 vNames = Vec_PtrAlloc( Abc_NtkCoNum(pNtk) ); in Abc_NtkCheckUniqueCoNames()
898 Vec_PtrPush( vNames, Abc_ObjName(pObj) ); in Abc_NtkCheckUniqueCoNames()
903 … if ( !strcmp( (const char *)Vec_PtrEntry(vNames,i-1), (const char *)Vec_PtrEntry(vNames,i) ) ) in Abc_NtkCheckUniqueCoNames()
[all …]
H A DabcNames.c224 Vec_Ptr_t * vNames; in Abc_NodeGetFakeNames() local
228 vNames = Vec_PtrAlloc( nNames ); in Abc_NodeGetFakeNames()
242 Vec_PtrPush( vNames, Extra_UtilStrsav(Buffer) ); in Abc_NodeGetFakeNames()
244 return vNames; in Abc_NodeGetFakeNames()
258 void Abc_NodeFreeNames( Vec_Ptr_t * vNames ) in Abc_NodeFreeNames() argument
261 if ( vNames == NULL ) in Abc_NodeFreeNames()
263 for ( i = 0; i < vNames->nSize; i++ ) in Abc_NodeFreeNames()
264 ABC_FREE( vNames->pArray[i] ); in Abc_NodeFreeNames()
265 Vec_PtrFree( vNames ); in Abc_NodeFreeNames()
H A DabcLatch.c375 Vec_Ptr_t * vResult, * vNames; in Abc_NtkConverLatchNamesIntoNumbers() local
387 Vec_PtrForEachEntry( Vec_Ptr_t *, pNtk->vOnehots, vNames, i ) in Abc_NtkConverLatchNamesIntoNumbers()
389 vNumbers = Vec_IntAlloc( Vec_PtrSize(vNames) ); in Abc_NtkConverLatchNamesIntoNumbers()
390 Vec_PtrForEachEntry( char *, vNames, pName, k ) in Abc_NtkConverLatchNamesIntoNumbers()
/dports/devel/upp/upp/uppsrc/ScatterDraw/
H A DPieDraw.cpp32 vNames.Add(name); in AddCategory()
40 vNames.Remove(index); in RemoveCategory()
54 ASSERT(!vNames.IsEmpty() && vNames.GetCount() > index); in SetCatName()
55 vNames[index] = name; in SetCatName()
73 ASSERT(!vNames.IsEmpty() && vNames.GetCount() > index); in GetCatName()
74 return vNames[index]; in GetCatName()
169 legendWidth = max<int>(legendWidth, GetTextSizeSpace(vNames[i], scaledFont).cx); in PaintPie()
184 vNames[i], scaledFont, legendTextColor); in PaintPie()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/map/amap/
H A DamapParse.c397 Vec_Ptr_t * vNames; in Amap_LibParseEquations() local
407 vNames = Vec_PtrAlloc( 100 ); in Amap_LibParseEquations()
428 Vec_PtrClear( vNames ); in Amap_LibParseEquations()
430 Vec_PtrPush( vNames, pPin->pName ); in Amap_LibParseEquations()
431 pObj = Amap_ParseFormula( stdout, pGate->pForm, vNames, pMan, pGate->pName ); in Amap_LibParseEquations()
444 Vec_PtrFree( vNames ); in Amap_LibParseEquations()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/io/
H A DioReadDsd.c236 Vec_Ptr_t * vNames; in Io_ReadDsd() local
252 vNames = Abc_NodeGetFakeNames( nInputs ); in Io_ReadDsd()
254 Abc_ObjAssignName( Abc_NtkCreatePi(pNtk), (char *)Vec_PtrEntry(vNames, i), NULL ); in Io_ReadDsd()
255 Abc_NodeFreeNames( vNames ); in Io_ReadDsd()
H A DioReadBlifAig.c71 Vec_Ptr_t * vNames; // .names lines member
182 p->vNames = Vec_PtrAlloc( 512 ); in Io_BlifAlloc()
213 Vec_PtrFree( p->vNames ); in Io_BlifFree()
522 Vec_PtrPush( p->vNames, pCur ); in Io_BlifReadPreparse()
543 p->nObjects = Io_BlifEstimatePiNum(p) + Vec_PtrSize(p->vLatches) + Vec_PtrSize(p->vNames) + 512; in Io_BlifReadPreparse()
588 Vec_PtrForEachEntry( char *, p->vNames, pLine, i ) in Io_BlifParse()
1006 p->nTablesLeft = Vec_PtrSize(p->vNames) - p->nTablesRead; in Io_BlifParseConstruct()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/acb/
H A DacbUtil.c809 Vec_Int_t * Acb_NtkPlaces( char * pFileName, Vec_Ptr_t * vNames ) in Acb_NtkPlaces() argument
816 vPlaces = Vec_IntAlloc( Vec_PtrSize(vNames) ); in Acb_NtkPlaces()
836 Vec_PtrForEachEntry( char *, vNames, pName, i ) in Acb_NtkPlaces()
846 assert( Vec_IntSize(vPlaces) == 2*Vec_PtrSize(vNames) ); in Acb_NtkPlaces()
868 vPlaces = Acb_NtkPlaces( pFileNameIn, vNames ); in Acb_NtkInsert()
873 fprintf( pFile, "// [t_%d = %s] //", iObj, (char *)Vec_PtrEntry(vNames, iObj) ); in Acb_NtkInsert()
885 Vec_PtrForEachEntry( char *, vNames, pName, i ) in Acb_NtkInsert()
886 fprintf( pFile, " t_%d%s", i, i==Vec_PtrSize(vNames)-1 ? ";" : "," ); in Acb_NtkInsert()
890 Vec_PtrForEachEntry( char *, vNames, pName, i ) in Acb_NtkInsert()
896 Vec_PtrForEachEntry( char *, vNames, pName, i ) in Acb_NtkInsert()
[all …]
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/ML/Data/
H A DUnitTestMLData.py50 vNames = pickle.load(f)
54 d = MLData.MLQuantDataSet(examples, varNames=vNames, qBounds=qBounds, ptNames=ptNames)
96 vNames = pickle.load(f)
100 d = MLData.MLDataSet(examples, varNames=vNames, qBounds=qBounds, ptNames=ptNames)
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/aig/gia/
H A DgiaClp.c58 Vec_Ptr_t * vNames; in Gia_GetFakeNames() local
62 vNames = Vec_PtrAlloc( nNames ); in Gia_GetFakeNames()
76 Vec_PtrPush( vNames, Extra_UtilStrsav(Buffer) ); in Gia_GetFakeNames()
78 return vNames; in Gia_GetFakeNames()
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/tests/fuzzers/abi/
H A Dabifuzzer.go34 vNames = []string{"a", "b", "c", "d", "e", "f", "g"} var
35 varNames = append(vNames, names...)
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/qa/python/
H A Dcheck_styles.py74 vNames = list(xFamily.ElementNames)
75 vNames.sort()
76 self.assertListEqual(vNames, vExpectedNames)
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/qa/python/
H A Dcheck_styles.py75 vNames = list(xFamily.ElementNames)
76 vNames.sort()
77 self.assertListEqual(vNames, vExpectedNames)
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/map/mio/
H A DmioInt.h87 Vec_Ptr_t * vNames; member
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgAndroidExampleGLES1/src/osg/AndroidExample/
H A DosgViewer.java346 String vNames[] = osgNativeLib.getObjectNames(); in onOptionsItemSelected() local
351 removeLayerDialogBuilder.setItems(vNames, new DialogInterface.OnClickListener() { in onOptionsItemSelected()
361 if(vNames.length > 0) in onOptionsItemSelected()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgAndroidExampleGLES2/src/osg/AndroidExample/
H A DosgViewer.java346 String vNames[] = osgNativeLib.getObjectNames(); in onOptionsItemSelected() local
351 removeLayerDialogBuilder.setItems(vNames, new DialogInterface.OnClickListener() { in onOptionsItemSelected()
361 if(vNames.length > 0) in onOptionsItemSelected()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/examples/osgAndroidExampleGLES1/src/osg/AndroidExample/
H A DosgViewer.java346 String vNames[] = osgNativeLib.getObjectNames(); in onOptionsItemSelected() local
351 removeLayerDialogBuilder.setItems(vNames, new DialogInterface.OnClickListener() { in onOptionsItemSelected()
361 if(vNames.length > 0) in onOptionsItemSelected()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/examples/osgAndroidExampleGLES2/src/osg/AndroidExample/
H A DosgViewer.java346 String vNames[] = osgNativeLib.getObjectNames(); in onOptionsItemSelected() local
351 removeLayerDialogBuilder.setItems(vNames, new DialogInterface.OnClickListener() { in onOptionsItemSelected()
361 if(vNames.length > 0) in onOptionsItemSelected()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/map/scl/
H A DsclLibScl.c355 Vec_Ptr_t * vNames; in Abc_SclReadLibrary() local
358 vNames = Vec_PtrAlloc( pCell->n_inputs ); in Abc_SclReadLibrary()
360 Vec_PtrPush( vNames, pPin2->pName ); in Abc_SclReadLibrary()
364 … vFunc = Mio_ParseFormulaTruth( pPin->func_text, (char **)Vec_PtrArray(vNames), pCell->n_inputs ); in Abc_SclReadLibrary()
367 Vec_PtrFree( vNames ); in Abc_SclReadLibrary()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/abci/
H A DabcExact.c1763 Vec_Ptr_t * pGates, * vNames; in Ses_ManExtractNtk() local
1772 vNames = Abc_NodeGetFakeNames( pSol[ABC_EXACT_SOL_NVARS] + pSol[ABC_EXACT_SOL_NFUNC] ); in Ses_ManExtractNtk()
1779 Abc_ObjAssignName( pObj, (char*)Vec_PtrEntry( vNames, i ), NULL ); in Ses_ManExtractNtk()
1816 Abc_NodeFreeNames( vNames ); in Ses_ManExtractNtk()
1832 Vec_Ptr_t * vNames; in Ses_ManExtractGia() local
1840 vNames = Abc_NodeGetFakeNames( pSol[ABC_EXACT_SOL_NVARS] + pSol[ABC_EXACT_SOL_NFUNC] ); in Ses_ManExtractGia()
1893 Abc_NodeFreeNames( vNames ); in Ses_ManExtractGia()
2985 Vec_Ptr_t * vNames; in Abc_ExactStoreTest() local
2991 vNames = Abc_NodeGetFakeNames( 4u ); in Abc_ExactStoreTest()
2998 Abc_ObjAssignName( pFanins[i], (char*)Vec_PtrEntry( vNames, i ), NULL ); in Abc_ExactStoreTest()
[all …]

123