Home
last modified time | relevance | path

Searched refs:COMPILE_ASSERT (Results 1 – 13 of 13) sorted by relevance

/external/pdfium/third_party/base/
Dmacros.h28 #undef COMPILE_ASSERT
29 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg) macro
/external/gflags/src/
Dmutex.h341 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name)
342 #define ReaderMutexLock(x) COMPILE_ASSERT(0, rmutex_lock_decl_missing_var_name)
343 #define WriterMutexLock(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
Dutil.h92 #define COMPILE_ASSERT(expr, msg) \
Dgflags.cc296 COMPILE_ASSERT(sizeof(kTrue) == sizeof(kFalse), true_false_equal); in ParseFrom()
Dgflags.h.in516 // COMPILE_ASSERT.
/external/webrtc/webrtc/system_wrappers/include/
Dcompile_assert_c.h22 #define COMPILE_ASSERT(expression) switch (0) {case 0: case expression:;} macro
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dpitch_filter.c62 COMPILE_ASSERT(PITCH_FRACORDER == 9); in WebRtcIsacfix_PitchFilter()
63 COMPILE_ASSERT(PITCH_DAMPORDER == 5); in WebRtcIsacfix_PitchFilter()
Dpitch_estimator_c.c69 COMPILE_ASSERT(PITCH_CORR_LEN2 %4 == 0); in WebRtcIsacfix_PCorr2Q32()
Dpitch_estimator_mips.c36 COMPILE_ASSERT(PITCH_CORR_LEN2 % 4 == 0); in WebRtcIsacfix_PCorr2Q32()
/external/webrtc/webrtc/modules/audio_processing/utility/
Ddelay_estimator_wrapper.c147 COMPILE_ASSERT(kBandLast - kBandFirst < 32); in WebRtc_CreateDelayEstimatorFarend()
/external/swiftshader/third_party/subzero/src/DartARM32/
Dassembler_arm.cc1697 COMPILE_ASSERT((kNewObjectAlignmentOffset == kWordSize) && in StoreIntoObjectFilterNoSmi()
1812 COMPILE_ASSERT(kHeapObjectTag == 1); in VerifiedWrite()
3302 COMPILE_ASSERT((kDartVolatileCpuRegs & (1 << PP)) == 0); in EnterCallRuntimeFrame()
3331 COMPILE_ASSERT(PP < FP); in LeaveCallRuntimeFrame()
3332 COMPILE_ASSERT((kDartVolatileCpuRegs & (1 << PP)) == 0); in LeaveCallRuntimeFrame()
/external/webrtc/webrtc/modules/audio_processing/aecm/
Daecm_core.c504 COMPILE_ASSERT(PART_LEN % 16 == 0); in WebRtcAecm_InitCore()
/external/v8/
DChangeLog42077 * Eliminate usage of ALLOW_UNUSED to define COMPILE_ASSERT and just use