Searched refs:lazyLoadCacheSize_ (Results 1 – 2 of 2) sorted by relevance
256 lazyLoadCacheSize_ = swiper->GetCachedSize() * 2 + swiper->GetDisplayCount(); in Update()3095 if (itemCount_ <= lazyLoadCacheSize_) { in BuildLazyItems()3099 int32_t halfLazy = lazyLoadCacheSize_ / 2; in BuildLazyItems()3102 cacheEnd_ = (cacheStart_ + lazyLoadCacheSize_ - 1) % itemCount_; in BuildLazyItems()3112 cacheEnd_ = cacheStart_ + lazyLoadCacheSize_ - 1; in BuildLazyItems()3167 if (cacheStart_ + cacheEnd_ >= lazyLoadCacheSize_) { in LoadLazyItems()3182 if (cacheStart_ + cacheEnd_ >= lazyLoadCacheSize_) { in LoadLazyItems()
627 int32_t lazyLoadCacheSize_ = 5; // default lazy load cache number: 5 variable