/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/ |
kernel.h | 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/ |
kernel.h | 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
kernel.h | 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
kernel.h | 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/ |
RTCSessionDescriptionSyncObserver.m | 39 @property(nonatomic, strong) NSCondition* condition; 50 @synthesize condition = _condition; 63 [self.condition signal]; 67 [self.condition lock]; 69 [self.condition wait]; 71 [self.condition unlock]; 78 [self.condition lock]; 87 [self.condition unlock]; 92 [self.condition lock]; 100 [self.condition unlock] [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/ |
vp9_thread.h | 95 // Condition 96 static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) { 98 ok &= (CloseHandle(condition->waiting_sem_) != 0); 99 ok &= (CloseHandle(condition->received_sem_) != 0); 100 ok &= (CloseHandle(condition->signal_event_) != 0); 104 static INLINE int pthread_cond_init(pthread_cond_t *const condition, 107 condition->waiting_sem_ = CreateSemaphore(NULL, 0, 1, NULL); 108 condition->received_sem_ = CreateSemaphore(NULL, 0, 1, NULL); 109 condition->signal_event_ = CreateEvent(NULL, FALSE, FALSE, NULL); 110 if (condition->waiting_sem_ == NULL | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_assert.c | 40 lp_assert(int condition, const char *msg) 42 if (!condition) { 44 assert(condition); 56 * \param condition should be an 'i1' or 'i32' value 61 LLVMValueRef condition, 84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], "");
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_thread.h | 95 // Condition 96 static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) { 98 ok &= (CloseHandle(condition->waiting_sem_) != 0); 99 ok &= (CloseHandle(condition->received_sem_) != 0); 100 ok &= (CloseHandle(condition->signal_event_) != 0); 104 static INLINE int pthread_cond_init(pthread_cond_t *const condition, 107 condition->waiting_sem_ = CreateSemaphore(NULL, 0, 1, NULL); 108 condition->received_sem_ = CreateSemaphore(NULL, 0, 1, NULL); 109 condition->signal_event_ = CreateEvent(NULL, FALSE, FALSE, NULL); 110 if (condition->waiting_sem_ == NULL | [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_assert.c | 40 lp_assert(int condition, const char *msg) 42 if (!condition) { 44 assert(condition); 56 * \param condition should be an 'i1' or 'i32' value 61 LLVMValueRef condition, 84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], "");
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
vp9_thread.h | 95 // Condition 96 static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) { 98 ok &= (CloseHandle(condition->waiting_sem_) != 0); 99 ok &= (CloseHandle(condition->received_sem_) != 0); 100 ok &= (CloseHandle(condition->signal_event_) != 0); 104 static INLINE int pthread_cond_init(pthread_cond_t *const condition, 107 condition->waiting_sem_ = CreateSemaphore(NULL, 0, 1, NULL); 108 condition->received_sem_ = CreateSemaphore(NULL, 0, 1, NULL); 109 condition->signal_event_ = CreateEvent(NULL, FALSE, FALSE, NULL); 110 if (condition->waiting_sem_ == NULL | [all...] |
/external/smack/src/com/kenai/jbosh/ |
TerminalBindingCondition.java | 28 * Map of condition names to condition instances. 34 * Map of HTTP response codes to condition instances. 102 create("undefined-condition", "Unknown or undefined error " 103 + "condition."); 106 * Condition name. 119 final String condition, 121 cond = condition; 129 final String condition, 131 return createWithCode(condition, message, null) [all...] |
/external/llvm/test/MC/ARM/ |
invalid-crc32.s | 11 @ CHECK: error: instruction 'crc32cb' is not predicable, but condition code specified 12 @ CHECK: error: instruction 'crc32b' is not predicable, but condition code specified 13 @ CHECK: error: instruction 'crc32ch' is not predicable, but condition code specified 14 @ CHECK: error: instruction 'crc32h' is not predicable, but condition code specified 15 @ CHECK: error: instruction 'crc32cw' is not predicable, but condition code specified 16 @ CHECK: error: instruction 'crc32w' is not predicable, but condition code specified
|
/external/qemu/android/base/ |
Log.h | 71 // !(condition) ? (void)0 : (expr) 77 #define LOG_LAZY_EVAL(condition, expr) \ 78 !(condition) ? (void)0 : ::android::base::LogStreamVoidify() & (expr) 97 // A variant of LOG() that only performs logging if a specific condition 98 // is encountered. Note that |condition| is only evaluated if |severity| 107 #define LOG_IF(severity, condition) \ 108 LOG_LAZY_EVAL(LOG_IS_ON(severity) && (condition), \ 124 #define PLOG_IF(severity, condition) \ 125 LOG_LAZY_EVAL(LOG_IS_ON(severity) && (condition), \ 128 // Evaluate |condition|, and if it fails, log a fatal message [all...] |
/external/libcxx/test/thread/thread.condition/ |
Android.mk | 17 test_makefile := external/libcxx/test/thread/thread.condition/Android.mk 19 test_name := thread/thread.condition/notify_all_at_thread_exit 23 test_name := thread/thread.condition/cv_status 27 test_name := thread/thread.condition/version
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/ |
Console.java | 54 public static void log(boolean condition, String key) { 55 if (condition) { 56 log(condition, key, "", AnsiReset); 61 public static void log(boolean condition, String key, Object data) { 62 if (condition) { 63 log(condition, key, data, AnsiReset); 68 public static void log(boolean condition, String key, Object data, String color) { 69 if (condition) { 86 public static void logDivider(boolean condition) { 87 if (condition) { [all...] |
/external/chromium_org/chrome/installer/util/ |
conditional_work_item_list.cc | 10 ConditionalWorkItemList::ConditionalWorkItemList(Condition* condition) 11 : condition_(condition) { 17 VLOG(1) << "Evaluating " << log_message_ << " condition..."; 22 VLOG(1) << "No work to do in condition work item list "
|
/external/chromium_org/media/cdm/ppapi/ |
cdm_logging.h | 51 // the condition doesn't hold. 52 #define CDM_LAZY_STREAM(stream, condition) \ 53 !(condition) ? (void) 0 : LogMessageVoidify() & (stream)
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
ForLoopUnroll.h | 27 ForLoopUnrollMarker(UnrollCondition condition) 28 : mUnrollCondition(condition),
|
/ndk/tests/build/wchar_t-size/jni/ |
test_always_signed.c | 14 #define STATIC_ASSERT(condition) \ 15 static char CONCAT(dummy_,__LINE__)[1 - 2*(!(condition))];
|
test_default.c | 12 #define STATIC_ASSERT(condition) \ 13 static char CONCAT(dummy_,__LINE__)[1 - 2*(!(condition))];
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/ |
kernel.h | 28 /* Force a compilation error if condition is true */ 29 #define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition)) 31 /* Force a compilation error if condition is constant and true */ 34 /* Force a compilation error if condition is true, but also produce a
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
kernel.h | 28 /* Force a compilation error if condition is true */ 29 #define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition)) 31 /* Force a compilation error if condition is constant and true */ 34 /* Force a compilation error if condition is true, but also produce a
|
/external/guava/guava/src/com/google/common/math/ |
MathPreconditions.java | 74 static void checkRoundingUnnecessary(boolean condition) { 75 if (!condition) { 80 static void checkInRange(boolean condition) { 81 if (!condition) { 86 static void checkNoOverflow(boolean condition) { 87 if (!condition) {
|
/cts/tests/tests/app/src/android/app/cts/ |
ActivityManagerProcessErrorStateInfoTest.java | 40 int condition = 1; local 48 mErrorStateInfo.condition = condition; 62 assertEquals(condition, values.condition); 74 int condition = 1; local 82 mErrorStateInfo.condition = condition; 96 assertEquals(condition, values.condition); [all...] |
/external/chromium_org/base/ |
logging.h | 55 // The CHECK(condition) macro is active in both debug and release builds and 100 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as 107 // There is also a VLOG_IF "verbose level" condition macro for sample 123 // PCHECK(condition) << "Couldn't do foo"; 124 // DPCHECK(condition) << "Couldn't do foo"; 215 // values, and there is a race condition that may leak a critical section 353 // the condition doesn't hold. 354 #define LAZY_STREAM(stream, condition) \ 355 !(condition) ? (void) 0 : ::logging::LogMessageVoidify() & (stream) 368 #define LOG_IF(severity, condition) \ [all...] |