HomeSort by relevance Sort by last modified time
    Searched refs:Condition (Results 101 - 125 of 194) sorted by null

1 2 3 45 6 7 8

  /external/webkit/Source/JavaScriptCore/assembler/
ARMv7Assembler.h 444 } Condition;
453 LinkRecord(intptr_t from, intptr_t to, JumpType type, Condition condition)
458 , m_condition(condition)
467 Condition condition() const { return m_condition; }
473 Condition m_condition : 16;
495 JmpSrc(int offset, JumpType type, Condition condition)
497 , m_condition(condition)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 285 /// terminator with the given value as its condition, and if so what value to
544 // and we can figure out the condition value for any predecessor block.
554 // Figure out what value to use for the condition.
560 assert(isa<UndefValue>(Cond) && "Unexpected condition value");
633 // because now the condition in this block can be threaded through
659 Value *Condition;
664 Condition = BI->getCondition();
666 Condition = SI->getCondition();
668 Condition = IB->getAddress()->stripPointerCasts();
674 // Run constant folding to see if we can reduce the condition to a simpl
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingQueue.java 10 import java.util.concurrent.locks.Condition;
55 * entry to put (and offer), and has an associated condition for
127 private final Condition notEmpty = takeLock.newCondition();
133 private final Condition notFull = putLock.newCondition();
LinkedBlockingDeque.java 13 import java.util.concurrent.locks.Condition;
128 /** Condition for waiting takes */
129 private final Condition notEmpty = lock.newCondition();
131 /** Condition for waiting puts */
132 private final Condition notFull = lock.newCondition();
    [all...]
ArrayBlockingQueue.java 70 * Concurrency control uses the classic two-condition algorithm
76 /** Condition for waiting takes */
77 private final Condition notEmpty;
78 /** Condition for waiting puts */
79 private final Condition notFull;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 310 ExplodedNode* generateNode(const Stmt *Condition, const GRState* State);
379 const Expr* Condition;
384 const Expr* condition, CoreEngine* eng)
385 : Eng(*eng), Src(src), Condition(condition), Pred(pred) {}
419 const Expr* getCondition() const { return Condition; }
  /external/v8/src/
code-stubs.h 478 Condition GetCondition() const { return CompareIC::ComputeCondition(op_); }
502 CompareStub(Condition cc,
516 CompareStub(Condition cc,
531 Condition cc_;
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.h 171 void BranchOrBacktrack(Condition condition, Label* to, Hint hint = no_hint);
  /external/v8/src/x64/
macro-assembler-x64.cc 340 void MacroAssembler::Assert(Condition cc, const char* msg) {
360 void MacroAssembler::Check(Condition cc, const char* msg) {
    [all...]
lithium-codegen-x64.cc 549 void LCodeGen::DeoptimizeIf(Condition cc, LEnvironment* environment) {
2021 Condition condition = TokenToCondition(op, false); local
2046 Condition condition = TokenToCondition(op, false); local
    [all...]
regexp-macro-assembler-x64.h 218 void BranchOrBacktrack(Condition condition, Label* to);
  /frameworks/base/include/gui/
SurfaceTexture.h 440 // mDequeueCondition condition used for dequeueBuffer in synchronous mode
441 mutable Condition mDequeueCondition;
  /frameworks/base/include/media/
ToneGenerator.h 267 Condition mWaitCbkCond; // condition enabling interface to wait for audio callback completion after a change is requested
mediaplayer.h 64 // 3xx: Runtime errors. Some extraordinary condition arose making the playback
218 Condition mSignal;
  /frameworks/base/include/media/stagefright/
MPEG4Writer.h 133 Condition mChunkReadyCondition; // Signal that chunks are available
OMXCodec.h 200 Condition mAsyncCompletion;
213 Condition mBufferFilled;
  /hardware/msm7k/libcamera/
QualcommCameraHardware.h 223 Condition mStateWait;
  /frameworks/base/cmds/stagefright/
stream.cpp 136 Condition mCondition;
288 Condition mCondition;
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.h 55 Condition mCondition;
169 Condition mSignal;
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 39 import java.util.concurrent.locks.Condition;
161 * @param cond the condition to wait for
166 protected WaitingThread newWaitingThread(Condition cond,
  /external/v8/src/mips/
codegen-mips.h 463 void Comparison(Condition cc,
572 // Simple condition analysis.
604 Condition cc_reg_;
macro-assembler-mips.cc 51 #define COND_TYPED_ARGS Condition cond, Register r1, const Operand& r2
125 void MacroAssembler::Ret(Condition cond, Register r1, const Operand& r2,
139 Condition cond,
154 Condition cond,
196 Condition cc,
918 void MacroAssembler::Branch(int16_t offset, Condition cond, Register rs,
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContextWrapperTest.java     [all...]
  /frameworks/base/media/jni/soundpool/
SoundPool.h 215 Condition mCondition;
  /frameworks/base/media/libstagefright/include/
AwesomePlayer.h 219 Condition mPreparedCondition;

Completed in 983 milliseconds

1 2 3 45 6 7 8