Lines Matching refs:n
213 const __isInt = (n)=>'number'===typeof n && n===(n | 0); argument
275 const isInt32 = (n)=>{ argument
276 return ('bigint'!==typeof n /*TypeError: can't convert BigInt to number*/)
277 && !!(n===(n|0) && n<=2147483647 && n>=-2147483648);
295 const bigIntFits32 = (b)=>(b >= (-0x7fffffffn - 1n) && b <= 0x7fffffffn);
657 sqlite3_randomness: (n, outPtr)=>{/*installed later*/}, argument
794 wasm.alloc = function f(n){ argument
795 const m = f.impl(n);
796 if(!m) throw new WasmAllocError("Failed to allocate",n," bytes.");
1076 alloc: (n)=>{ argument
1077 return wasm.exports.sqlite3_wasm_pstack_alloc(n)
1078 || WasmAllocError.toss("Could not allocate",n,
1094 allocChunks: (n,sz)=>{ argument
1095 const mem = wasm.pstack.alloc(n * sz);
1098 for(; i < n; offset = (sz * ++i)){
1122 allocPtr: (n=1,safePtrSize=true)=>{ argument
1123 return 1===n
1125 : wasm.pstack.allocChunks(n, safePtrSize ? 8 : wasm.ptrSizeof);
1172 let n = ta.byteLength, offset = 0; variable
1175 const nAlloc = n < 512 ? n : 512;
1178 const j = (n>nAlloc ? nAlloc : n);
1181 n -= j;
1183 } while(n > 0);
1363 capi.sqlite3_js_aggregate_context = (pCtx, n)=>{ argument
1364 return capi.sqlite3_aggregate_context(pCtx, n)
1365 || (n ? WasmAllocError.toss("Cannot allocate",n,