Home
last modified time | relevance | path

Searched refs:tempCode (Results 1 – 21 of 21) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/features2d/test/
H A Dtest_nearestneighbors.cpp122 int code = cvtest::TS::OK, tempCode; in run() local
128 tempCode = checkGetPoints( desc ); in run()
129 if( tempCode != cvtest::TS::OK ) in run()
132 code = tempCode; in run()
135 tempCode = checkFindBoxed(); in run()
136 if( tempCode != cvtest::TS::OK ) in run()
139 code = tempCode; in run()
142 tempCode = checkFind( desc ); in run()
143 if( tempCode != cvtest::TS::OK ) in run()
146 code = tempCode; in run()
/dports/graphics/opencv/opencv-4.5.3/modules/core/test/
H A Dtest_mat.cpp199 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkCase()
203 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkCase()
207 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkCase()
211 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkCase()
222 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkDim()
225 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkDim()
228 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkDim()
231 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkDim()
235 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkDim()
238 code = tempCode != cvtest::TS::OK ? tempCode : code; in checkDim()
[all …]
/dports/science/cdk/cdk-cdk-2.3/base/standard/src/main/java/org/openscience/cdk/tools/
H A DHOSECodeGenerator.java295 StringBuilder tempCode = new StringBuilder(); in createChargeCode() local
306 tempCode.append('-'); in createChargeCode()
308 tempCode.append('+'); in createChargeCode()
310 tempCode.append('\''); in createChargeCode()
311 if (formalCharge > 0) tempCode.append('+'); in createChargeCode()
312 tempCode.append(formalCharge).append('\''); in createChargeCode()
316 return (tempCode.toString()); in createChargeCode()
503 StringBuffer tempCode = null; in getSphereCode() local
506 tempCode = new StringBuffer(); in getSphereCode()
521 tempCode.append('&'); in getSphereCode()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression/src/System/IO/Compression/DeflateManaged/
H A DHuffmanTree.cs120 uint tempCode = 0; in CalculateHuffmanCode()
123 tempCode = (tempCode + bitLengthCount[bits - 1]) << 1; in CalculateHuffmanCode()
124 nextCode[bits] = tempCode; in CalculateHuffmanCode()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/IO/compression/
H A DHuffmanTree.cs117 uint tempCode = 0; in CalculateHuffmanCode()
119 tempCode = (tempCode + bitLengthCount[bits-1]) << 1; in CalculateHuffmanCode()
120 nextCode[bits] = tempCode; in CalculateHuffmanCode()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/mohawk/
H A Dlivingbooks_lbx.cpp109 LBCode tempCode(_vm, 0); in call() local
110 uint offset = tempCode.parseCode(command); in call()
111 tempCode.runCode(NULL, offset); in call()
H A Dlivingbooks.cpp338 LBCode tempCode(this, 0); in loadBookInfo() local
339 uint offset = tempCode.parseCode(command); in loadBookInfo()
340 tempCode.runCode(NULL, offset); in loadBookInfo()
3100 LBCode tempCode(_vm, 0); in runCommand() local
3104 uint offset = tempCode.parseCode(command); in runCommand()
3105 tempCode.runCode(this, offset); in runCommand()
3109 LBCode tempCode(_vm, 0); in checkCondition() local
3113 uint offset = tempCode.parseCode(condition); in checkCondition()
3114 LBValue result = tempCode.runCode(this, offset); in checkCondition()
H A Dlivingbooks_code.cpp990 LBCode tempCode(_vm, 0); in cmdEval() local
992 uint offset = tempCode.parseCode(params[0].toString()); in cmdEval()
993 _stack.push(tempCode.runCode(_currSource, offset)); in cmdEval()
/dports/games/scummvm/scummvm-2.5.1/engines/mohawk/
H A Dlivingbooks_lbx.cpp109 LBCode tempCode(_vm, 0); in call() local
110 uint offset = tempCode.parseCode(command); in call()
111 tempCode.runCode(NULL, offset); in call()
H A Dlivingbooks.cpp331 LBCode tempCode(this, 0); in loadBookInfo() local
332 uint offset = tempCode.parseCode(command); in loadBookInfo()
333 tempCode.runCode(NULL, offset); in loadBookInfo()
3118 LBCode tempCode(_vm, 0); in runCommand() local
3122 uint offset = tempCode.parseCode(command); in runCommand()
3123 tempCode.runCode(this, offset); in runCommand()
3127 LBCode tempCode(_vm, 0); in checkCondition() local
3131 uint offset = tempCode.parseCode(condition); in checkCondition()
3132 LBValue result = tempCode.runCode(this, offset); in checkCondition()
H A Dlivingbooks_code.cpp1044 LBCode tempCode(_vm, 0); in cmdEval() local
1046 uint offset = tempCode.parseCode(params[0].toString()); in cmdEval()
1047 _stack.push(tempCode.runCode(_currSource, offset)); in cmdEval()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudastereo/test/
H A Dtest_stereo.cpp662 int tempCode = processStereoMatchingResults(resFS, ci, isWrite, in run() local
664 code = tempCode == cvtest::TS::OK ? code : tempCode; in run()
775 int tempCode = compareErrors(rmss, validRmss, rmsEps, RMS_STR); in processStereoMatchingResults() local
776 code = tempCode == cvtest::TS::OK ? code : tempCode; in processStereoMatchingResults()
777tempCode = compareErrors(badPxlsFractions, validBadPxlsFractions, fracEps, BAD_PXLS_FRACTION_STR); in processStereoMatchingResults()
778 code = tempCode == cvtest::TS::OK ? code : tempCode; in processStereoMatchingResults()
779 tempCode = compareROI(calcROI, validROI); in processStereoMatchingResults()
780 code = tempCode == cvtest::TS::OK ? code : tempCode; in processStereoMatchingResults()
/dports/graphics/opencv/opencv-4.5.3/modules/calib3d/test/
H A Dtest_stereomatching.cpp494 int tempCode = processStereoMatchingResults( resFS, ci, isWrite, in run() local
496 code = tempCode==cvtest::TS::OK ? code : tempCode; in run()
607 int tempCode = compareErrors( rmss, validRmss, rmsEps, RMS_STR ); in processStereoMatchingResults() local
608 code = tempCode==cvtest::TS::OK ? code : tempCode; in processStereoMatchingResults()
609tempCode = compareErrors( badPxlsFractions, validBadPxlsFractions, fracEps, BAD_PXLS_FRACTION_STR … in processStereoMatchingResults()
610 code = tempCode==cvtest::TS::OK ? code : tempCode; in processStereoMatchingResults()
611 tempCode = compareROI( calcROI, validROI ); in processStereoMatchingResults()
612 code = tempCode==cvtest::TS::OK ? code : tempCode; in processStereoMatchingResults()
/dports/cad/opencascade/opencascade-7.6.0/src/IGESGraph/
H A DIGESGraph_ToolTextFontDef.cxx65 Standard_Integer tempCode, tempNextX,tempNextY; in ReadOwnParams() local
105 …if (PR.ReadInteger(PR.Current(), "array aSCIICodes", tempCode)) //szv#4:S4163:12Mar99 `st=` not ne… in ReadOwnParams()
106 aSCIICodes->SetValue(i, tempCode); in ReadOwnParams()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libgifcodec/
H A DSkGifImageReader.cpp248 const int tempCode = code; in doLZW() local
297 if (tempCode == avail) { in doLZW()
324 oldcode = tempCode; in doLZW()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libgifcodec/
H A DSkGifImageReader.cpp248 const int tempCode = code; in doLZW() local
297 if (tempCode == avail) { in doLZW()
324 oldcode = tempCode; in doLZW()
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/mpm/lib/mykonos/adi/
H A Dt_mykonos_gpio.h362 int16_t tempCode; /*!< 16-bit signed temperature value (in deg C) that is read back */ member
H A Dmykonos_gpio.c4796 tempStatus->tempCode = temperature; in MYKONOS_readTempSensor()
/dports/textproc/zorba/zorba-2.7.0/src/types/
H A Droot_typemanager.cpp291 store::SchemaTypeCode tempCode; in RootTypeManager() local
317 tempCode = store::XS_##tname; \ in RootTypeManager()
318 m_atomic_qnametype_map.insert(tempQN, tempCode); \ in RootTypeManager()
415 tempCode = store::JS_NULL; in RootTypeManager()
416 m_atomic_qnametype_map.insert(tempQN, tempCode); in RootTypeManager()
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/mpm/lib/mykonos/
H A Dad937x_device.cpp792 return status.tempCode; in get_temperature()
/dports/www/e107/e107/e107_handlers/
H A De_parse_class.php1776 $tempCode = new $className();
1778 $full_text = $tempCode->bbPreDisplay($matches[4], $parm);