Lines Matching refs:_cache

3739       if (!this._cache) {
3740 this._cache = {
3751 if (!this._cache) {
3757 var ref = colCache.decodeAddress(this._cache.ref);
3759 if (this.ref !== this._cache.ref) {
3761 for (var i = 0; i < this._cache.tableHeight; i++) {
3764 for (var j = 0; j < this._cache.width; j++) {
3771 for (var _i = this.tableHeight; _i < this._cache.tableHeight; _i++) {
3774 for (var _j = 0; _j < this._cache.width; _j++) {
3785 for (var _j2 = this.width; _j2 < this._cache.width; _j2++) {
36959 this._cache = Buffer.allocUnsafe(0);
37065 this._cache = new Splitter();
37076 this._cache.add(data);
37082 while (chunk = this._cache.get(this._autopadding)) {
37091 var chunk = this._cache.flush();
37204 this._cache = new Splitter();
37214 this._cache.add(data);
37220 while (chunk = this._cache.get()) {
37231 var chunk = this._cache.flush();
37455 var out = xor(data, self._cache);
37456 self._cache = self._cache.slice(len);
37466 if (self._cache.length === 0) {
37467 self._cache = self._cipher.encryptBlock(self._prev);
37471 if (self._cache.length <= data.length) {
37472 len = self._cache.length;
37577 var start = self._cache.length;
37578 self._cache = Buffer.concat([self._cache, Buffer.allocUnsafe(chunkNum * blockSize)]);
37584 self._cache.writeUInt32BE(out[0], offset + 0);
37586 self._cache.writeUInt32BE(out[1], offset + 4);
37588 self._cache.writeUInt32BE(out[2], offset + 8);
37590 self._cache.writeUInt32BE(out[3], offset + 12);
37593 var pad = self._cache.slice(0, chunk.length);
37595 self._cache = self._cache.slice(chunk.length);
37837 while (self._cache.length < chunk.length) {
37838 self._cache = Buffer.concat([self._cache, getBlock(self)]);
37841 var pad = self._cache.slice(0, chunk.length);
37843 self._cache = self._cache.slice(chunk.length);
37864 this._cache = Buffer.allocUnsafe(0);