OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsPowerOfTwo
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.h
374
INLINE bool
IsPowerOfTwo
(uptr x) {
380
if (
IsPowerOfTwo
(size)) return size;
389
RAW_CHECK(
IsPowerOfTwo
(boundary));
402
CHECK(
IsPowerOfTwo
(x));
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_common.h
445
inline constexpr bool
IsPowerOfTwo
(uptr x) { return (x & (x - 1)) == 0; }
449
if (
IsPowerOfTwo
(size)) return size;
458
RAW_CHECK(
IsPowerOfTwo
(boundary));
471
CHECK(
IsPowerOfTwo
(x));
/src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_common.h
423
inline constexpr bool
IsPowerOfTwo
(uptr x) { return (x & (x - 1)) == 0; }
427
if (
IsPowerOfTwo
(size)) return size;
436
RAW_CHECK(
IsPowerOfTwo
(boundary));
449
CHECK(
IsPowerOfTwo
(x));
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
4185
auto
IsPowerOfTwo
= [](ConstantSDNode *C) {
4199
if (!N->getFlags().hasExact() && ISD::matchUnaryPredicate(N1,
IsPowerOfTwo
)) {
/src/external/public-domain/sqlite/dist/
sqlite3.c
15232
#define
IsPowerOfTwo
(X) (((X)&((X)-1))==0)
[
all
...]
Completed in 192 milliseconds
Indexes created Sat Apr 25 00:22:52 UTC 2026