Home
last modified time | relevance | path

Searched refs:lowest_bit (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/
H A Dlsh_table.h424 size_t lowest_bit = mask_block & (-(ptrdiff_t)mask_block); in getKey() local
426 subsignature += (feature_block & lowest_bit) ? bit_index : 0; in getKey()
428 mask_block ^= lowest_bit; in getKey()
/OK3568_Linux_fs/kernel/mm/
H A Dswapfile.c687 if (offset == si->lowest_bit) in swap_range_alloc()
688 si->lowest_bit += nr_entries; in swap_range_alloc()
693 si->lowest_bit = si->max; in swap_range_alloc()
719 if (offset < si->lowest_bit) in swap_range_free()
720 si->lowest_bit = offset; in swap_range_free()
765 if (si->highest_bit <= si->lowest_bit) in set_cluster_next()
767 next = si->lowest_bit + in set_cluster_next()
768 prandom_u32_max(si->highest_bit - si->lowest_bit + 1); in set_cluster_next()
770 next = max_t(unsigned int, next, si->lowest_bit); in set_cluster_next()
828 scan_base = offset = si->lowest_bit; in scan_swap_map_slots()
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dswap.h249 unsigned int lowest_bit; /* index of first free in swap_map */ member