Home
last modified time | relevance | path

Searched refs:count_type (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/smart_ptr/detail/
H A Dlocal_counted_base.hpp39 enum count_type { min_ = 0, initial_ = 1, max_ = 2147483647 }; enum in boost::detail::local_counted_base
41 count_type local_use_count_;
73 local_use_count_ = static_cast<count_type>( local_use_count_ + 1 ); in add_ref()
78 local_use_count_ = static_cast<count_type>( local_use_count_ - 1 ); in release()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/
H A Dio_context137 using count_type = size_t;
153 count_type
156 count_type __n = 0;
158 if (__n != numeric_limits<count_type>::max())
164 count_type
169 count_type
172 count_type __n = 0;
174 if (__n != numeric_limits<count_type>::max())
179 count_type
184 count_type
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/
H A Dio_context137 using count_type = size_t;
153 count_type
156 count_type __n = 0;
158 if (__n != numeric_limits<count_type>::max())
164 count_type
169 count_type
172 count_type __n = 0;
174 if (__n != numeric_limits<count_type>::max())
179 count_type
184 count_type
[all …]
/OK3568_Linux_fs/kernel/fs/f2fs/
H A Df2fs.h1064 enum count_type { enum
2373 static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type) in inc_page_count() argument
2375 atomic_inc(&sbi->nr_pages[count_type]); in inc_page_count()
2377 if (count_type == F2FS_DIRTY_DENTS || in inc_page_count()
2378 count_type == F2FS_DIRTY_NODES || in inc_page_count()
2379 count_type == F2FS_DIRTY_META || in inc_page_count()
2380 count_type == F2FS_DIRTY_QDATA || in inc_page_count()
2381 count_type == F2FS_DIRTY_IMETA) in inc_page_count()
2394 static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type) in dec_page_count() argument
2396 atomic_dec(&sbi->nr_pages[count_type]); in dec_page_count()
[all …]
H A Ddata.c79 static enum count_type __read_io_type(struct page *page) in __read_io_type()
322 enum count_type type = WB_DATA_TYPE(page); in f2fs_write_end_io()