OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsPowerOfTwo
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h
197
INLINE bool
IsPowerOfTwo
(uptr x) {
203
if (
IsPowerOfTwo
(size)) return size;
212
CHECK(
IsPowerOfTwo
(boundary));
225
CHECK(
IsPowerOfTwo
(x));
sanitizer_common.cc
180
CHECK(
IsPowerOfTwo
(size));
181
CHECK(
IsPowerOfTwo
(alignment));
sanitizer_allocator.h
919
CHECK(
IsPowerOfTwo
(alignment));
[
all
...]
/external/compiler-rt/lib/asan/
asan_allocator.cc
88
CHECK(
IsPowerOfTwo
(SHADOW_GRANULARITY));
89
CHECK(
IsPowerOfTwo
(REDZONE));
440
CHECK(
IsPowerOfTwo
(kMinMmapSize));
508
CHECK(
IsPowerOfTwo
(alignment));
asan_rtl.cc
96
CHECK(
IsPowerOfTwo
(f->redzone));
asan_allocator2.cc
117
CHECK(
IsPowerOfTwo
(rz_size));
316
CHECK(
IsPowerOfTwo
(alignment));
Completed in 128 milliseconds