Lines Matching defs:db
1988 var db = IDBFS.dbs[name];
1989 if (db) {
1990 return callback(null, db);
2000 var db = e.target.result;
2005 if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) {
2008 fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME);
2014 db = req.result;
2017 IDBFS.dbs[name] = db;
2018 callback(null, db);
2058 IDBFS.getDB(mount.mountpoint, function(err, db) {
2061 var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readonly');
2071 return callback(null, { type: 'remote', db: db, entries: entries });
2169 var db = src.type === 'remote' ? src.db : dst.db;
2170 var transaction = db.transaction([IDBFS.DB_STORE_NAME], 'readwrite');
3858 console.log('creating db');
3859 var db = openRequest.result;
3860 db.createObjectStore(FS.DB_STORE_NAME);
3863 var db = openRequest.result;
3864 var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite');
3889 var db = openRequest.result;
3891 var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly');
41834 BigInteger.prototype.DB = dbits;
41901 else if(sh+k > this.DB) {
41902 this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<<sh;
41903 this[this.t++] = (x>>(this.DB-sh));
41908 if(sh >= this.DB) sh -= this.DB;
41912 if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)<<sh;
41935 var p = this.DB-(i*this.DB)%k;
41937 if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); }
41941 d |= this[--i]>>(p+=this.DB-k);
41945 if(p <= 0) { p += this.DB; --i; }
41985 return this.DB
41988 // (protected) r = this << n*DB
41997 // (protected) r = this >> n*DB
42006 var bs = n%this.DB;
42007 var cbs = this.DB-bs;
42009 var ds = Math.floor(n/this.DB), c = (this.s<<bs)&this.DM, i;
42024 var ds = Math.floor(n/this.DB);
42026 var bs = n%this.DB;
42027 var cbs = this.DB-bs;
42045 c >>= this.DB;
42052 c >>= this.DB;
42061 c >>= this.DB;
42115 var nsh = this.DB-nbits(pm[pm.t-1]); // normalize modulus
42176 // (protected) return "-1/this % 2^DB"; useful for Mont. reduction
42195 // assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints
42207 this.um = (1<<(m.DB-15))-1;
42342 function bnpChunkSize(r) { return Math.floor(Math.LN2*this.DB/Math.log(r)); }
42393 // assumes 16 < DB < 32
42394 return ((this[1]&((1<<(32-this.DB))-1))<<this.DB)|this[0];
42403 c >>= this.DB;
42410 c >>= this.DB;
42419 c >>= this.DB;