| /sqlite-3.40.0/ext/wasm/jaccwabyt/ |
| H A D | jaccwabyt.js | 43 if(!(config.heap instanceof WebAssembly.Memory) 44 && !(config.heap instanceof Function)){ 52 const heap = (config.heap instanceof Function) 53 ? config.heap : (()=>new Uint8Array(config.heap.buffer)), 317 if(fill) heap().fill(0, m, m + ctor.structInfo.sizeof); 330 ? new Uint8Array(heap().slice(p, p+this.structInfo.sizeof)) 445 const mem = heap(); 479 const h = heap(); 616 new DataView(heap().buffer, this.pointer + descr.offset, sizeOf) 647 new DataView(heap().buffer, this.pointer + descr.offset, sizeOf)
|
| H A D | jaccwabyt.md | 69 allocated from the WASM heap. As that heap is shared with the C-side 180 heap: WebAssembly.Memory instance or a function which returns 197 heap: Module['asm']['memory'], 199 // heap: ()=>Module['HEAP8'], 390 heap memory. The correct way to free up that memory is to use the 456 - `heap` 472 `heap` config option. 521 [StructBinderFactory][] configuration (e.g. the memory heap). 541 string and returns its address relative to `config.heap()`. If 563 a different memory heap. [all …]
|
| /sqlite-3.40.0/test/ |
| H A D | capi3b.test | 25 # soft-heap-limit is set too low. So disable the soft heap limit 144 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
|
| H A D | malloc5.test | 16 # the configured soft heap limit could cause sqlite to upgrade database 212 # The second test case sets the "soft-heap-limit" to 100,000 bytes (0.1 MB) 216 # Before executing malloc5-4.* we save the value of the current soft heap 255 # Restore the soft heap limit.
|
| H A D | indexfault.test | 66 # with default options and once with a 50KB soft-heap-limit. 164 # 3.2: As 7.1, but with a low (50KB) soft-heap-limit. 168 # 3.4: As 7.3, but with a low (50KB) soft-heap-limit.
|
| H A D | exclusive2.test | 37 # moments. So disable the soft-heap-limit. 199 # this means 19 pages. We also need to disable the soft-heap-limit 322 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
|
| H A D | walfault.test | 455 # heap-memory wal-index. 479 if {[file exists test.db-shm]} { error "Not using heap-memory mode" } 490 if {[file exists test.db-shm]} { error "Not using heap-memory mode" } 516 if {[file exists test.db-shm]} { error "Not using heap-memory mode" }
|
| H A D | ioerr3.test | 13 # in conjunction with very small soft-heap-limit values.
|
| H A D | shrink.test | 29 # attempts to free as much heap memory as possible from database
|
| H A D | win32heap.test | 12 # focus of this script is the Win32 heap implementation.
|
| H A D | trigger8.test | 28 # heap, use 1000.
|
| H A D | softheap1.test | 73 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
|
| H A D | lock2.test | 109 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
|
| H A D | lock6.test | 164 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
|
| H A D | cache.test | 139 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
|
| H A D | dbstatus.test | 94 # heap and lookaside memory allocated by SQLite, and the memory 249 # 2. Prepare a bunch of SQL statements. Measure the total heap and
|
| H A D | walnoshm.test | 29 # WAL database is opened using heap-memory for the WAL index, the connection
|
| /sqlite-3.40.0/doc/ |
| H A D | vdbesort-memory.md | 30 There are no other significant users of heap memory in the sorter module. 42 keys in a regular heap-memory linked list (one allocation per element).
|
| H A D | F2FS.txt | 27 accumulates the entire transaction in heap memory, deferring all writes to the
|
| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | whwasmutil.js | 891 const heap = target.heap8u(); 893 for(; i < n && (ch = heap[srcPtr+i]); ++i){ 894 heap[tgtPtr+i] = ch; 896 if(i<n) heap[tgtPtr + i++] = 0;
|
| /sqlite-3.40.0/tool/ |
| H A D | run-speed-test.sh | 57 --heap)
|
| H A D | speed-check.sh | 126 --heap)
|
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-prologue.js | 1174 const heap = wasm.heap8u(); constant 1180 ta.set(typedArrayPart(heap, ptr, ptr+j), offset);
|
| /sqlite-3.40.0/src/ |
| H A D | btreeInt.h | 706 u32 *heap; /* Min-heap used for analyzing cell coverage */ member
|
| H A D | btree.c | 10481 heap = pCheck->heap; in checkTreePage() 10482 heap[0] = 0; in checkTreePage() 10562 heap = pCheck->heap; in checkTreePage() 10563 heap[0] = 0; in checkTreePage() 10568 btreeHeapInsert(heap, (pc<<16)|(pc+size-1)); in checkTreePage() 10583 btreeHeapInsert(heap, (((u32)i)<<16)|(i+size-1)); in checkTreePage() 10610 while( btreeHeapPull(heap,&x) ){ in checkTreePage() 10626 if( heap[0]==0 && nFrag!=data[hdr+7] ){ in checkTreePage() 10706 sCheck.heap = 0; in sqlite3BtreeIntegrityCheck() 10719 if( sCheck.heap==0 ){ in sqlite3BtreeIntegrityCheck() [all …]
|