Home
last modified time | relevance | path

Searched refs:endCount (Results 1 – 25 of 404) sorted by relevance

12345678910>>...17

/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libigl/igl/
H A DTimer.h37 endCount() in Timer()
40 endCount(0) in Timer()
43 endCount() in Timer()
49 endCount.QuadPart = 0; in Timer()
52 endCount = 0; in Timer()
55 endCount.tv_sec = endCount.tv_usec = 0; in Timer()
111 gettimeofday(&endCount, NULL); in stop()
155 endTimeInMicroSec = (endCount.tv_sec * 1000000.0) + endCount.tv_usec; in getElapsedTimeInMicroSec()
168 LARGE_INTEGER endCount; variable
171 uint64_t endCount; variable
[all …]
/dports/graphics/wings/libigl-2.1.0/include/igl/
H A DTimer.h37 endCount() in Timer()
40 endCount(0) in Timer()
43 endCount() in Timer()
49 endCount.QuadPart = 0; in Timer()
52 endCount = 0; in Timer()
55 endCount.tv_sec = endCount.tv_usec = 0; in Timer()
111 gettimeofday(&endCount, NULL); in stop()
155 endTimeInMicroSec = (endCount.tv_sec * 1000000.0) + endCount.tv_usec; in getElapsedTimeInMicroSec()
168 LARGE_INTEGER endCount; variable
171 uint64_t endCount; variable
[all …]
/dports/www/osticket/upload/include/mpdf/vendor/mpdf/mpdf/src/
H A DTTFontFileAnalysis.php341 $endCount = [];
343 $endCount[] = $this->read_ushort();
361 …f (($endCount[$n] > 0x0590 && $endCount[$n] < 0x077F) || ($endCount[$n] > 0xFE70 && $endCount[$n] …
364 if ($endCount[$n] > 0x0900 && $endCount[$n] < 0x0DFF) {
367endCount[$n] > 0x2E80 && $endCount[$n] < 0x4DC0) || ($endCount[$n] > 0x4E00 && $endCount[$n] < 0xA…
370 if ($endCount[$n] > 0xE000 && $endCount[$n] < 0xF8FF) {
372 if ($endCount[$n] > 0xF500 && $endCount[$n] < 0xF7FF) {
378 $endpoint = ($endCount[$n] + 1);
/dports/math/fcl/fcl-0.7.0/test/
H A Dtest_fcl_utility.cpp57 endCount.QuadPart = 0; in Timer()
60 endCount.tv_sec = endCount.tv_usec = 0; in Timer()
91 QueryPerformanceCounter(&endCount); in stop()
93 gettimeofday(&endCount, nullptr); in stop()
101 QueryPerformanceCounter(&endCount); in getElapsedTimeInMicroSec()
104 endTimeInMicroSec = endCount.QuadPart * (1000000.0 / frequency.QuadPart); in getElapsedTimeInMicroSec()
107 gettimeofday(&endCount, nullptr); in getElapsedTimeInMicroSec()
110 endTimeInMicroSec = (endCount.tv_sec * 1000000.0) + endCount.tv_usec; in getElapsedTimeInMicroSec()
/dports/games/warzone2100/warzone2100/lib/sequence/
H A Dtimer.cpp33 static struct timeval endCount; variable
81 endCount.tv_sec = endCount.tv_usec = 0; in Timer_Init()
98 gettimeofday(&endCount, nullptr); in Timer_stop()
105 gettimeofday(&endCount, nullptr); in Timer_getElapsedMicroSecs()
108 endTimeInMicroSec = (endCount.tv_sec * 1000000.0) + endCount.tv_usec; in Timer_getElapsedMicroSecs()
/dports/science/dftbplus/dftbplus-19.1/prog/dftb+/lib_common/
H A Dtimer.F9022 integer :: endCount = -1 component
53 call system_clock(count=this%endCount)
88 integer :: endCount local
90 if (this%endCount < 0) then
91 call system_clock(count=endCount)
93 endCount = this%endCount
98 wallClockTime = real(endCount - this%startCount) / real(this%countRate)
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/leaks/org/eclipse/jdt/ui/leaktest/
H A DLeakTestCase.java189 protected void assertDifferentCount(int startCount, int endCount) { in assertDifferentCount() argument
190 assertDifferentCount(null, startCount, endCount); in assertDifferentCount()
202 protected void assertDifferentCount(String message, int startCount, int endCount) { in assertDifferentCount() argument
203 if (startCount == endCount) { in assertDifferentCount()
205 …assertTrue(str + "instance count is not different: (" + startCount + " / " + endCount + " )", fals… in assertDifferentCount()
216 protected void assertEqualCount(int startCount, int endCount) { in assertEqualCount() argument
217 assertEqualCount(null, startCount, endCount); in assertEqualCount()
228 protected void assertEqualCount(String message, int startCount, int endCount) { in assertEqualCount() argument
229 if (startCount != endCount) { in assertEqualCount()
232 …assertTrue(str + "instance count is not the same: (" + startCount + " / " + endCount + " )", false… in assertEqualCount()
/dports/devel/rth/rth/
H A Dtestset_add_page.php110 $endCount = 0; variable
128 $endCount = $endCount + ( $num_1 - 1 ); variable
130 $startCount = $endCount + 1;
131 $endCount = $endCount + $num_1; variable
137 …put type=checkbox name=$x onClick='javascript:checkBoxValidate(name,$startCount,$endCount)'></TD>";
/dports/devel/php-libawl/awl-827fbfed7dab0ca339998ca6cdcffb328246d83b/vendor/phpunit/phpunit/Tests/Framework/
H A DTestListenerTest.php62 protected $endCount; variable in Framework_TestListenerTest
105 $this->endCount++;
113 $this->endCount = 0;
126 $this->assertEquals(1, $this->endCount);
135 $this->assertEquals(1, $this->endCount);
144 $this->assertEquals(1, $this->endCount);
/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/source/myfont/
H A Dcmap.c80 if((f4->endCount = (uint16_t *)myfont_calloc(mf, f4->segCount, sizeof(uint16_t))) == NULL) in myfont_table_cmap_format_4()
84 myfont_free(mf, f4->endCount); f4->endCount = NULL; in myfont_table_cmap_format_4()
89 myfont_free(mf, f4->endCount); f4->endCount = NULL; in myfont_table_cmap_format_4()
96 myfont_free(mf, f4->endCount); f4->endCount = NULL; in myfont_table_cmap_format_4()
104 myfont_free(mf, f4->endCount); f4->endCount = NULL; in myfont_table_cmap_format_4()
114 f4->endCount[i] = myfont_read_u16(&data); in myfont_table_cmap_format_4()
162 if(codepoint <= f4->endCount[i]) in myfont_glyph_index_by_code_format_4()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/pathops/
H A DSkPathWriter.cpp204 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
205 SkASSERT(endCount > 0); in assemble()
206 SkASSERT(endCount == fPartials.count() * 2); in assemble()
208 for (int index = 0; index < endCount; index += 2) { in assemble()
218 int linkCount = endCount / 2; // number of partial contours in assemble()
225 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
231 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
233 for (iIndex = rIndex + 1; iIndex < endCount; ++iIndex) { in assemble()
242 rRow += endCount; in assemble()
250 int row = pair / endCount; in assemble()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/pathops/
H A DSkPathWriter.cpp201 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
202 SkASSERT(endCount > 0); in assemble()
203 SkASSERT(endCount == fPartials.count() * 2); in assemble()
205 for (int index = 0; index < endCount; index += 2) { in assemble()
215 int linkCount = endCount / 2; // number of partial contours in assemble()
222 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
228 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
230 for (iIndex = rIndex + 1; iIndex < endCount; ++iIndex) { in assemble()
239 rRow += endCount; in assemble()
247 int row = pair / endCount; in assemble()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/pathops/
H A DSkPathWriter.cpp212 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
213 SkASSERT(endCount > 0); in assemble()
214 SkASSERT(endCount == fPartials.count() * 2); in assemble()
216 for (int index = 0; index < endCount; index += 2) { in assemble()
226 for (int pIndex = 0; pIndex < endCount; pIndex++) { in assemble()
269 int linkCount = endCount / 2; // number of partial contours in assemble()
276 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
282 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
293 rRow += endCount; in assemble()
301 int row = pair / endCount; in assemble()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/pathops/
H A DSkPathWriter.cpp212 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
213 SkASSERT(endCount > 0); in assemble()
214 SkASSERT(endCount == fPartials.count() * 2); in assemble()
216 for (int index = 0; index < endCount; index += 2) { in assemble()
226 for (int pIndex = 0; pIndex < endCount; pIndex++) { in assemble()
269 int linkCount = endCount / 2; // number of partial contours in assemble()
276 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
282 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
293 rRow += endCount; in assemble()
301 int row = pair / endCount; in assemble()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/pathops/
H A DSkPathWriter.cpp209 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
210 SkASSERT(endCount > 0); in assemble()
211 SkASSERT(endCount == fPartials.count() * 2); in assemble()
213 for (int index = 0; index < endCount; index += 2) { in assemble()
223 for (int pIndex = 0; pIndex < endCount; pIndex++) { in assemble()
266 int linkCount = endCount / 2; // number of partial contours in assemble()
273 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
279 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
290 rRow += endCount; in assemble()
298 int row = pair / endCount; in assemble()
[all …]
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/pathops/
H A DSkPathWriter.cpp212 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
213 SkASSERT(endCount > 0); in assemble()
214 SkASSERT(endCount == fPartials.count() * 2); in assemble()
216 for (int index = 0; index < endCount; index += 2) { in assemble()
226 for (int pIndex = 0; pIndex < endCount; pIndex++) { in assemble()
269 int linkCount = endCount / 2; // number of partial contours in assemble()
276 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
282 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
293 rRow += endCount; in assemble()
301 int row = pair / endCount; in assemble()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/pathops/
H A DSkPathWriter.cpp209 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
210 SkASSERT(endCount > 0); in assemble()
211 SkASSERT(endCount == fPartials.count() * 2); in assemble()
213 for (int index = 0; index < endCount; index += 2) { in assemble()
223 for (int pIndex = 0; pIndex < endCount; pIndex++) { in assemble()
266 int linkCount = endCount / 2; // number of partial contours in assemble()
273 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
279 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
290 rRow += endCount; in assemble()
298 int row = pair / endCount; in assemble()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/pathops/
H A DSkPathWriter.cpp212 int endCount = fEndPtTs.count(); // all starts and ends in assemble() local
213 SkASSERT(endCount > 0); in assemble()
214 SkASSERT(endCount == fPartials.count() * 2); in assemble()
216 for (int index = 0; index < endCount; index += 2) { in assemble()
226 for (int pIndex = 0; pIndex < endCount; pIndex++) { in assemble()
269 int linkCount = endCount / 2; // number of partial contours in assemble()
276 const int entries = endCount * (endCount - 1) / 2; // folded triangle in assemble()
282 for (rIndex = 0; rIndex < endCount - 1; ++rIndex) { in assemble()
293 rRow += endCount; in assemble()
301 int row = pair / endCount; in assemble()
[all …]
/dports/games/glest/glest_source_3.2.2/source/shared_lib/sources/platform/win32/
H A Dplatform_util.cpp83 int64 endCount; in stop() local
84 QueryPerformanceCounter((LARGE_INTEGER*) &endCount); in stop()
85 accumCount+= endCount-startCount; in stop()
106 int64 endCount; in queryCounter() local
107 QueryPerformanceCounter((LARGE_INTEGER*) &endCount); in queryCounter()
108 return multiplier*(accumCount+endCount-startCount)/freq; in queryCounter()
/dports/games/glest/glest_source_3.2.2/source/shared_lib/sources/platform/sdl/
H A Dplatform_util.cpp85 Uint32 endCount; in stop() local
86 endCount = SDL_GetTicks(); in stop()
87 accumCount += endCount-startCount; in stop()
107 Uint32 endCount; in queryCounter() local
108 endCount = SDL_GetTicks(); in queryCounter()
109 return multiplier*(accumCount+endCount-startCount)/freq; in queryCounter()
/dports/multimedia/chilitags/chilitags-2.0.0-169-g0d9854f/test/
H A Dintegration.cpp76 auto endCount = cv::getTickCount(); in TEST() local
77 auto timeWithout = endCount - startCount; in TEST()
84 endCount = cv::getTickCount(); in TEST()
85 auto timeWith = endCount - startCount; in TEST()
/dports/math/fcl05/fcl-0.5.0/test/
H A Dtest_fcl_utility.cpp18 endCount.QuadPart = 0; in Timer()
21 endCount.tv_sec = endCount.tv_usec = 0; in Timer()
51 QueryPerformanceCounter(&endCount); in stop()
53 gettimeofday(&endCount, NULL); in stop()
62 QueryPerformanceCounter(&endCount); in getElapsedTimeInMicroSec()
65 endTimeInMicroSec = endCount.QuadPart * (1000000.0 / frequency.QuadPart); in getElapsedTimeInMicroSec()
68 gettimeofday(&endCount, NULL); in getElapsedTimeInMicroSec()
71 endTimeInMicroSec = (endCount.tv_sec * 1000000.0) + endCount.tv_usec; in getElapsedTimeInMicroSec()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/harfbuzz/src/
H A Dhb-ot-cmap-table.hh77 endCount = subtable->values; in init()
78 startCount = endCount + segCount + 1; in init()
92 const USHORT *endCount = thiz->endCount; in get_glyph_func() local
99 else if (codepoint > endCount[mid]) in get_glyph_func()
130 const USHORT *endCount; member
179 USHORT endCount[segCount]; /* End characterCode for each segment,
/dports/x11-toolkits/p5-Tk/Tk-804.035/pTk/mTk/win/
H A DtkWinFont.c1391 if (familyPtr->endCount != NULL) { in FreeFontFamily()
1392 ckfree((char *) familyPtr->endCount); in FreeFontFamily()
1703 USHORT *startCount, *endCount; in FontMapLoadPage() local
1721 endCount = familyPtr->endCount; in FontMapLoadPage()
1727 if (endCount[j] >= i) { in FontMapLoadPage()
2260 USHORT *startCount, *endCount; in LoadFontRanges() local
2268 endCount = NULL; in LoadFontRanges()
2334 SwapShort(&endCount[i]); in LoadFontRanges()
2356 endCount[i] &= 0xff; in LoadFontRanges()
2372 endCount[0] = 0x00ff; in LoadFontRanges()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Query/PlanCompiler/
H A DConstraintManager.cs302 int endCount = 0; in IsBinary()
307 endCount++; in IsBinary()
308 if (endCount > 2) in IsBinary()
314 return (endCount == 2); in IsBinary()

12345678910>>...17