Home
last modified time | relevance | path

Searched refs:safePtrSize (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/ext/wasm/common/
H A Dwhwasmutil.js1132 const __allocPtr = function(howMany, safePtrSize, method){ argument
1134 const pIr = safePtrSize ? 'i64' : ptrIR;
1135 let m = target[method](howMany * (safePtrSize ? 8 : ptrSizeof));
1142 m += (safePtrSize ? 8 : ptrSizeof);
1183 (howMany=1, safePtrSize=true)=>__allocPtr(howMany, safePtrSize, 'alloc'); argument
1190 (howMany=1, safePtrSize=true)=>__allocPtr(howMany, safePtrSize, 'scopedAlloc'); argument
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-prologue.js1122 allocPtr: (n=1,safePtrSize=true)=>{ argument
1124 ? wasm.pstack.alloc(safePtrSize ? 8 : wasm.ptrSizeof)
1125 : wasm.pstack.allocChunks(n, safePtrSize ? 8 : wasm.ptrSizeof);