Home
last modified time | relevance | path

Searched refs:lazyLoadCacheSize_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/swiper/
H A Drender_swiper.cpp256 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()
H A Drender_swiper.h627 int32_t lazyLoadCacheSize_ = 5; // default lazy load cache number: 5 variable