Home
last modified time | relevance | path

Searched refs:iValue1 (Results 1 – 13 of 13) sorted by relevance

/dports/devel/codeworker/CodeWorker4_5_3/
H A DExprScriptBinaryExpression.cpp77 int iValue1 = getLeft()->getIntValue(visibility); in getIntValue() local
80 case '+' : return iValue1 + iValue2; in getIntValue()
81 case '-' : return iValue1 - iValue2; in getIntValue()
82 case '*' : return iValue1 * iValue2; in getIntValue()
83 case '/' : return iValue1 / iValue2; in getIntValue()
84 case '%' : return iValue1 % iValue2; in getIntValue()
137 int iValue1 = getLeft()->getIntValue(visibility); in getIntValue() local
140 case '<' : return iValue1 << iValue2; in getIntValue()
141 case '>' : return iValue1 >> iValue2; in getIntValue()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/misc/mvc/
H A DmvcUtils.c546 Mvc_Cover_t * Mvc_CoverFlipVar( Mvc_Cover_t * p, int iValue0, int iValue1 ) in Mvc_CoverFlipVar() argument
552 assert( iValue0 + 1 == iValue1 ); // should be adjacent in Mvc_CoverFlipVar()
564 Value1 = Mvc_CubeBitValue( pCubeCopy, iValue1 ); in Mvc_CoverFlipVar()
584 Mvc_CubeBitInsert( pCubeCopy, iValue1 ); in Mvc_CoverFlipVar()
586 Mvc_CubeBitRemove( pCubeCopy, iValue1 ); in Mvc_CoverFlipVar()
H A Dmvc.h673 extern Mvc_Cover_t * Mvc_CoverFlipVar( Mvc_Cover_t * pCover, int iValue0, int iValue1 );
/dports/math/ogdf/OGDF/src/coin/Clp/
H A DClpModel.cpp4338 int iValue1, iValue2; in generateCpp() local
4340 iValue1 = this->maximumIterations(); in generateCpp()
4343 fprintf(fp, "%d clpModel->setMaximumIterations(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
4355 iValue1 = this->numberIterations(); in generateCpp()
4358 fprintf(fp, "%d clpModel->setNumberIterations(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
4380 iValue1 = this->scalingFlag(); in generateCpp()
4383 fprintf(fp, "%d clpModel->scaling(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
4384 fprintf(fp, "%d clpModel->scaling(save_scalingFlag);\n", iValue1 == iValue2 ? 7 : 6); in generateCpp()
4390 iValue1 = this->logLevel(); in generateCpp()
4393 fprintf(fp, "%d clpModel->setLogLevel(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
[all …]
H A DClpSimplex.cpp11753 int iValue1, iValue2; in generateCpp() local
11766 iValue1 = this->factorizationFrequency(); in generateCpp()
11768 …nt save_factorizationFrequency = clpModel->factorizationFrequency();\n", iValue1 == iValue2 ? 2 : … in generateCpp()
11769 …fprintf(fp, "%d clpModel->setFactorizationFrequency(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
11770 …fprintf(fp, "%d clpModel->setFactorizationFrequency(save_factorizationFrequency);\n", iValue1 == … in generateCpp()
11781 iValue1 = this->perturbation(); in generateCpp()
11783 …fprintf(fp, "%d int save_perturbation = clpModel->perturbation();\n", iValue1 == iValue2 ? 2 : 1); in generateCpp()
11784 fprintf(fp, "%d clpModel->setPerturbation(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
11785 fprintf(fp, "%d clpModel->setPerturbation(save_perturbation);\n", iValue1 == iValue2 ? 7 : 6); in generateCpp()
/dports/games/openclonk/openclonk-release-8.1-src/src/graphics/
H A DC4Facet.h133 …void DrawValue2(C4Facet &cgo, int32_t iValue1, int32_t iValue2, int32_t iPhaseX=0, int32_t iPhaseY…
143 …void DrawValue2Clr(C4Facet &cgo, int32_t iValue1, int32_t iValue2, DWORD dwClr); // set surface co…
H A DC4Facet.cpp230 void C4Facet::DrawValue2Clr(C4Facet &cgo, int32_t iValue1, int32_t iValue2, DWORD dwClr) in DrawValue2Clr() argument
235 DrawValue2(cgo, iValue1, iValue2); in DrawValue2Clr()
332 void C4Facet::DrawValue2(C4Facet &cgo, int32_t iValue1, int32_t iValue2, int32_t iSectionX, int32_t… in DrawValue2() argument
335 char ostr[25]; sprintf(ostr,"%i/%i",iValue1,iValue2); in DrawValue2()
/dports/math/clp/Clp-1.17.3/Clp/src/
H A DClpModel.cpp4477 int iValue1, iValue2; in generateCpp() local
4479 iValue1 = this->maximumIterations(); in generateCpp()
4482 fprintf(fp, "%d clpModel->setMaximumIterations(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
4494 iValue1 = this->numberIterations(); in generateCpp()
4497 fprintf(fp, "%d clpModel->setNumberIterations(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
4519 iValue1 = this->scalingFlag(); in generateCpp()
4522 fprintf(fp, "%d clpModel->scaling(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
4523 fprintf(fp, "%d clpModel->scaling(save_scalingFlag);\n", iValue1 == iValue2 ? 7 : 6); in generateCpp()
4529 iValue1 = this->logLevel(); in generateCpp()
4532 fprintf(fp, "%d clpModel->setLogLevel(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
[all …]
H A DClpSimplex.cpp12596 int iValue1, iValue2; in generateCpp() local
12609 iValue1 = this->factorizationFrequency(); in generateCpp()
12611 …nt save_factorizationFrequency = clpModel->factorizationFrequency();\n", iValue1 == iValue2 ? 2 : … in generateCpp()
12612 …fprintf(fp, "%d clpModel->setFactorizationFrequency(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
12613 …fprintf(fp, "%d clpModel->setFactorizationFrequency(save_factorizationFrequency);\n", iValue1 == … in generateCpp()
12624 iValue1 = this->perturbation(); in generateCpp()
12626 …fprintf(fp, "%d int save_perturbation = clpModel->perturbation();\n", iValue1 == iValue2 ? 2 : 1); in generateCpp()
12627 fprintf(fp, "%d clpModel->setPerturbation(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
12628 fprintf(fp, "%d clpModel->setPerturbation(save_perturbation);\n", iValue1 == iValue2 ? 7 : 6); in generateCpp()
/dports/math/cbc/Cbc-releases-2.10.5/Cbc/src/
H A DCbcModel.cpp15900 int iValue1, iValue2; local
15905 fprintf(fp, "%d cbcModel->setMaximumNodes(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15910 fprintf(fp, "%d cbcModel->setMaximumSolutions(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15915 fprintf(fp, "%d cbcModel->setNumberStrong(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15925 fprintf(fp, "%d cbcModel->setNumberPenalties(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15935 fprintf(fp, "%d cbcModel->setPrintFrequency(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15940 fprintf(fp, "%d cbcModel->setPrintingMode(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15945 fprintf(fp, "%d cbcModel->setSearchStrategy(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15950 fprintf(fp, "%d cbcModel->setSpecialOptions(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
15965 fprintf(fp, "%d cbcModel->setMaximumCutPasses(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1);
[all …]
/dports/math/ogdf/OGDF/src/coin/OsiClp/
H A DOsiClpSolverInterface.cpp9324 int iValue1, iValue2; in generateCpp() local
9331 iValue1 = this->specialOptions(); in generateCpp()
9334 fprintf(fp,"%d osiclpModel->setSpecialOptions(%d);\n",iValue1==iValue2 ? 4 : 3,iValue1); in generateCpp()
9335 fprintf(fp,"%d osiclpModel->setSpecialOptions(save_specialOptions);\n",iValue1==iValue2 ? 7 : 6); in generateCpp()
9336 iValue1 = this->messageHandler()->logLevel(); in generateCpp()
9339 …rintf(fp,"%d osiclpModel->messageHandler()->setLogLevel(%d);\n",iValue1==iValue2 ? 4 : 3,iValue1); in generateCpp()
9341 iValue1 = this->cleanupScaling(); in generateCpp()
9344 fprintf(fp,"%d osiclpModel->setCleanupScaling(%d);\n",iValue1==iValue2 ? 4 : 3,iValue1); in generateCpp()
9356 this->getIntParam(OsiMaxNumIterationHotStart,iValue1); in generateCpp()
9358 fprintf(fp,"%d int save_OsiMaxNumIterationHotStart;\n",iValue1==iValue2 ? 2 : 1); in generateCpp()
[all …]
/dports/math/clp/Clp-1.17.3/Clp/src/OsiClp/
H A DOsiClpSolverInterface.cpp10568 int iValue1, iValue2; in generateCpp() local
10575 iValue1 = this->specialOptions(); in generateCpp()
10578 fprintf(fp, "%d osiclpModel->setSpecialOptions(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
10579 …fprintf(fp, "%d osiclpModel->setSpecialOptions(save_specialOptions);\n", iValue1 == iValue2 ? 7 :… in generateCpp()
10580 iValue1 = this->messageHandler()->logLevel(); in generateCpp()
10583 …(fp, "%d osiclpModel->messageHandler()->setLogLevel(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
10585 iValue1 = this->cleanupScaling(); in generateCpp()
10588 fprintf(fp, "%d osiclpModel->setCleanupScaling(%d);\n", iValue1 == iValue2 ? 4 : 3, iValue1); in generateCpp()
10600 this->getIntParam(OsiMaxNumIterationHotStart, iValue1); in generateCpp()
10602 fprintf(fp, "%d int save_OsiMaxNumIterationHotStart;\n", iValue1 == iValue2 ? 2 : 1); in generateCpp()
[all …]
/dports/games/openclonk/openclonk-release-8.1-src/src/object/
H A DC4FindObject.cpp974 int32_t iValue1 = CompareGetValue(pObj1); in Compare() local
976 return iValue2 - iValue1; in Compare()