HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 1026 - 1050 of 7248) sorted by null

<<41424344454647484950>>

  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_events.c 70 pthread_cond_t condition; member in struct:__anon35847
104 if (SUCCESS != pthread_cond_init(&(plEvent->condition), NULL))
147 if (SUCCESS != pthread_cond_destroy(&(plEvent->condition)))
216 if (SUCCESS != pthread_cond_signal(&plEvent->condition))
219 ("Event Set: Condition Variable Signal failed !");
244 *A representative sequence for using condition variables is shown below
248 *1) Do work up to the point where a certain condition |1)Do work
254 * for signal from Thread-B. Note that a call to | condition, signal Thread-A.
333 pthread_cond_wait(&(plEvent->condition),
370 condition), &(plEvent->mutex)
    [all...]
  /device/generic/goldfish/camera/
EmulatedFakeCamera2.h 30 #include <utils/Condition.h>
206 Condition mInputSignal;
250 Condition mInputSignal;
251 Condition mReadySignal;
323 Condition mInputSignal;
  /external/apache-http/src/org/apache/commons/codec/net/
QCodec.java 188 * thrown if a failure condition is encountered during the encoding process.
209 * thrown if a failure condition is encountered during the encoding process.
228 * A decoder exception is thrown if a failure condition is encountered during the decode process.
249 * thrown if a failure condition is encountered during the encoding process.
273 * A decoder exception is thrown if a failure condition is encountered during the decode process.
  /external/autotest/client/cros/networking/chrome_testing/
chrome_networking_test_context.py 144 self, expression, condition, timeout):
146 Blocks until |condition| returns True when applied to the result of the
150 @param condition: A function that accepts a single argument and returns
162 lambda: condition(_evaluate_expr()),
164 'Timed out waiting for condition on expression: ' +
  /external/google-breakpad/src/processor/
contained_range_map_unittest.cc 41 #define ASSERT_TRUE(condition) \
42 if (!(condition)) { \
43 fprintf(stderr, "FAIL: %s @ %s:%d\n", #condition, __FILE__, __LINE__); \
47 #define ASSERT_FALSE(condition) ASSERT_TRUE(!(condition))
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc 255 Condition FlagsConditionToConditionCmp(FlagsCondition condition) {
256 switch (condition) {
288 Condition FlagsConditionToConditionTst(FlagsCondition condition) {
289 switch (condition) {
302 Condition FlagsConditionToConditionOvf(FlagsCondition condition) {
303 switch (condition) {
317 FlagsCondition condition) {
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 114 // Look if the incoming value is a select with a scalar condition for which
122 Value *Condition = SI->getCondition();
123 if (!Condition->getType()->isVectorTy()) {
125 Condition, P->getIncomingBlock(i), BB, P)) {
232 // If the condition was defined in same block as the switch then LazyValueInfo
248 // Check to see if the switch condition is equal to/not equal to the case
252 // Is the switch condition equal to the case value?
282 // The condition can be modified by removePredecessor's PHI simplification
290 // unconditional branch by replacing the switch condition with the case
  /external/v8/src/mips/
macro-assembler-mips.h 145 #define COND_TYPED_ARGS Condition cond, Register r1, const Operand& r2
177 #define COND_ARGS Condition cond = al, Register rs = zero_reg, \
197 inline void Ret(BranchDelaySlot bd, Condition cond = al,
202 bool IsNear(Label* L, Condition cond, int rs_reg);
205 Condition cond,
215 Condition cond = cc_always,
224 Condition cond,
318 Condition cond, Register src1, const Operand& src2);
325 Condition cond, Register src1, const Operand& src2);
352 Condition cc
    [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.h 173 #define COND_TYPED_ARGS Condition cond, Register r1, const Operand& r2
205 #define COND_ARGS Condition cond = al, Register rs = zero_reg, \
225 inline void Ret(BranchDelaySlot bd, Condition cond = al,
230 bool IsNear(Label* L, Condition cond, int rs_reg);
233 Condition cond,
243 Condition cond = cc_always,
252 Condition cond,
346 Condition cond, Register src1, const Operand& src2);
353 Condition cond, Register src1, const Operand& src2);
380 Condition cc
    [all...]
  /external/gmock/include/gmock/internal/
gmock-internal-utils.h 183 // implementation-defined when the above pre-condition is violated.
251 // implementation-defined when the above pre-condition is violated.
276 // Asserts that condition is true; aborts the process with the given
277 // message if condition is false. We cannot use LOG(FATAL) or CHECK()
281 inline void Assert(bool condition, const char* file, int line,
283 if (!condition) {
288 inline void Assert(bool condition, const char* file, int line) {
289 Assert(condition, file, line, "Assertion failed.");
292 // Verifies that condition is true; generates a non-fatal failure if
293 // condition is false
    [all...]
  /external/google-breakpad/src/testing/include/gmock/internal/
gmock-internal-utils.h 183 // implementation-defined when the above pre-condition is violated.
251 // implementation-defined when the above pre-condition is violated.
276 // Asserts that condition is true; aborts the process with the given
277 // message if condition is false. We cannot use LOG(FATAL) or CHECK()
281 inline void Assert(bool condition, const char* file, int line,
283 if (!condition) {
288 inline void Assert(bool condition, const char* file, int line) {
289 Assert(condition, file, line, "Assertion failed.");
292 // Verifies that condition is true; generates a non-fatal failure if
293 // condition is false
    [all...]
  /system/core/libutils/
Threads.cpp 140 // for the child. However, there would be a race condition because the
413 * Condition class
422 * Windows doesn't have a condition variable solution. It's possible
441 // Semaphore used to queue up threads waiting for the condition to
523 Condition::Condition()
543 Condition::~Condition()
554 status_t Condition::wait(Mutex& mutex)
562 status_t Condition::waitRelative(Mutex& mutex, nsecs_t reltime
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 292 /// and is used by the CFGBuilder to decide if a branch condition
533 /// condition.
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
LinearMath.java 154 public static long btSelect(long condition, long valueIfConditionNonZero, long valueIfConditionZero) {
155 return LinearMathJNI.btSelect__SWIG_0(condition, valueIfConditionNonZero, valueIfConditionZero);
158 public static int btSelect(long condition, int valueIfConditionNonZero, int valueIfConditionZero) {
159 return LinearMathJNI.btSelect__SWIG_1(condition, valueIfConditionNonZero, valueIfConditionZero);
162 public static float btSelect(long condition, float valueIfConditionNonZero, float valueIfConditionZero) {
163 return LinearMathJNI.btSelect__SWIG_2(condition, valueIfConditionNonZero, valueIfConditionZero);
  /external/v8/src/regexp/arm64/
regexp-macro-assembler-arm64.h 205 void BranchOrBacktrack(Condition condition, Label* to);
211 Condition condition,
214 inline void CallIf(Label* to, Condition condition);
  /external/valgrind/VEX/pub/
libvex_guest_arm.h 167 condition ALWAYS.
172 the guarding condition (standard ARM condition
174 to encode the condition ALWAYS.
181 condition for the instruction is (((lane >> 4) & 0xF) ^ 0xE).
191 The condition "is outside or last in IT block" corresponds
  /frameworks/base/libs/hwui/renderthread/
RenderThread.cpp 28 #include <utils/Condition.h>
330 // These need to be local to the thread to avoid the Condition
334 Condition condition; local
335 SignalingRenderTask syncTask(task, &mutex, &condition);
339 condition.wait(mutex);
  /libcore/ojluni/src/main/java/java/nio/charset/
CoderResult.java 47 * required. This condition is represented by the unique result object
52 * remaining in the output buffer. This condition is represented by the
115 * Tells whether or not this object describes an underflow condition. </p>
124 * Tells whether or not this object describes an overflow condition. </p>
133 * Tells whether or not this object describes an error condition. </p>
171 * If this object does not describe an error condition, that is,
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
  /sdk/files/ant/
uibuild.xml 94 <condition property="exe" value=".exe" else=""><os family="windows" /></condition>
95 <condition property="bat" value=".bat" else=""><os family="windows" /></condition>
105 <condition else="false" property="need.javac.fork">
112 </condition>
  /external/google-breakpad/src/tools/windows/converter/
ms_symbol_server_converter.vcproj 43 <Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"/>
50 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Purify|Win32'">false</LinkIncremental>
51 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Purify|x64'">false</LinkIncremental>
52 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
53 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
54 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
55 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
59 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
109 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
159 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Purify|Win32'"
    [all...]

Completed in 2039 milliseconds

<<41424344454647484950>>