Home
last modified time | relevance | path

Searched refs:heapsize (Results 26 – 50 of 1757) sorted by relevance

12345678910>>...71

/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/freeBSD/
H A Dbpsheap.c126 int i, total, bpssize, heapsize, mallocsize; local
226 getheap(heapsize);
236 heapsize, heapsize,
348 getheap(heapsize) in getheap() argument
349 int heapsize; in getheap()
363 heapsize = 119000000;
366 heapupperbound = heaplowerbound + heapsize;
400 int heapsize; local
432 gcarraysize = (((heapsize / 9) / 4) * 4);
433 heapsize = heapsize - gcarraysize;
[all …]
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/brock/
H A Dbpsheap.c138 long long i, total, bpssize, heapsize, mallocsize; local
229 getheap(heapsize);
234 heapsize, heapsize,
347 getheap(heapsize) in getheap() argument
348 long long heapsize; in getheap()
362 heapupperbound = heaplowerbound + heapsize;
368 oldheapupperbound = oldheaplowerbound + heapsize;
395 int heapsize; local
428 gcarraysize = (((heapsize / 9) / 4) * 4);
429 heapsize = heapsize - gcarraysize;
[all …]
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/armv6/
H A Dbpsheap.c151 int i, total, bpssize, heapsize, mallocsize; local
251 getheap(heapsize);
266 heapsize, heapsize,
284 heapsize, heapsize,
418 getheap(heapsize) in getheap() argument
419 int heapsize; in getheap()
438 heapupperbound = heaplowerbound + heapsize;
473 int heapsize; local
505 gcarraysize = (((heapsize / 9) / 4) * 4);
506 heapsize = heapsize - gcarraysize;
[all …]
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/freeBSD64/
H A Dbpsheap.c150 long long i, total, bpssize, heapsize, mallocsize; local
244 getheap(heapsize);
249 heapsize, heapsize,
383 getheap(heapsize) in getheap() argument
384 long long heapsize; in getheap()
398 heapupperbound = heaplowerbound + heapsize;
404 oldheapupperbound = oldheaplowerbound + heapsize;
432 int heapsize; local
465 gcarraysize = (((heapsize / 9) / 4) * 4);
466 heapsize = heapsize - gcarraysize;
[all …]
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/AMD64_ext/
H A Dbpsheap.c149 long long i, total, bpssize, heapsize, mallocsize; local
242 getheap(heapsize);
247 heapsize, heapsize,
381 getheap(heapsize) in getheap() argument
382 long long heapsize; in getheap()
396 heapupperbound = heaplowerbound + heapsize;
402 oldheapupperbound = oldheaplowerbound + heapsize;
430 int heapsize; local
463 gcarraysize = (((heapsize / 9) / 4) * 4);
464 heapsize = heapsize - gcarraysize;
[all …]
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/AMD64/
H A Dbpsheap.c149 long long i, total, bpssize, heapsize, mallocsize; local
242 getheap(heapsize);
247 heapsize, heapsize,
381 getheap(heapsize) in getheap() argument
382 long long heapsize; in getheap()
396 heapupperbound = heaplowerbound + heapsize;
402 oldheapupperbound = oldheaplowerbound + heapsize;
430 int heapsize; local
463 gcarraysize = (((heapsize / 9) / 4) * 4);
464 heapsize = heapsize - gcarraysize;
[all …]
/dports/x11-toolkits/vdk/vdk-2.5.1/include/vdk/
H A Dvdkheap.h79 void Heapify(int i,int heapsize);
94 void VDKHeap<T>::Heapify(int i, int heapsize) in Heapify() argument
97 if( (l < heapsize) && (this->data[l] > this->data[i])) largest = l; in Heapify()
98 if( (r < heapsize) && (this->data[r] > this->data[largest])) largest = r; in Heapify()
104 Heapify(largest,heapsize); in Heapify()
120 int heapsize = this->size(); in Sort() local
121 int i = heapsize-1; in Sort()
127 heapsize--; in Sort()
128 Heapify(0,heapsize); in Sort()
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/aarch64/
H A Dbpsheap.c153 long long i, total, bpssize, heapsize, mallocsize; local
258 getheap(heapsize);
273 heapsize, heapsize,
291 heapsize, heapsize,
431 getheap(heapsize) in getheap() argument
432 long long heapsize; in getheap()
459 heapupperbound = heaplowerbound + heapsize;
466 oldheapupperbound = oldheaplowerbound + heapsize;
526 gcarraysize = (((heapsize / 9) / 4) * 4);
527 heapsize = heapsize - gcarraysize;
[all …]
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/mingw-w64/
H A Dbpsheap.c164 long long i, total, bpssize, heapsize, mallocsize; local
279 getheap(heapsize);
288 heapsize, heapsize,
453 getheap(heapsize) in getheap() argument
454 long long heapsize; in getheap()
521 heapupperbound = heaplowerbound + heapsize;
527 oldheapupperbound = oldheaplowerbound + heapsize;
560 int heapsize; local
595 gcarraysize = (((heapsize / 9) / 4) * 4);
596 heapsize = heapsize - gcarraysize;
[all …]
/dports/games/libretro-beetle_bsnes/beetle-bsnes-libretro-b65ded5bde278c18af538c687db9b72c995b220a/mednafen/snes/src/lib/nall/
H A Dpriorityqueue.hpp21 while(heapsize && gte(basecounter, heap[0].counter)) callback(dequeue()); in tick()
27 unsigned child = heapsize++; in enqueue()
46 unsigned counter = heap[--heapsize].counter; in dequeue()
50 if(child >= heapsize) break; in dequeue()
51 if(child + 1 < heapsize && gte(heap[child].counter, heap[child + 1].counter)) child++; in dequeue()
60 heap[parent].event = heap[heapsize].event; in dequeue()
66 heapsize = 0; in reset()
71 s.integer(heapsize); in serialize()
92 unsigned heapsize; member in nall::priority_queue
/dports/math/reduce/Reduce-svn5758-src/psl/dist/kernel/macintel64/
H A Dbpsheap.c147 long long i, total, bpssize, heapsize, mallocsize; local
237 getheap(heapsize);
242 heapsize, heapsize,
364 getheap(heapsize) in getheap() argument
365 long long heapsize; in getheap()
373 heapupperbound = heaplowerbound + heapsize;
379 oldheapupperbound = oldheaplowerbound + heapsize;
407 int heapsize; local
440 gcarraysize = (((heapsize / 9) / 4) * 4);
441 heapsize = heapsize - gcarraysize;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/llvm12/llvm-project-12.0.1.src/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/wasi-compiler-rt11/compiler-rt-11.0.1.src/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/devel/llvm13/llvm-project-13.0.1.src/compiler-rt/test/asan/TestCases/Windows/
H A Dheaprealloc_alloc_zero.cpp37 size_t heapsize = HeapSize(GetProcessHeap(), 0, ptr2); in main() local
38 if (heapsize != 1) { // will be 0 without ASAN turned on in main()
39 std::cerr << "HeapAlloc size failure! " << heapsize << " != 1\n"; in main()
45 heapsize = HeapSize(GetProcessHeap(), 0, ptr3); in main()
47 if (heapsize != 3) { in main()
48 std::cerr << "HeapAlloc size failure! " << heapsize << " != 3\n"; in main()
/dports/archivers/zoo/zoo-2.10.1_4/
H A Dmaketree.c13 static int n, heapsize; variable
66 while ((j = 2 * i) <= heapsize) {
67 if (j < heapsize && freq[heap[j]] > freq[heap[j + 1]])
99 avail = n; heapsize = 0; heap[1] = 0;
102 if (freq[i]) heap[++heapsize] = i;
104 if (heapsize < 2) {
107 for (i = heapsize / 2; i >= 1; i--)
113 heap[1] = heap[heapsize--];
121 } while (heapsize > 1);
/dports/archivers/lha/lha-114i/src/
H A Dmaketree.c12 static short n, heapsize, heap[NC + 1]; variable
110 while ((j = 2 * i) <= heapsize) {
111 if (j < heapsize && freq[heap[j]] > freq[heap[j + 1]])
136 heapsize = 0;
141 heap[++heapsize] = i;
143 if (heapsize < 2) {
147 for (i = heapsize / 2; i >= 1; i--)
154 heap[1] = heap[heapsize--];
165 } while (heapsize > 1);
/dports/math/reduce/Reduce-svn5758-src/vsl/
H A Dbpsheap.c178 int64_t i, total, bpssize, heapsize, mallocsize; in setupbpsandheap() local
268 getheap(heapsize); in setupbpsandheap()
273 heapsize, heapsize, in setupbpsandheap()
418 void getheap(int64_t heapsize) in getheap() argument
432 heapupperbound = heaplowerbound + heapsize; in getheap()
438 oldheapupperbound = oldheaplowerbound + heapsize; in getheap()
467 int heapsize; in _() local
494 heapsize = (((newbreakvalue - heaplowerbound) / 4) * 4); in _()
496 gcarraysize = (((heapsize / 9) / 4) * 4); in _()
497 heapsize = heapsize - gcarraysize; in _()
[all …]

12345678910>>...71