OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DCHECK_CONSTEXPR
(Results
1 - 5
of
5
) sorted by null
/art/runtime/base/
bit_utils.h
37
DCHECK_CONSTEXPR
(x != 0, "x must not be zero", T(0))
51
DCHECK_CONSTEXPR
(x != 0, "x must not be zero", T(0))
119
DCHECK_CONSTEXPR
(IsPowerOfTwo(n), , T(0))
224
DCHECK_CONSTEXPR
(bits > 0, "bits cannot be zero", 0)
225
DCHECK_CONSTEXPR
(bits < BitSizeOf<T>(), "kBits must be < max.", 0)
272
DCHECK_CONSTEXPR
(std::is_unsigned<T>::value || bits > 0, "bits cannot be zero for signed", 0)
273
DCHECK_CONSTEXPR
(bits <= BitSizeOf<T>(), "kBits must be < max.", 0)
286
DCHECK_CONSTEXPR
(std::is_unsigned<T>::value || bits > 0, "bits cannot be zero for signed", 0)
287
DCHECK_CONSTEXPR
(bits <= BitSizeOf<T>(), "kBits must be < max.", 0)
logging.h
166
//
DCHECK_CONSTEXPR
(n >= 0, , 0)
192
#define
DCHECK_CONSTEXPR
(x, out, dummy)
194
#define
DCHECK_CONSTEXPR
(x, out, dummy) CHECK_CONSTEXPR(x, out, dummy)
/system/core/base/include/android-base/
logging.h
212
//
DCHECK_CONSTEXPR
(n >= 0, , 0)
250
#define
DCHECK_CONSTEXPR
(x, out, dummy)
252
#define
DCHECK_CONSTEXPR
(x, out, dummy) CHECK_CONSTEXPR(x, out, dummy)
/art/compiler/optimizing/
code_generator_arm.h
66
return
DCHECK_CONSTEXPR
(reg % 2 == 0, , D0)
/frameworks/native/cmds/installd/
otapreopt.cpp
66
return
DCHECK_CONSTEXPR
(IsPowerOfTwo(n), , T(0))(x & -n);
Completed in 4093 milliseconds