Lines Matching refs:cache

37106   this.cache = Buffer.allocUnsafe(0);
37110 this.cache = Buffer.concat([this.cache, data]);
37117 if (this.cache.length > 16) {
37118 out = this.cache.slice(0, 16);
37119 this.cache = this.cache.slice(16);
37123 if (this.cache.length >= 16) {
37124 out = this.cache.slice(0, 16);
37125 this.cache = this.cache.slice(16);
37134 if (this.cache.length) return this.cache;
37254 this.cache = Buffer.allocUnsafe(0);
37258 this.cache = Buffer.concat([this.cache, data]);
37262 if (this.cache.length > 15) {
37263 var out = this.cache.slice(0, 16);
37264 this.cache = this.cache.slice(16);
37272 var len = 16 - this.cache.length;
37280 return Buffer.concat([this.cache, padBuff]);
37333 this.cache = Buffer.allocUnsafe(0);
37383 this.cache = Buffer.concat([this.cache, buf]);
37386 while (this.cache.length >= 16) {
37387 chunk = this.cache.slice(0, 16);
37388 this.cache = this.cache.slice(16);
37394 if (this.cache.length) {
37395 this.ghash(Buffer.concat([this.cache, ZEROES], 16));
40832 var cache = {};
40837 if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];
40844 return cache[METHOD_NAME] = !!method && !fails(function () {
56537 var cache = this.__data__;
56539 if (cache instanceof ListCache) {
56540 var pairs = cache.__data__;
56547 cache = this.__data__ = new MapCache(pairs);
56550 cache.set(key, value);
57719 cache = memoized.cache;
57721 if (cache.has(key)) {
57722 return cache.get(key);
57726 memoized.cache = cache.set(key, result);
57730 memoized.cache = new (memoize.Cache || MapCache)();
58514 function cacheHas(cache, key) {
58515 return cache.has(key);
60618 function cacheHas(cache, key) {
60619 return cache.has(key);
71075 var cache = randomBytes(len * 2);
71080 if (cur === cache.length) {
71081 cache = randomBytes(len * 2);
71085 num = cache[cur++];