Searched refs:cond (Results 76 - 100 of 290) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Darm-layout.c4 #define check(name, cond) int _##name##_check[(cond) ? 1 : -1]
/external/mesa3d/src/glsl/
H A Dloop_controls.cpp203 ir_expression *cond = if_stmt->condition->as_expression(); local
204 if (cond == NULL)
207 switch (cond->operation) {
216 ir_rvalue *counter = cond->operands[0]->as_dereference_variable();
217 ir_constant *limit = cond->operands[1]->as_constant();
218 enum ir_expression_operation cmp = cond->operation;
221 counter = cond->operands[1]->as_dereference_variable();
222 limit = cond->operands[0]->as_constant();
/external/webkit/Source/JavaScriptCore/assembler/
H A DMacroAssemblerX86.h111 Jump branch32(Condition cond, AbsoluteAddress left, RegisterID right) argument
114 return Jump(m_assembler.jCC(x86Condition(cond)));
117 Jump branch32(Condition cond, AbsoluteAddress left, TrustedImm32 right) argument
120 return Jump(m_assembler.jCC(x86Condition(cond)));
145 Jump branchPtrWithPatch(Condition cond, RegisterID left, DataLabelPtr& dataLabel, TrustedImmPtr initialRightValue = TrustedImmPtr(0)) argument
149 return Jump(m_assembler.jCC(x86Condition(cond)));
152 Jump branchPtrWithPatch(Condition cond, Address left, DataLabelPtr& dataLabel, TrustedImmPtr initialRightValue = TrustedImmPtr(0)) argument
156 return Jump(m_assembler.jCC(x86Condition(cond)));
/external/qemu/audio/
H A Daudio_pt_int.c44 err = pthread_cond_init (&p->cond, NULL);
75 err2 = pthread_cond_destroy (&p->cond);
95 err = pthread_cond_destroy (&p->cond);
137 err = pthread_cond_wait (&p->cond, &p->mutex);
154 err = pthread_cond_signal (&p->cond);
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc75 void MacroAssembler::Jump(Register target, Condition cond) { argument
77 bx(target, cond);
79 mov(pc, Operand(target), LeaveCC, cond);
85 Condition cond) {
88 bx(ip, cond);
90 mov(pc, Operand(target, rmode), LeaveCC, cond);
96 Condition cond) {
98 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
103 Condition cond) {
106 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
84 Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond) argument
95 Jump(Address target, RelocInfo::Mode rmode, Condition cond) argument
102 Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond) argument
110 CallSize(Register target, Condition cond) argument
119 Call(Register target, Condition cond) argument
135 CallSize( Address target, RelocInfo::Mode rmode, Condition cond) argument
147 Call(Address target, RelocInfo::Mode rmode, Condition cond) argument
180 CallSize(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id, Condition cond) argument
188 Call(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id, Condition cond) argument
200 Call(reinterpret_cast<Address>(code.location()), rmode, cond); local
206 Ret(Condition cond) argument
215 Drop(int count, Condition cond) argument
222 Ret(int drop, Condition cond) argument
228 Swap(Register reg1, Register reg2, Register scratch, Condition cond) argument
260 Move(Register dst, Register src, Condition cond) argument
276 And(Register dst, Register src1, const Operand& src2, Condition cond) argument
296 Ubfx(Register dst, Register src1, int lsb, int width, Condition cond) argument
[all...]
H A Dconstants-arm.h147 inline Condition NegateCondition(Condition cond) { argument
148 ASSERT(cond != al);
149 return static_cast<Condition>(cond ^ ne);
154 inline Condition ReverseCondition(Condition cond) { argument
155 switch (cond) {
173 return cond;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp221 const Stmt *cond = pred->getTerminatorCondition(); local
223 //assert(cond && "CFGBlock's predecessor has a terminator condition");
226 if (!cond)
230 if (containsMacro(cond) || containsEnum(cond)
231 || containsStaticLocal(cond) || containsBuiltinOffsetOf(cond)
232 || containsStmt<UnaryExprOrTypeTraitExpr>(cond))
/external/openssl/ssl/
H A Dssltest.c2053 const char *cond, const char **cond_end, int *pos, int indent);
2055 const char *cond, const char **cond_end, int *pos, int indent)
2061 while(isspace((int)*cond))
2063 cond++; (*pos)++;
2065 c = *cond;
2070 *pos, cond);
2075 cond++; (*pos)++;
2076 while(isspace((int)*cond))
2078 cond++; (*pos)++;
2080 c = *cond;
2054 process_proxy_cond_val(unsigned int letters[26], const char *cond, const char **cond_end, int *pos, int indent) argument
2133 process_proxy_cond_multipliers(unsigned int letters[26], const char *cond, const char **cond_end, int *pos, int indent) argument
2199 process_proxy_cond_adders(unsigned int letters[26], const char *cond, const char **cond_end, int *pos, int indent) argument
2263 process_proxy_cond(unsigned int letters[26], const char *cond, const char **cond_end) argument
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DIntermTraverse.cpp242 if(cond)
244 cond->traverse(it);
249 if(cond)
251 cond->traverse(it);
H A Dlocalintermediate.h37 TIntermNode* addSelection(TIntermTyped* cond, TIntermNodePair code, TSourceLoc);
38 TIntermTyped* addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, TSourceLoc);
/external/webrtc/src/system_wrappers/source/
H A Devent_posix.h52 pthread_cond_t cond; member in class:webrtc::EventPosix
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_common.h36 #define ASSERTC(cond, msg, val) if (!(cond)) { ALOGE( \
/external/bzip2/
H A Dbzlib_private.h59 #define AssertH(cond,errcode) \
60 { if (!(cond)) BZ2_bz__AssertH__fail ( errcode ); }
63 #define AssertD(cond,msg) \
64 { if (!(cond)) { \
70 #define AssertD(cond,msg) /* */
89 #define AssertH(cond,errcode) \
90 { if (!(cond)) bz_internal_error ( errcode ); }
91 #define AssertD(cond,msg) do { } while (0)
/external/clang/test/CodeGenCXX/
H A Deh.cpp382 // -> while.cond
406 bool cond();
417 cond() ? throw B(A()) : foo();
/external/clang/test/SemaCXX/
H A Dconstant-expression.cpp60 void f(int cond) { argument
61 switch(cond) {
H A Dconversion.cpp83 #define NULL_COND(cond) ((cond) ? &a : NULL)
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator64_testlib.cc49 void NORETURN CheckFailed(const char *file, int line, const char *cond, argument
52 file, line, cond, v1, v2);
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp67 ProgramStateRef SimpleConstraintManager::assume(ProgramStateRef state, Loc cond, argument
69 state = assumeAux(state, cond, assumption);
71 return SU.processAssume(state, cond, assumption);
115 NonLoc cond,
117 state = assumeAux(state, cond, assumption);
118 return SU.processAssume(state, cond, assumption);
114 assume(ProgramStateRef state, NonLoc cond, bool assumption) argument
/external/libffi/src/arm/
H A Dsysv.S119 .macro RETLDM regs=, cond=, dirn=ia
122 ldr\cond lr, [sp], #4
124 ldm\cond\dirn sp!, {\regs, lr}
126 bx\cond lr
129 ldr\cond pc, [sp], #4
131 ldm\cond\dirn sp!, {\regs, pc}
/external/valgrind/main/VEX/priv/
H A Dguest_x86_helpers.c638 UInt x86g_calculate_condition ( UInt/*X86Condcode*/ cond, argument
647 UInt inv = cond & 1;
651 tab_cond[cc_op][cond]++;
656 switch (cond) {
708 cond, cc_op, cc_dep1, cc_dep2, cc_ndep );
802 IRExpr *cond, *cc_op, *cc_dep1, *cc_dep2; local
804 cond = args[0];
811 if (isU32(cc_op, X86G_CC_OP_ADDL) && isU32(cond, X86CondZ)) {
821 if (isU32(cc_op, X86G_CC_OP_SUBL) && isU32(cond, X86CondZ)) {
826 if (isU32(cc_op, X86G_CC_OP_SUBL) && isU32(cond, X86CondN
[all...]
H A Dguest_amd64_helpers.c735 ULong amd64g_calculate_condition ( ULong/*AMD64Condcode*/ cond, argument
744 ULong inv = cond & 1;
748 tab_cond[cc_op][cond]++;
753 switch (cond) {
806 cond, cc_op, cc_dep1, cc_dep2, cc_ndep );
900 IRExpr *cond, *cc_op, *cc_dep1, *cc_dep2; local
902 cond = args[0];
909 if (isU64(cc_op, AMD64G_CC_OP_ADDQ) && isU64(cond, AMD64CondZ)) {
919 if (isU64(cc_op, AMD64G_CC_OP_SUBQ) && isU64(cond, AMD64CondZ)) {
924 if (isU64(cc_op, AMD64G_CC_OP_SUBQ) && isU64(cond, AMD64CondN
[all...]
H A Dhost_s390_defs.h251 s390_cc_invert(s390_cc_t cond) argument
253 return S390_CC_ALWAYS - cond;
274 s390_cc_t cond; member in struct:__anon13271::__anon13272::__anon13276
330 s390_cc_t cond; member in struct:__anon13271::__anon13272::__anon13287
341 s390_cc_t cond; member in struct:__anon13271::__anon13272::__anon13289
351 s390_cc_t cond; member in struct:__anon13271::__anon13272::__anon13290
406 s390_insn *s390_insn_cond_move(UChar size, s390_cc_t cond, HReg dst,
426 s390_insn *s390_insn_branch(IRJumpKind jk, s390_cc_t cond, s390_opnd_RMI dst);
427 s390_insn *s390_insn_helper_call(s390_cc_t cond, Addr64 target, UInt num_args,
/external/openssl/crypto/
H A Dia64cpuid.S140 (p6) br.cond.dptk .Lot };;
146 (p6) br.cond.dptk .Little
151 (p6) br.cond.dptk .Laligned };;
162 (p6) br.cond.dptk .Laligned };;
165 (p7) br.cond.dpnt .Little
/external/clang/test/SemaTemplate/
H A Ddependent-type-identity.cpp80 S< S<w>::cond && 1 > foo();
87 S< S<w>::cond && 1 > N::foo() { }
/external/libvpx/vp8/encoder/
H A Dasm_enc_offsets.c21 #define ct_assert(name,cond) \
23 static void assert_##name(void) {switch(0){case 0:case !!(cond):;}}

Completed in 2026 milliseconds

1234567891011>>