/external/webkit/Source/JavaScriptCore/assembler/ |
MacroAssemblerSH4.cpp | 34 const Condition MacroAssemblerSH4::Equal = SH4Assembler::EQ; 35 const Condition MacroAssemblerSH4::NotEqual = SH4Assembler::NE; 36 const Condition MacroAssemblerSH4::GreaterThan = SH4Assembler::GT; 37 const Condition MacroAssemblerSH4::GreaterThanOrEqual = SH4Assembler::GE; 38 const Condition MacroAssemblerSH4::LessThan = SH4Assembler::LT; 39 const Condition MacroAssemblerSH4::LessThanOrEqual = SH4Assembler::LE; 40 const Condition MacroAssemblerSH4::UGreaterThan = SH4Assembler::HI; 41 const Condition MacroAssemblerSH4::UGreaterThanOrEqual = SH4Assembler::HS; 42 const Condition MacroAssemblerSH4::ULessThan = SH4Assembler::LI; 43 const Condition MacroAssemblerSH4::ULessThanOrEqual = SH4Assembler::LS [all...] |
ARMAssembler.h | 121 } Condition; 281 void and_r(int rd, int rn, ARMWord op2, Condition cc = AL) 286 void ands_r(int rd, int rn, ARMWord op2, Condition cc = AL) 291 void eor_r(int rd, int rn, ARMWord op2, Condition cc = AL) 296 void eors_r(int rd, int rn, ARMWord op2, Condition cc = AL) 301 void sub_r(int rd, int rn, ARMWord op2, Condition cc = AL) 306 void subs_r(int rd, int rn, ARMWord op2, Condition cc = AL) 311 void rsb_r(int rd, int rn, ARMWord op2, Condition cc = AL) 316 void rsbs_r(int rd, int rn, ARMWord op2, Condition cc = AL) 321 void add_r(int rd, int rn, ARMWord op2, Condition cc = AL [all...] |
MacroAssembler.h | 108 void branchPtr(Condition cond, RegisterID op1, TrustedImmPtr imm, Label target) 113 void branch32(Condition cond, RegisterID op1, RegisterID op2, Label target) 118 void branch32(Condition cond, RegisterID op1, TrustedImm32 imm, Label target) 123 void branch32(Condition cond, RegisterID left, Address right, Label target) 128 void branch16(Condition cond, BaseIndex left, RegisterID right, Label target) 133 void branchTestPtr(Condition cond, RegisterID reg, Label target) 239 void setPtr(Condition cond, RegisterID left, TrustedImm32 right, RegisterID dest) 275 Jump branchPtr(Condition cond, RegisterID left, RegisterID right) 280 Jump branchPtr(Condition cond, RegisterID left, TrustedImmPtr right) 285 Jump branchPtr(Condition cond, RegisterID left, Address right [all...] |
/external/v8/src/arm/ |
assembler-arm.h | 739 void b(int branch_offset, Condition cond = al); 740 void bl(int branch_offset, Condition cond = al); 742 void blx(Register target, Condition cond = al); // v5 and above 743 void bx(Register target, Condition cond = al); // v5 and above, plus v4t 746 void b(Label* L, Condition cond = al) { 749 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); } 750 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); } 751 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); } 757 SBit s = LeaveCC, Condition cond = al); 760 SBit s = LeaveCC, Condition cond = al) [all...] |
macro-assembler-arm.h | 100 void Jump(Register target, Condition cond = al); 101 void Jump(byte* target, RelocInfo::Mode rmode, Condition cond = al); 102 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); 103 static int CallSize(Register target, Condition cond = al); 104 void Call(Register target, Condition cond = al); 105 static int CallSize(byte* target, RelocInfo::Mode rmode, Condition cond = al); 106 void Call(byte* target, RelocInfo::Mode rmode, Condition cond = al); 109 Condition cond = al); 110 void Call(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); 111 void Ret(Condition cond = al) [all...] |
constants-arm.h | 119 // Values for the condition field as defined in section A3.2 120 enum Condition { 139 kSpecialCondition = 15 << 28, // Special condition (refer to section A3.2.1). 148 inline Condition NegateCondition(Condition cond) { 150 return static_cast<Condition>(cond ^ ne); 155 inline Condition ReverseCondition(Condition cond) { 229 S = 1 << 20, // Set condition code (or leave unchanged). 272 // Condition code updating mode [all...] |
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
WaitingThread.java | 35 import java.util.concurrent.locks.Condition; 44 * All methods assume external synchronization on the condition 52 /** The condition on which the thread is waiting. */ 53 private final Condition cond; 69 * @param cond the condition for which to wait 73 public WaitingThread(Condition cond, RouteSpecificPool pool) { 76 throw new IllegalArgumentException("Condition must not be null."); 85 * Obtains the condition. 87 * @return the condition on which to wait, never <code>null</code> 89 public final Condition getCondition() [all...] |
/external/v8/src/mips/ |
codegen-mips-inl.h | 49 void DeferredCode::Branch(Condition cond) {
|
jump-target-mips.cc | 57 // void JumpTarget::DoBranch(Condition cc, Hint ignored, 59 void JumpTarget::DoBranch(Condition cc, Hint ignored) {
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
Condition.java | 12 * {@code Condition} factors out the {@code Object} monitor 18 * and statements, a {@code Condition} replaces the use of the Object 21 * <p>Conditions (also known as <em>condition queues</em> or 22 * <em>condition variables</em>) provide a means for one thread to 24 * thread that some state condition may now be true. Because access 27 * condition. The key property that waiting for a condition provides 31 * <p>A {@code Condition} instance is intrinsically bound to a lock. 32 * To obtain a {@code Condition} instance for a particular {@link Lock} 44 * {@link Condition} instances [all...] |
Lock.java | 15 * {@link Condition} objects. 131 * @see Condition 308 * Returns a new {@link Condition} instance that is bound to this 311 * <p>Before waiting on the condition the lock must be held by the 313 * A call to {@link Condition#await()} will atomically release the lock 318 * <p>The exact operation of the {@link Condition} instance depends on 322 * @return A new {@link Condition} instance for this {@code Lock} instance 326 Condition newCondition();
|
/system/media/wilhelm/src/android/ |
CallbackProtector.h | 59 Condition mCbExitedCondition;
|
/external/valgrind/unittest/ |
thread_wrappers_win.h | 100 void LockWhen(Condition cond) { Lock(); WaitLoop(cond); } 101 void ReaderLockWhen(Condition cond) { Lock(); WaitLoop(cond); } 102 void Await(Condition cond) { WaitLoop(cond); } 104 bool ReaderLockWhenWithTimeout(Condition cond, int millis) 106 bool LockWhenWithTimeout(Condition cond, int millis) 108 bool AwaitWithTimeout(Condition cond, int millis) 113 void WaitLoop(Condition cond) { 123 bool WaitLoopWithTimeout(Condition cond, int millis) {
|
/frameworks/base/include/media/stagefright/ |
MediaBufferGroup.h | 48 Condition mCondition;
|
AudioSource.h | 72 Condition mFrameAvailableCondition; 73 Condition mFrameEncodingCompletionCondition;
|
MediaSourceSplitter.h | 109 // Condition variable for waiting on read from source to complete. 110 Condition mReadFromSourceCondition; 112 // Condition variable for waiting on all client's last read to complete. 113 Condition mAllReadsCompleteCondition;
|
/frameworks/base/include/utils/ |
threads.h | 252 friend class Condition; 401 * Condition variable class. The implementation is system-dependent. 403 * Condition variables are paired up with mutexes. Lock the mutex, 406 * use the same mutex for a given Condition. 408 class Condition { 415 Condition(); 416 Condition(int type); 417 ~Condition(); 418 // Wait on the condition variable. Lock the mutex before calling. 422 // Signal the condition variable, allowing one thread to continue [all...] |
/external/opencv/cxcore/include/ |
cxerror.h | 176 #define CV_ASSERT( Condition ) \ 178 if( !(Condition) ) \ 179 CV_ERROR( CV_StsInternal, "Assertion: " #Condition " failed" ); \
|
/packages/apps/Email/tests/src/com/android/email/ |
TestUtils.java | 38 public interface Condition { 107 * Wait until a {@code Condition} is met. 109 public static void waitUntil(Condition condition, int timeoutSeconds) { 110 waitUntil("", condition, timeoutSeconds); 114 * Wait until a {@code Condition} is met. 116 public static void waitUntil(String message, Condition condition, int timeoutSeconds) { 120 if (condition.isMet()) { 133 waitUntil("message", new Condition() { [all...] |
SingleRunningTaskTest.java | 19 import com.android.email.TestUtils.Condition; 107 TestUtils.waitUntil(new Condition() { 125 TestUtils.waitUntil(new Condition() {
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
TexturesGenerator.h | 63 android::Condition mRequestedOperationsCond;
|
/frameworks/base/services/surfaceflinger/ |
Barrier.h | 49 mutable Condition cv;
|
/external/webkit/Source/WebKit/android/smoke/ |
MessageThread.h | 70 Condition m_condition; 97 Condition m_condition;
|
/frameworks/base/media/libstagefright/include/ |
TimedEventQueue.h | 114 Condition mQueueNotEmptyCondition; 115 Condition mQueueHeadChangedCondition;
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
BarrierConsumer.java | 20 import java.util.concurrent.locks.Condition; 31 private final Condition mNotFull = mLock.newCondition();
|