Lines Matching refs:f
283 const bigIntFits64 = function f(b){ function
284 if(!f._max){
285 f._max = BigInt("0x7fffffffffffffff");
286 f._min = ~f._max;
288 return b >= f._min && b <= f._max;
301 const bigIntFitsDouble = function f(b){
302 if(!f._min){
303 f._min = Number.MIN_SAFE_INTEGER;
304 f._max = Number.MAX_SAFE_INTEGER;
306 return b >= f._min && b <= f._max;
790 const f = wasm.exports[key];
791 if(!(f instanceof Function)) toss3("Missing required exports[",key,"] function.");
794 wasm.alloc = function f(n){ function
795 const m = f.impl(n);
831 wasm.compileOptionUsed = function f(optName){
833 if(f._result) return f._result;
834 else if(!f._opt){
835 f._rx = /^([^=]+)=(.+)/;
836 f._rxInt = /^-?\d+$/;
837 f._opt = function(opt, rv){
838 const m = f._rx.exec(opt);
840 rv[1] = m ? (f._rxInt.test(m[2]) ? +m[2] : m[2]) : true;
846 f._opt(k,ov);
849 return f._result = rc;
1502 lip = lip.map((f)=>{
1503 const p = (f instanceof Promise) ? f : f(sqlite3);
1529 sqlite3ApiBootstrap.initializers.forEach((f)=>{
1530 f(sqlite3);