Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/
Dlibcfs_private.h502 if (val != LOWEST_BIT_SET(val)) { /* not a power of 2 already */ in cfs_power2_roundup()
504 val &= ~LOWEST_BIT_SET(val); in cfs_power2_roundup()
505 } while (val != LOWEST_BIT_SET(val)); in cfs_power2_roundup()
Dlibcfs.h75 #define LOWEST_BIT_SET(x) ((x) & ~((x) - 1)) macro
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/
Dlib-eq.c223 LASSERT(eq->eq_size == LOWEST_BIT_SET(eq->eq_size)); in lnet_eq_enqueue_event()