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

  /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)) \
  /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)) \
213 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
220 ( (CONDITION(cond)) \
235 ( (CONDITION(cond)) \
249 ( (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>
105 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \
106 {Eigen::internal::static_assertion<bool(CONDITION)>::MSG;}
110 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \
111 if (Eigen::internal::static_assertion<bool(CONDITION)>::MSG) {}
119 #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/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/third_party/skia/include/gpu/
GrConfig.h 283 * Crash from unrecoverable condition, optionally with a message. The debug variants only
304 * it may print the message in the compiler log. Obviously, the condition must
311 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
315 #define GR_STATIC_ASSERT(CONDITION) \
317 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)}
  /external/skia/include/gpu/
GrConfig.h 283 * Crash from unrecoverable condition, optionally with a message. The debug variants only
304 * it may print the message in the compiler log. Obviously, the condition must
311 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
315 #define GR_STATIC_ASSERT(CONDITION) \
317 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)}
  /external/chromium/sdch/open-vcdiff/src/
testing.h 46 #define CHECK(CONDITION) assert(CONDITION)
  /external/chromium_org/sdch/open-vcdiff/src/
testing.h 46 #define CHECK(CONDITION) assert(CONDITION)
  /external/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");
BOSHClient.java 35 import java.util.concurrent.locks.Condition;
85 * explicitly or due to a terminal condition of some sort), all connection
187 * Condition indicating that there are messages to be exchanged.
189 private final Condition notEmpty = lock.newCondition();
192 * Condition indicating that there are available slots for sending
195 private final Condition notFull = lock.newCondition();
198 * Condition indicating that there are no outstanding connections.
200 private final Condition drained = lock.newCondition();
745 * terminal binding condition that it describes, if any.
749 * @return terminal binding condition, or {@code null} if not a termina
    [all...]
  /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/protobuf/src/google/protobuf/stubs/
common.h 725 #define GOOGLE_LOG_IF(LEVEL, CONDITION) \
726 !(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...]
  /external/protobuf/src/google/protobuf/
generated_message_reflection.cc 135 #define USAGE_CHECK(CONDITION, METHOD, ERROR_DESCRIPTION) \
136 if (!(CONDITION)) \
    [all...]
  /external/libvorbis/doc/
04-codec.tex 22 end-of-packet condition during decoding the first or third header
24 comment header is a non-fatal error condition.
128 \item read \varname{[vorbis_time_count]} 16 bit values; each value should be zero. If any value is nonzero, this is an error condition and the stream is undecodable.
150 \item If the the floor type is greater than one, this stream is undecodable; ERROR CONDITION
170 \item If the the residue type is greater than two, this stream is undecodable; ERROR CONDITION
226 \item if the value is greater than the highest numbered submap (\varname{[vorbis_mapping_submaps]} - 1), this in an error condition rendering the stream undecodable
368 An end-of-packet condition up to this point should be considered an
370 condition past this point is to be considered a possible nominal
406 An end-of-packet condition during floor decode shall result in packet
03-codebook.tex 128 7) if [current_entry] is greater than [codebook_entries] ERROR CONDITION;
196 considered an error condition rendering the stream undecodable.
268 overspecified trees are an error condition rendering the stream
386 an action, that is an error condition rendering the packet
399 condition to the decoder.
  /external/bison/
configure     [all...]
  /external/jdiff/
xerces.jar 
  /prebuilts/tools/common/m2/internal/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 

Completed in 5612 milliseconds