Searched refs:alloc (Results 1 – 8 of 8) sorted by relevance
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-prologue.js | 745 alloc: undefined/*installed later*/, property 780 const pRet = wasm.alloc(srcTypedArray.byteLength || 1); 794 wasm.alloc = function f(n){ function 799 wasm.alloc.impl = wasm.exports[keyAlloc]; 1076 alloc: (n)=>{ method 1095 const mem = wasm.pstack.alloc(n * sz); 1124 ? wasm.pstack.alloc(safePtrSize ? 8 : wasm.ptrSizeof) 1176 const ptr = wasm.pstack.alloc(nAlloc); 1319 const pSize = wasm.pstack.alloc(8/*i64*/ + wasm.ptrSizeof);
|
| H A D | sqlite3-api-glue.js | 32 alloc: wasm.alloc, property
|
| H A D | sqlite3-api-oo1.js | 609 ppStmt = wasm.pstack.alloc(8)/* output (sqlite3_stmt**) arg */; 1239 const pStr = wasm.alloc(bytes.length || 1);
|
| /sqlite-3.40.0/ext/wasm/jaccwabyt/ |
| H A D | jaccwabyt.js | 54 alloc = config.alloc, 79 delete f.__flags.alloc; delete f.__flags.dealloc; 83 f.__flags.alloc = 0!==(0x04 & flags); 308 m = alloc(ctor.structInfo.sizeof); 312 if(ctor.debugFlags.__flags.alloc){ 477 const mem = alloc(u.length+1);
|
| H A D | jaccwabyt.md | 182 alloc: function(howMuchMemory){...}, 200 alloc: (n)=>Module['_malloc'](n), 465 - `alloc` 477 `alloc()` and releases that memory. It must never throw and must
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | tester1.js | 504 const alloc = w.alloc, dealloc = w.dealloc; 505 w.alloc = w.dealloc = null; 509 w.alloc = alloc; 1038 .mustThrowMatching(()=>P.alloc(0), isAllocErr) 1039 .mustThrowMatching(()=>P.alloc(-1), isAllocErr); 1040 let p1 = P.alloc(12); 1043 let p2 = P.alloc(7); 1045 .mustThrowMatching(()=>P.alloc(remaining), isAllocErr) 1049 let p3 = P.alloc(n); 1051 .mustThrowMatching(()=>P.alloc(1), isAllocErr); [all …]
|
| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | whwasmutil.js | 935 if(!(obj.alloc instanceof Function) || 966 target.alloc, 'allocCString()'); 1061 const p = target.alloc(n); 1681 if(!tgt.alloc && arg.instance.exports.malloc){ 1683 tgt.alloc = function(n){ function
|
| /sqlite-3.40.0/src/ |
| H A D | vdbemem.c | 1827 struct ValueNewStat4Ctx alloc; in sqlite3Stat4ProbeSetValue() local 1829 alloc.pParse = pParse; in sqlite3Stat4ProbeSetValue() 1830 alloc.pIdx = pIdx; in sqlite3Stat4ProbeSetValue() 1831 alloc.ppRec = ppRec; in sqlite3Stat4ProbeSetValue() 1837 alloc.iVal = iVal+i; in sqlite3Stat4ProbeSetValue() 1838 rc = stat4ValueFromExpr(pParse, pElem, aff, &alloc, &pVal); in sqlite3Stat4ProbeSetValue()
|