Searched defs:cond (Results 76 - 100 of 285) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/arm/
H A Dmacro-assembler-arm.cc34 void MacroAssembler::Jump(Register target, Condition cond) { argument
35 bx(target, cond);
40 Condition cond) {
42 mov(pc, Operand(target, rmode), LeaveCC, cond);
47 Condition cond) {
49 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
54 Condition cond) {
58 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
62 int MacroAssembler::CallSize(Register target, Condition cond) { argument
67 void MacroAssembler::Call(Register target, Condition cond) { argument
39 Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond) argument
46 Jump(Address target, RelocInfo::Mode rmode, Condition cond) argument
53 Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond) argument
77 CallSize( Address target, RelocInfo::Mode rmode, Condition cond) argument
86 CallStubSize( CodeStub* stub, TypeFeedbackId ast_id, Condition cond) argument
92 CallSizeNotPredictableCodeSize(Isolate* isolate, Address target, RelocInfo::Mode rmode, Condition cond) argument
103 Call(Address target, RelocInfo::Mode rmode, Condition cond, TargetAddressStorageMode mode) argument
150 CallSize(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId ast_id, Condition cond) argument
159 Call(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId ast_id, Condition cond, TargetAddressStorageMode mode) argument
173 Call(reinterpret_cast<Address>(code.location()), rmode, cond, mode); local
177 Ret(Condition cond) argument
182 Drop(int count, Condition cond) argument
189 Ret(int drop, Condition cond) argument
195 Swap(Register reg1, Register reg2, Register scratch, Condition cond) argument
239 Move(Register dst, Register src, Condition cond) argument
253 Mls(Register dst, Register src1, Register src2, Register srcA, Condition cond) argument
266 And(Register dst, Register src1, const Operand& src2, Condition cond) argument
284 Ubfx(Register dst, Register src1, int lsb, int width, Condition cond) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp88 NonLoc cond,
90 state = assumeAux(state, cond, assumption);
92 return SU->processAssume(state, cond, assumption);
87 assume(ProgramStateRef state, NonLoc cond, bool assumption) argument
/external/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.c231 void ternaryArg(char cond) { argument
233 derefArg(cond ? &x : getNull());
242 void ternaryArgCast(char cond) { argument
244 derefArgCast((char*)((unsigned)cond ? &x : getNull()));
254 void ternaryAssignment(char cond) { argument
256 int *p = cond ? getNull() : getPtr();
260 int *retNull(char cond) { argument
262 return cond ? &x : getNull();
264 int ternaryRetNull(char cond) { argument
265 int *p = retNull(cond);
[all...]
/external/clang/test/Sema/
H A Dswitch.c36 int cond; local
37 switch (cond) {
43 switch(cond) {
49 switch (cond) {
54 switch (cond) {
60 switch (cond) {
/external/clang/test/SemaCXX/
H A Dreturn-stack-addr.cpp63 int* ret_conditional(bool cond) { argument
66 return cond ? &x : &y; // expected-warning {{address of stack memory}}
69 int* ret_conditional_rhs(int *x, bool cond) { argument
71 return cond ? x : &y; // expected-warning {{address of stack memory}}
H A Dconstant-expression.cpp60 void f(int cond) { argument
61 switch(cond) {
H A Dexpression-traits.cpp518 void expr_cond(bool cond) argument
520 // 5.16 Conditional operator [expr.cond]
530 ASSERT_RVALUE(cond ? throw 1 : (void)0);
531 ASSERT_RVALUE(cond ? (void)0 : throw 1);
532 ASSERT_RVALUE(cond ? throw 1 : 0);
533 ASSERT_RVALUE(cond ? 0 : throw 1);
534 ASSERT_LVALUE(cond ? throw 1 : classLvalue);
535 ASSERT_LVALUE(cond ? classLvalue : throw 1);
540 ASSERT_RVALUE(cond ? (void)1 : (void)0);
541 ASSERT_RVALUE(cond
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.c100 LLVMValueRef cond)
106 /* if cond is true, goto skip->block, else goto new_block */
107 LLVMBuildCondBr(skip->gallivm->builder, cond, skip->block, new_block);
130 LLVMValueRef cond; local
143 /* cond = (mask == 0) */
144 cond = LLVMBuildICmp(builder,
150 /* if cond, goto end of block */
151 lp_build_flow_skip_cond_break(&mask->skip, cond);
247 LLVMValueRef cond; local
257 cond
99 lp_build_flow_skip_cond_break(struct lp_build_skip_context *skip, LLVMValueRef cond) argument
324 LLVMValueRef next, cond; local
[all...]
H A Dlp_bld_logic.c84 LLVMValueRef cond; local
279 cond = LLVMBuildFCmp(builder, op, a, b, "");
280 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
283 cond = LLVMBuildFCmp(builder, op, a, b, "");
284 res = LLVMBuildSExt(builder, cond, int_vec_type, "");
295 cond = LLVMBuildFCmp(builder, op,
299 cond = LLVMBuildSelect(builder, cond,
303 res = LLVMBuildInsertElement(builder, res, cond, index, "");
335 cond
[all...]
H A Dlp_bld_swizzle.c358 unsigned cond = 0; local
367 cond |= 1 << chan;
370 res = lp_build_select_aos(bld, cond, bld->one, bld->zero);
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_thread.h110 #define pipe_condvar_init(cond) \
111 pthread_cond_init(&(cond), NULL)
113 #define pipe_condvar_destroy(cond) \
114 pthread_cond_destroy(&(cond))
116 #define pipe_condvar_wait(cond, mutex) \
117 pthread_cond_wait(&(cond), &(mutex))
119 #define pipe_condvar_signal(cond) \
120 pthread_cond_signal(&(cond))
122 #define pipe_condvar_broadcast(cond) \
123 pthread_cond_broadcast(&(cond))
397 pipe_condvar cond; member in struct:__anon27136
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_query.c433 uint32_t cond; local
449 cond = negated ? NVC0_3D_COND_MODE_EQUAL :
457 cond = wait ? NVC0_3D_COND_MODE_NOT_EQUAL :
460 cond = NVC0_3D_COND_MODE_RES_NON_ZERO;
462 cond = wait ? NVC0_3D_COND_MODE_EQUAL : NVC0_3D_COND_MODE_ALWAYS;
479 PUSH_DATA (push, cond);
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp1203 ir_constant *cond = asg->condition->constant_expression_value(variable_context); local
1204 if (!cond)
1206 if (!cond->get_bool_component(0))
1263 ir_constant *cond = iif->condition->constant_expression_value(variable_context); local
1264 if (!cond || !cond->type->is_boolean())
1267 exec_list &branch = cond->get_bool_component(0) ? iif->then_instructions : iif->else_instructions;
/external/qemu/util/
H A Dqemu-thread-posix.c2 * Wrappers around mutex/cond/thread functions
81 void qemu_cond_init(QemuCond *cond) argument
85 err = pthread_cond_init(&cond->cond, NULL);
90 void qemu_cond_destroy(QemuCond *cond) argument
94 err = pthread_cond_destroy(&cond->cond);
99 void qemu_cond_signal(QemuCond *cond) argument
103 err = pthread_cond_signal(&cond->cond);
108 qemu_cond_broadcast(QemuCond *cond) argument
117 qemu_cond_wait(QemuCond *cond, QemuMutex *mutex) argument
[all...]
H A Dqemu-thread-win32.c2 * Win32 implementation for mutex/cond/thread functions
72 void qemu_cond_init(QemuCond *cond) argument
74 memset(cond, 0, sizeof(*cond));
76 cond->sema = CreateSemaphore(NULL, 0, LONG_MAX, NULL);
77 if (!cond->sema) {
80 cond->continue_event = CreateEvent(NULL, /* security */
84 if (!cond->continue_event) {
89 void qemu_cond_destroy(QemuCond *cond) argument
92 result = CloseHandle(cond
104 qemu_cond_signal(QemuCond *cond) argument
131 qemu_cond_broadcast(QemuCond *cond) argument
159 qemu_cond_wait(QemuCond *cond, QemuMutex *mutex) argument
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_arm64_helpers.c103 tab_eval[(UInt)(_cc_op)][(UInt)(cond)]++; \
614 ULong cond = cond_n_op >> 4; local
616 ULong inv = cond & 1;
620 NOTE_EVAL(cc_op, cond);
626 switch (cond) {
674 cond, cc_op, cc_dep1, cc_dep2, cc_dep3 );
/external/valgrind/main/drd/
H A Ddrd_clientobj.h86 // null if no client threads are currently waiting on this cond.var.
148 struct cond_info cond; member in union:drd_clientobj
/external/bluetooth/bluedroid/udrv/ulinux/
H A Duipc.c89 pthread_cond_t cond; member in struct:__anon1733
233 pthread_cond_init(&p->cond, NULL);
/external/chromium_org/third_party/re2/re2/
H A Donepass.cc182 static bool Satisfy(uint32 cond, const StringPiece& context, const char* p) { argument
184 if (cond & kEmptyAllFlags & ~satisfied)
189 // Apply the capture bits in cond, saving p to the appropriate
191 static void ApplyCaptures(uint32 cond, const char* p, argument
194 if (cond & (1 << kCapShift << i))
258 uint32 cond = state->action[c]; local
262 if ((cond & kEmptyAllFlags) == 0 || Satisfy(cond, context, p)) {
263 uint32 nextindex = cond >> kIndexShift;
292 if ((cond
360 uint32 cond; member in struct:re2::InstCond
431 uint32 cond = stack[nstack].cond; local
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_thread.c408 pthread_cond_t cond; /* Condition variable to wait on */ member in struct:UnlockNotification
421 pthread_cond_signal(&p->cond);
447 pthread_cond_init(&un.cond, 0);
464 pthread_cond_wait(&un.cond, &un.mutex);
470 pthread_cond_destroy(&un.cond);
/external/chromium_org/v8/src/compiler/arm64/
H A Dinstruction-selector-arm64-unittest.cc164 FlagsCondition cond; member in struct:v8::internal::compiler::__anon17262::FPCmp
836 EXPECT_EQ(cmp.cond, s[0]->flags_condition());
/external/compiler-rt/lib/asan/
H A Dasan_rtl.cc65 static void AsanCheckFailed(const char *file, int line, const char *cond, argument
68 line, cond, (uptr)v1, (uptr)v2);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.cc73 void NORETURN CheckFailed(const char *file, int line, const char *cond, argument
76 CheckFailedCallback(file, line, cond, v1, v2);
78 Report("Sanitizer CHECK failed: %s:%d %s (%lld, %lld)\n", file, line, cond,
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dtrace.c91 /* TODO: handle swi<cond> variations */
155 const unsigned cond = BITS(this_instr, 28, 31); local
158 if (cond == COND_NV)
376 if (cond != COND_ALWAYS || nr == 0)
424 const unsigned long cond = BITS(inst1, 8, 11); local
425 if (cond != 0x0f) { /* SWI */
427 if (cond == COND_ALWAYS)
/external/regex-re2/re2/
H A Donepass.cc182 static bool Satisfy(uint32 cond, const StringPiece& context, const char* p) { argument
184 if (cond & kEmptyAllFlags & ~satisfied)
189 // Apply the capture bits in cond, saving p to the appropriate
191 static void ApplyCaptures(uint32 cond, const char* p, argument
194 if (cond & (1 << kCapShift << i))
258 uint32 cond = state->action[c]; local
262 if ((cond & kEmptyAllFlags) == 0 || Satisfy(cond, context, p)) {
263 uint32 nextindex = cond >> kIndexShift;
292 if ((cond
360 uint32 cond; member in struct:re2::InstCond
431 uint32 cond = stack[nstack].cond; local
[all...]

Completed in 678 milliseconds

1234567891011>>