Home
last modified time | relevance | path

Searched refs:COMPILE_ASSERT (Results 1 – 15 of 15) 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/regex-re2/util/
Dmutex.h184 #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)
Dutil.h82 #define COMPILE_ASSERT(expr, msg) \ macro
/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_mips.c36 COMPILE_ASSERT(PITCH_CORR_LEN2 % 4 == 0); in WebRtcIsacfix_PCorr2Q32()
Dpitch_estimator_c.c69 COMPILE_ASSERT(PITCH_CORR_LEN2 %4 == 0); in WebRtcIsacfix_PCorr2Q32()
/external/regex-re2/re2/
Donepass.cc175 COMPILE_ASSERT((1<<kEmptyShift)-1 == kEmptyAllFlags, in OnePass_Checks()
178 COMPILE_ASSERT(kMaxCap == Prog::kMaxOnePassCapture*2, in OnePass_Checks()
Dprog.cc315 COMPILE_ASSERT(8*sizeof(v.Word(0)) == 32, wordsize); in ComputeByteMap()
/external/webrtc/webrtc/modules/audio_processing/utility/
Ddelay_estimator_wrapper.c147 COMPILE_ASSERT(kBandLast - kBandFirst < 32); in WebRtc_CreateDelayEstimatorFarend()
/external/libchrome/base/allocator/
DBUILD.gn66 # tcmalloc uses COMPILE_ASSERT without static_assert but with
Dallocator.gyp284 # tcmalloc uses COMPILE_ASSERT without static_assert but with
/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/
DChangeLog21197 * Eliminate usage of ALLOW_UNUSED to define COMPILE_ASSERT and just use