HomeSort by relevance Sort by last modified time
    Searched refs:CONDITION (Results 1 - 25 of 39) sorted by null

1 2

  /bootable/recovery/minzip/
Log.h 56 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
63 ( (CONDITION(cond)) \
81 ( (CONDITION(cond)) \
95 ( (CONDITION(cond)) \
109 ( (CONDITION(cond)) \
123 ( (CONDITION(cond)) \
  /external/chromium_org/third_party/skia/include/gpu/
GrConfig.h 186 * it may print the message in the compiler log. Obviously, the condition must
193 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
197 #define GR_STATIC_ASSERT(CONDITION) \
199 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)}
  /external/skia/include/gpu/
GrConfig.h 182 * it may print the message in the compiler log. Obviously, the condition must
189 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
193 #define GR_STATIC_ASSERT(CONDITION) \
195 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)}
  /frameworks/ex/framesequence/jni/utils/
log.h 63 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
70 ( (CONDITION(cond)) \
85 ( (CONDITION(cond)) \
99 ( (CONDITION(cond)) \
113 ( (CONDITION(cond)) \
127 ( (CONDITION(cond)) \
181 * Log a fatal error. If the given condition fails, this stops program
183 * It is NOT stripped from release builds. Note that the condition test
188 ( (CONDITION(cond)) \
  /external/chromium_org/third_party/hwcplus/include/log/
log.h 88 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
95 ( (CONDITION(cond)) \
110 ( (CONDITION(cond)) \
124 ( (CONDITION(cond)) \
138 ( (CONDITION(cond)) \
152 ( (CONDITION(cond)) \
217 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
224 ( (CONDITION(cond)) \
239 ( (CONDITION(cond)) \
253 ( (CONDITION(cond))
    [all...]
  /system/core/include/log/
log.h 84 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
91 ( (CONDITION(cond)) \
106 ( (CONDITION(cond)) \
120 ( (CONDITION(cond)) \
134 ( (CONDITION(cond)) \
148 ( (CONDITION(cond)) \
214 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
221 ( (CONDITION(cond)) \
236 ( (CONDITION(cond)) \
250 ( (CONDITION(cond))
    [all...]
  /external/eigen/Eigen/src/Core/util/
StaticAssert.h 16 * - in EIGEN_STATIC_ASSERT(CONDITION,MSG) the parameter CONDITION must be a compile time boolean
21 * eigen_assert(CONDITION && "MSG")
40 template<bool condition>
106 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \
107 {Eigen::internal::static_assertion<bool(CONDITION)>::MSG;}
111 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \
112 if (Eigen::internal::static_assertion<bool(CONDITION)>::MSG) {}
120 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) eigen_assert((CONDITION) && #MSG)
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/core/driver/include/
log.h 140 #ifndef CONDITION
141 #define CONDITION(cond) ((cond) != 0)
150 ((CONDITION(cond)) \
165 ((CONDITION(cond)) \
183 ((CONDITION(cond)) \
201 ((CONDITION(cond)) \
219 ((CONDITION(cond)) \
227 * Log a fatal error. If the given condition fails, this stops program
229 * It is NOT stripped from release builds. Note that the condition test
233 ((CONDITION(cond))
    [all...]
  /hardware/invensense/60xx/mlsdk/platform/include/
log.h 140 #ifndef CONDITION
141 #define CONDITION(cond) ((cond) != 0)
150 ((CONDITION(cond)) \
165 ((CONDITION(cond)) \
179 ((CONDITION(cond)) \
197 ((CONDITION(cond)) \
215 ((CONDITION(cond)) \
223 * Log a fatal error. If the given condition fails, this stops program
225 * It is NOT stripped from release builds. Note that the condition test
229 ((CONDITION(cond))
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
log.h 144 #ifndef CONDITION
145 #define CONDITION(cond) ((cond) != 0)
154 ((CONDITION(cond)) \
169 ((CONDITION(cond)) \
187 ((CONDITION(cond)) \
205 ((CONDITION(cond)) \
223 ((CONDITION(cond)) \
231 * Log a fatal error. If the given condition fails, this stops program
233 * It is NOT stripped from release builds. Note that the condition test
237 ((CONDITION(cond))
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
log.h 144 #ifndef CONDITION
145 #define CONDITION(cond) ((cond) != 0)
154 ((CONDITION(cond)) \
169 ((CONDITION(cond)) \
187 ((CONDITION(cond)) \
205 ((CONDITION(cond)) \
223 ((CONDITION(cond)) \
231 * Log a fatal error. If the given condition fails, this stops program
233 * It is NOT stripped from release builds. Note that the condition test
237 ((CONDITION(cond))
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
testing.h 46 #define CHECK(CONDITION) assert(CONDITION)
  /external/smack/src/com/kenai/jbosh/
Attributes.java 40 static final BodyQName CONDITION = BodyQName.createBOSH("condition");
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
TestInterface.idl 36 Conditional=CONDITION,
TestObject.idl 170 [Conditional=CONDITION] attribute long conditionalLongAttribute;
179 [Conditional=CONDITION, Custom] attribute long customLongAttribute;
237 [Conditional=CONDITION, RuntimeEnabled=FeatureName] attribute long conditionalRuntimeEnabledLongAttribute;
473 [Conditional=CONDITION] void conditionalConditionVoidMethod();
474 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod();
476 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/modules/
TestInterface5.idl 36 Conditional=CONDITION,
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 120 * inserted into a condition queue. Upon signal, the node is
139 /** waitStatus value to indicate thread is waiting on condition */
140 static final int CONDITION = -2;
159 * CONDITION: This node is currently on a condition queue.
178 * CONDITION for condition nodes. It is modified using CAS
218 * Link to next node waiting on condition, or the special
219 * value SHARED. Because condition queues are accessed only
259 Node(Thread thread, int waitStatus) { // Used by Condition
    [all...]
AbstractQueuedSynchronizer.java 56 * can be used as a {@link Condition} implementation by subclasses
64 * condition, so if this constraint cannot be met, do not use it. The
70 * condition objects. These can be exported as desired into classes
206 * // Provides a Condition
207 * Condition newCondition() { return new ConditionObject(); }
223 * public Condition newCondition() { return sync.newCondition(); }
350 * inserted into a condition queue. Upon signal, the node is
369 /** waitStatus value to indicate thread is waiting on condition */
370 static final int CONDITION = -2;
389 * CONDITION: This node is currently on a condition queue
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestObject.h 56 #if ENABLE(CONDITION)
58 #endif // ENABLE(CONDITION)
64 #if ENABLE(CONDITION)
66 #endif // ENABLE(CONDITION)
67 #if ENABLE(CONDITION)
69 #endif // ENABLE(CONDITION)
V8TestInterface.h 10 #if ENABLE(CONDITION)
107 #endif // ENABLE(CONDITION)
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/modules/
V8TestInterface5.h 10 #if ENABLE(CONDITION)
99 #endif // ENABLE(CONDITION)
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.cpp 267 #define SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, EXPRESSION) \
270 if (m_sampleRegister[regSampleNdx].isAlive && (CONDITION)) \
280 #define SWITCH_DPFAIL_OR_DPPASS(OP_NAME, CONDITION) \
283 case STENCILOP_KEEP: SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, stencilBufferValue) break; \
284 case STENCILOP_ZERO: SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, 0) break; \
285 case STENCILOP_REPLACE: SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, clampedStencilRef) break; \
286 case STENCILOP_INCR: SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, de::clamp(stencilBufferValue+1, 0, (1<<numStencilBits) - 1)) break; \
287 case STENCILOP_DECR: SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, de::clamp(stencilBufferValue-1, 0, (1<<numStencilBits) - 1)) break; \
288 case STENCILOP_INCR_WRAP: SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, (stencilBufferValue + 1) & ((1<<numStencilBits) - 1)) break; \
289 case STENCILOP_DECR_WRAP: SAMPLE_REGISTER_DPFAIL_OR_DPPASS(CONDITION, (stencilBufferValue - 1) & ((1<<numStencilBits) - 1)) break;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.h 724 #define GOOGLE_LOG_IF(LEVEL, CONDITION) \
725 !(CONDITION) ? (void)0 : GOOGLE_LOG(LEVEL)
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h 677 #define GOOGLE_LOG_IF(LEVEL, CONDITION) \
678 !(CONDITION) ? (void)0 : GOOGLE_LOG(LEVEL)
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
generated_message_reflection.cc 120 #define USAGE_CHECK(CONDITION, METHOD, ERROR_DESCRIPTION) \
121 if (!(CONDITION)) \
    [all...]

Completed in 1415 milliseconds

1 2