/external/deqp/modules/gles3/functional/ |
es3fShaderSwitchTests.cpp | 129 params["CONDITION"] = type == SWITCHTYPE_STATIC ? "2" : 187 << "switch (${CONDITION})" 198 << "switch (${CONDITION})" 208 << "switch (${CONDITION})" 218 << "switch (${CONDITION})" 229 << "switch (${CONDITION})" 238 << "switch (${CONDITION})" 249 << "switch (${CONDITION})" 261 << "switch (${CONDITION})" 269 << " if (${CONDITION} != 3) [all...] |
/external/llvm/test/MC/ARM/ |
invalid-neon-v8.s | 8 @ CHECK: error: instruction 'vmaxnm' is not predicable, but condition code specified 17 @ CHECK: error: instruction 'vcvtp' is not predicable, but condition code specified 26 @ CHECK: error: instruction 'vrintm' is not predicable, but condition code specified 37 @ CHECK: error: instruction 'aesd' is not predicable, but condition code specified 46 @ CHECK: error: instruction 'sha1h' is not predicable, but condition code specified 63 @ CHECK: error: instruction 'sha256su1' is not predicable, but condition code specified 70 @ CHECK: error: instruction 'vmull' is not predicable, but condition code specified
|
/external/mesa3d/src/glsl/ |
opt_constant_folding.cpp | 97 if (ir->condition) { 98 ir->condition->accept(this); 99 handle_rvalue(&ir->condition); 101 ir_constant *const_val = ir->condition->as_constant(); 102 /* If the condition is constant, either remove the condition or 107 ir->condition = NULL;
|
lower_vec_index_to_cond_assign.cpp | 103 /* Generate a single comparison condition "mask" for all of the components 170 if (ir->condition) 171 ir->condition = convert_vec_index_to_cond_assign(ir->condition); 203 /* Generate a single comparison condition "mask" for all of the components 229 /* If the original assignment has a condition, respect that original 230 * condition! This is acomplished by wrapping the new conditional 231 * assignments in an if-statement that uses the original condition. 233 if (ir->condition != NULL) { 234 /* No need to clone the condition because the IR that it hangs on i [all...] |
/external/v8/src/base/platform/ |
condition-variable.h | 28 // the mutex and suspend the execution of the calling thread. When the condition 36 // If any threads are waiting on this condition variable, calling 40 // Unblocks all threads currently waiting for this condition variable. 43 // |Wait()| causes the calling thread to block until the condition variable is 46 // this condition variable. The thread will be unblocked when |NotifyAll()| or 53 // adds it to the list of threads waiting on this condition variable. The 57 // is reacquired and |WaitFor()| exits. Returns true if the condition variable
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
CaptureSequencer.h | 25 #include <utils/Condition.h> 84 Condition mStartCaptureSignal; 89 Condition mNewNotifySignal; 94 Condition mNewFrameSignal; 100 Condition mNewCaptureSignal; 105 Condition mShutterNotifySignal; 136 Condition mStateChanged;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
fmtmsg.h | 31 MM_HARD = 0x001, /* Source of the condition is hardware. */ 33 MM_SOFT = 0x002, /* Source of the condition is software. */ 35 MM_FIRM = 0x004, /* Source of the condition is firmware. */ 37 MM_APPL = 0x008, /* Condition detected by application. */ 39 MM_UTIL = 0x010, /* Condition detected by utility. */ 41 MM_OPSYS = 0x020, /* Condition detected by operating system. */ 63 condition. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
fmtmsg.h | 31 MM_HARD = 0x001, /* Source of the condition is hardware. */ 33 MM_SOFT = 0x002, /* Source of the condition is software. */ 35 MM_FIRM = 0x004, /* Source of the condition is firmware. */ 37 MM_APPL = 0x008, /* Condition detected by application. */ 39 MM_UTIL = 0x010, /* Condition detected by utility. */ 41 MM_OPSYS = 0x020, /* Condition detected by operating system. */ 63 condition. */
|
/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 57 /** The condition on which the thread is waiting. */ 58 private final Condition cond; 74 * @param cond the condition for which to wait 78 public WaitingThread(Condition cond, RouteSpecificPool pool) { 81 throw new IllegalArgumentException("Condition must not be null."); 90 * Obtains the condition. 92 * @return the condition on which to wait, never <code>null</code> 94 public final Condition getCondition() [all...] |
/external/v8/src/crankshaft/mips/ |
lithium-codegen-mips.h | 222 void DeoptimizeIf(Condition condition, LInstruction* instr, 228 Condition condition, LInstruction* instr, 262 static Condition TokenToCondition(Token::Value op, bool is_unsigned); 268 Condition condition, 273 Condition condition, 277 void EmitTrueBranch(InstrType instr, Condition condition, Register src1 [all...] |
/external/v8/src/crankshaft/mips64/ |
lithium-codegen-mips64.h | 224 void DeoptimizeIf(Condition condition, LInstruction* instr, 230 Condition condition, LInstruction* instr, 265 static Condition TokenToCondition(Token::Value op, bool is_unsigned); 271 Condition condition, 276 Condition condition, 280 void EmitTrueBranch(InstrType instr, Condition condition, Register src1 [all...] |
/external/webrtc/webrtc/base/ |
checks.h | 39 // build fails to spot a violated condition, even those that would result in 41 // call RTC_DCHECK; if the condition really can't occur, but you'd sleep 51 // messages if the condition doesn't hold. Prefer them to raw RTC_CHECK and 62 // the condition doesn't hold. 63 #define RTC_LAZY_STREAM(stream, condition) \ 64 !(condition) ? static_cast<void>(0) : rtc::FatalMessageVoidify() & (stream) 66 // The actual stream used isn't important. We reference condition in the code 70 // condition being unused). 71 #define RTC_EAT_STREAM_PARAMETERS(condition) \ 72 (true ? true : !(condition)) \ [all...] |
/cts/tests/tests/telecom/src/android/telecom/cts/ |
BaseTelecomTestWithMockServices.java | 539 waitUntilConditionIsTrueOrTimeout(new Condition() { 555 waitUntilConditionIsTrueOrTimeout(new Condition() { 571 waitUntilConditionIsTrueOrTimeout(new Condition() { 590 waitUntilConditionIsTrueOrTimeout(new Condition() { 607 new Condition() { 626 new Condition() { 645 new Condition() { 664 new Condition() { 683 new Condition() { 702 new Condition() { [all...] |
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
ReentrantLock.java | 54 * lock.lock(); // block until condition holds 438 * Returns a {@link Condition} instance for use with this 441 * <p>The returned {@link Condition} instance supports the same 449 * <li>If this lock is not held when any of the {@link Condition} 450 * {@linkplain Condition#await() waiting} or {@linkplain 451 * Condition#signal signalling} methods are called, then an {@link 454 * <li>When the condition {@linkplain Condition#await() waiting} 474 * @return the Condition object 476 public Condition newCondition() [all...] |
/external/autotest/client/cros/ |
login.py | 14 a condition. 36 def wait_for_condition(condition, timeout_msg, timeout, process, crash_msg): 37 """Wait for callable |condition| to return true, while checking for crashes. 39 Poll for |condition| to become true, for |timeout| seconds. If the timeout 43 @param condition: a callable to poll on. 45 @param timeout: float number of seconds to poll on |condition|. 51 @raise: CrashError if process crashed and the condition never fired. 59 condition, 117 condition=lambda: cryptohome.is_vault_mounted(user), 134 condition=lambda: os.access(constants.OWNER_KEY_FILE, os.F_OK) [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
UndefBranchChecker.cpp | 11 // condition. 54 void checkBranchCondition(const Stmt *Condition, CheckerContext &Ctx) const; 59 void UndefBranchChecker::checkBranchCondition(const Stmt *Condition, 61 SVal X = Ctx.getState()->getSVal(Condition, Ctx.getLocationContext()); 69 this, "Branch condition evaluates to a garbage value")); 72 // condition that is the most likely source of the "uninitialized 73 // branch condition." We do a recursive walk of the condition's 78 // being the terminator condition. We want to inspect the state 86 const Expr *Ex = cast<Expr>(Condition); [all...] |
/external/clang/test/SemaOpenCL/ |
cond.cl | 26 // scalar condition and mixed-width vectors and scalars 38 // vector condition and mixed scalar operands 44 // vector condition and matching scalar operands 50 // vector condition and mixed scalar operands 56 // vector condition and mixed scalar and vector operands 72 return C ? X : Y; // expected-error {{vector condition type 'char2' (vector of 2 'char' values) and result type (vector of 2 'int' values) do not have elements of the same size}} 77 return C ? X : Y; // expected-error {{vector condition type 'char2' (vector of 2 'char' values) and result type 'int2' (vector of 2 'int' values) do not have elements of the same size}} 82 return C ? X : Y; // expected-error {{vector condition type 'int2' (vector of 2 'int' values) and result type (vector of 2 'unsigned char' values) do not have elements of the same size}} 97 return C ? X : Y; // expected-error {{vector condition type 'int2' (vector of 2 'int' values) and result type 'char2' (vector of 2 'char' values) do not have elements of the same size}} 123 return C ? X : Y; // expected-error {{vector condition type 'char2' (vector of 2 'char' values) and result type 'char3' (vector of 3 'char' values) do no (…) [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> 108 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \ 109 {Eigen::internal::static_assertion<bool(CONDITION)>::MSG;} 113 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \ 114 if (Eigen::internal::static_assertion<bool(CONDITION)>::MSG) {} 122 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) eigen_assert((CONDITION) && #MSG) [all...] |
/external/jemalloc/msvc/projects/vc2015/jemalloc/ |
jemalloc.vcxproj | 125 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 131 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|Win32'" Label="Configuration"> 137 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 144 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|Win32'" Label="Configuration"> 151 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 157 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-static|x64'" Label="Configuration"> 163 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 170 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-static|x64'" Label="Configuration"> 182 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 183 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" / [all...] |
/external/libxml2/win32/VC10/ |
libxml2.vcxproj | 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
23 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
32 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
33 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
35 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
36 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
58 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZ.h | 26 // Condition-code mask values. 33 // Condition-code mask assignments for integer and floating-point 42 // Condition-code mask assignments for floating-point comparisons only. 46 // All condition-code values produced by comparisons. 50 // Condition-code mask assignments for CS. 55 // Condition-code mask assignments for a completed SRST loop. 60 // Condition-code mask assignments for TEST UNDER MASK. 71 // Condition-code mask assignments for TRANSACTION_BEGIN. 78 // Condition-code mask assignments for TRANSACTION_END. 83 // Condition-code mask assignments for vector comparisons (and simila [all...] |
/external/v8/test/mjsunit/ |
debug-changebreakpoint.js | 71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false); 72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false); 73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false); 80 testArguments(dcp, '{' + bp_str + ',"condition":"1==2"}', true); 81 testArguments(dcp, '{' + bp_str + ',"condition":"false"}', true); 86 '{' + bp_str + ',"enabled":"true","condition":"false","ignoreCount":0}',
|
/external/v8/test/mjsunit/es6/ |
debug-stepnext-for.js | 111 // For-var: var decl, condition, body, next, condition, body, ... 113 // For: init, condition, body, next, condition, body, ... 115 // For-let: init, condition, body, next, condition, body, ...
|
/external/valgrind/drd/tests/ |
pth_inconsistent_cond_wait.stderr.exp1 | 3 Inconsistent association of condition variable and mutex: condition variable 0x........, mutexes 0x........ and 0x........ 18 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 28 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
|
pth_inconsistent_cond_wait.stderr.exp2 | 3 Inconsistent association of condition variable and mutex: condition variable 0x........, mutexes 0x........ and 0x........ 18 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 28 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
|