Home
last modified time | relevance | path

Searched refs:powerof2 (Results 1 – 7 of 7) sorted by relevance

/bionic/tests/
Dsys_param_test.cpp21 ASSERT_TRUE(powerof2(1)); in TEST()
22 ASSERT_TRUE(powerof2(2)); in TEST()
23 ASSERT_TRUE(powerof2(4)); in TEST()
24 ASSERT_TRUE(powerof2(8)); in TEST()
25 ASSERT_FALSE(powerof2(3)); in TEST()
26 ASSERT_FALSE(powerof2(5)); in TEST()
27 ASSERT_FALSE(powerof2(7)); in TEST()
28 ASSERT_FALSE(powerof2(9)); in TEST()
29 ASSERT_FALSE(powerof2(10)); in TEST()
34 ASSERT_TRUE(powerof2(0)); in TEST()
[all …]
Dunistd_test.cpp757 ASSERT_TRUE(rc > 0 && powerof2(rc)); in TEST()
759 ASSERT_TRUE(rc > 0 && powerof2(rc)); in TEST()
761 ASSERT_TRUE(rc > 0 && powerof2(rc)); in TEST()
764 ASSERT_TRUE(rc > 0 && powerof2(rc)); in TEST()
766 ASSERT_TRUE(rc > 0 && powerof2(rc)); in TEST()
768 ASSERT_TRUE(rc > 0 && powerof2(rc)); in TEST()
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dgetdelim.c91 #define powerof2(x) ((((x)-1)&(x))==0) in getdelim() macro
92 if (!powerof2(newlen)) { in getdelim()
/bionic/libc/include/sys/
Dparam.h61 #define powerof2(x) \ macro
/bionic/libc/malloc_hooks/
Dmalloc_hooks.cpp185 if (!powerof2(alignment) || (size % alignment) != 0) { in hooks_aligned_alloc()
200 if (alignment < sizeof(void*) || !powerof2(alignment)) { in hooks_posix_memalign()
/bionic/libc/bionic/
Dbionic_elf_tls.cpp80 if (*alignment == 0 || !powerof2(*alignment)) { in __bionic_check_tls_alignment()
219 if (!powerof2(bytes)) { in calculate_new_dtv_count()
Dbionic_allocator.cpp322 if (!powerof2(align)) { in memalign()