Home
last modified time | relevance | path

Searched refs:heap (Results 1 – 25 of 37) sorted by relevance

12

/sqlite-3.40.0/ext/wasm/jaccwabyt/
H A Djaccwabyt.js43 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 Djaccwabyt.md69 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 Dcapi3b.test25 # soft-heap-limit is set too low. So disable the soft heap limit
144 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
H A Dmalloc5.test16 # 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 Dindexfault.test66 # 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 Dexclusive2.test37 # 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 Dwalfault.test455 # 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 Dioerr3.test13 # in conjunction with very small soft-heap-limit values.
H A Dshrink.test29 # attempts to free as much heap memory as possible from database
H A Dwin32heap.test12 # focus of this script is the Win32 heap implementation.
H A Dtrigger8.test28 # heap, use 1000.
H A Dsoftheap1.test73 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
H A Dlock2.test109 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
H A Dlock6.test164 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
H A Dcache.test139 sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
H A Ddbstatus.test94 # 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 Dwalnoshm.test29 # WAL database is opened using heap-memory for the WAL index, the connection
/sqlite-3.40.0/doc/
H A Dvdbesort-memory.md30 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 DF2FS.txt27 accumulates the entire transaction in heap memory, deferring all writes to the
/sqlite-3.40.0/ext/wasm/common/
H A Dwhwasmutil.js891 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 Drun-speed-test.sh57 --heap)
H A Dspeed-check.sh126 --heap)
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-prologue.js1174 const heap = wasm.heap8u(); constant
1180 ta.set(typedArrayPart(heap, ptr, ptr+j), offset);
/sqlite-3.40.0/src/
H A DbtreeInt.h706 u32 *heap; /* Min-heap used for analyzing cell coverage */ member
H A Dbtree.c10481 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 …]

12