OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:COMPILE_ASSERT
(Results
1 - 20
of
20
) sorted by null
/external/pdfium/third_party/base/
macros.h
13
// The
COMPILE_ASSERT
macro can be used to verify that a compile time
17
//
COMPILE_ASSERT
(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,
22
//
COMPILE_ASSERT
(sizeof(foo) < 128, foo_too_large);
28
#undef
COMPILE_ASSERT
29
#define
COMPILE_ASSERT
(expr, msg) static_assert(expr, #msg)
/external/webrtc/webrtc/system_wrappers/include/
compile_assert_c.h
21
//
COMPILE_ASSERT
(sizeof(foo) < 128);
22
#define
COMPILE_ASSERT
(expression) switch (0) {case 0: case expression:;}
/system/bt/osi/include/
osi.h
38
// base/macros.h defines a
COMPILE_ASSERT
macro to the C++11 keyword
39
// "static_assert" (it undef's
COMPILE_ASSERT
before redefining it).
42
#ifndef
COMPILE_ASSERT
43
#define
COMPILE_ASSERT
(COND) typedef int failed_compile_assert[(COND) ? 1 : -1] __attribute__ ((unused))
44
#endif //
COMPILE_ASSERT
/system/extras/perfprofd/quipper/base/
macros.h
140
// The
COMPILE_ASSERT
macro can be used to verify that a compile time
144
//
COMPILE_ASSERT
(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,
149
//
COMPILE_ASSERT
(sizeof(foo) < 128, foo_too_large);
155
#undef
COMPILE_ASSERT
156
#define
COMPILE_ASSERT
(expr, msg) static_assert(expr, #msg)
214
COMPILE_ASSERT
(sizeof(Dest) == sizeof(Source), VerifySizesAreEqual);
logging.h
655
#define NOTIMPLEMENTED()
COMPILE_ASSERT
(false, NOT_IMPLEMENTED)
657
#define NOTIMPLEMENTED()
COMPILE_ASSERT
(false, NOT_IMPLEMENTED)
/external/ceres-solver/internal/ceres/
mutex.h
279
// "MutexLock(x)
COMPILE_ASSERT
(false)". To work around this, "Ceres" is
320
COMPILE_ASSERT
(0, ceres_mutex_lock_decl_missing_var_name)
322
COMPILE_ASSERT
(0, ceres_rmutex_lock_decl_missing_var_name)
324
COMPILE_ASSERT
(0, ceres_wmutex_lock_decl_missing_var_name)
/external/regex-re2/util/
mutex.h
184
#define MutexLock(x)
COMPILE_ASSERT
(0, mutex_lock_decl_missing_var_name)
185
#define ReaderMutexLock(x)
COMPILE_ASSERT
(0, rmutex_lock_decl_missing_var_name)
186
#define WriterMutexLock(x)
COMPILE_ASSERT
(0, wmutex_lock_decl_missing_var_name)
util.h
80
//
COMPILE_ASSERT
causes a compile error about msg if expr is not true.
82
#define
COMPILE_ASSERT
(expr, msg) \
/external/pdfium/third_party/base/numerics/
safe_conversions_impl.h
207
COMPILE_ASSERT
(std::numeric_limits<Src>::is_specialized,
209
COMPILE_ASSERT
(std::numeric_limits<Dst>::is_specialized,
safe_math.h
65
COMPILE_ASSERT
(std::numeric_limits<Src>::is_specialized,
90
COMPILE_ASSERT
(std::numeric_limits<T>::is_iec559, argument_must_be_float);
safe_math_impl.h
368
COMPILE_ASSERT
(std::numeric_limits<Src>::is_specialized,
/frameworks/webview/chromium/plat_support/
draw_gl_functor.cpp
34
#define
COMPILE_ASSERT
(expr, err) static const char err[(expr) ? 1 : -1] = "";
69
COMPILE_ASSERT
(NELEM(aw_info.transform) == NELEM(gl_info->transform),
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_estimator_c.c
69
COMPILE_ASSERT
(PITCH_CORR_LEN2 %4 == 0);
pitch_estimator_mips.c
36
COMPILE_ASSERT
(PITCH_CORR_LEN2 % 4 == 0);
pitch_filter.c
62
COMPILE_ASSERT
(PITCH_FRACORDER == 9);
63
COMPILE_ASSERT
(PITCH_DAMPORDER == 5);
/system/bt/btcore/src/
device_class.c
38
COMPILE_ASSERT
(sizeof(_bt_device_class_t) == sizeof(bt_device_class_t));
/external/regex-re2/re2/
onepass.cc
175
COMPILE_ASSERT
((1<<kEmptyShift)-1 == kEmptyAllFlags,
178
COMPILE_ASSERT
(kMaxCap == Prog::kMaxOnePassCapture*2,
prog.cc
315
COMPILE_ASSERT
(8*sizeof(v.Word(0)) == 32, wordsize);
/external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_wrapper.c
147
COMPILE_ASSERT
(kBandLast - kBandFirst < 32);
/external/webrtc/webrtc/modules/audio_processing/aecm/
aecm_core.c
504
COMPILE_ASSERT
(PART_LEN % 16 == 0);
[
all
...]
Completed in 1610 milliseconds