Searched refs:cond (Results 1 - 25 of 144) sorted by relevance

123456

/external/qemu/distrib/sdl-1.2.12/src/thread/dc/
H A DSDL_syscond.c44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond
63 SDL_DestroyCond(SDL_cond *cond) argument
80 SDL_CondSignal(SDL_cond *cond) argument
104 SDL_CondBroadcast(SDL_cond *cond) argument
157 SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
212 SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/thread/generic/
H A DSDL_syscond.c44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond
63 SDL_DestroyCond(SDL_cond *cond) argument
80 SDL_CondSignal(SDL_cond *cond) argument
104 SDL_CondBroadcast(SDL_cond *cond) argument
157 SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
212 SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/thread/os2/
H A DSDL_syscond.c44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond
63 SDL_DestroyCond(SDL_cond *cond) argument
80 SDL_CondSignal(SDL_cond *cond) argument
104 SDL_CondBroadcast(SDL_cond *cond) argument
157 SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
212 SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
H A DSDL_syscond.c34 pthread_cond_t cond; member in struct:SDL_cond
40 SDL_cond *cond; local
42 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
43 if ( cond ) {
44 if ( pthread_cond_init(&cond->cond, NULL) < 0 ) {
46 SDL_free(cond);
47 cond = NULL;
50 return(cond);
54 void SDL_DestroyCond(SDL_cond *cond) argument
63 SDL_CondSignal(SDL_cond *cond) argument
81 SDL_CondBroadcast(SDL_cond *cond) argument
98 SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
140 SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
H A DSDL_syscond.c38 pthread_cond_t cond; member in struct:SDL_cond
44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 if ( pthread_cond_init(&cond->cond, NULL) < 0 ) {
50 SDL_free(cond);
51 cond = NULL;
54 return(cond);
58 void SDL_DestroyCond(SDL_cond *cond) argument
67 SDL_CondSignal(SDL_cond *cond) argument
85 SDL_CondBroadcast(SDL_cond *cond) argument
102 SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
144 SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/thread/pth/
H A DSDL_syscond.c43 SDL_cond *cond; local
45 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
46 if ( cond ) {
47 if ( pth_cond_init(&(cond->condpth_p)) < 0 ) {
49 SDL_free(cond);
50 cond = NULL;
55 return(cond);
59 void SDL_DestroyCond(SDL_cond *cond) argument
61 if ( cond ) {
62 SDL_free(cond);
67 SDL_CondSignal(SDL_cond *cond) argument
85 SDL_CondBroadcast(SDL_cond *cond) argument
122 SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
149 SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex) argument
[all...]
/external/clearsilver/util/
H A Dulocks.h130 NEOERR *cCreate(pthread_cond_t *cond);
133 * Description: Initializes the condition variable <cond>.
134 * Input: cond - condition variable to initialize.
138 * MT-Level: Safe for unique <cond>.
141 void cDestroy(pthread_cond_t *cond);
144 * Description: Destroys the condition variable <cond> that was
146 * Input: cond - condition variable to destroy.
149 * MT-Level: Safe for unique <cond>.
152 NEOERR *cWait(pthread_cond_t *cond, pthread_mutex_t *mutex);
155 * Description: Waits for a signal on condition variable <cond>
[all...]
H A Dulocks.c154 NEOERR *cCreate(pthread_cond_t *cond) argument
158 if((err = pthread_cond_init(cond, NULL))) {
166 void cDestroy(pthread_cond_t *cond) argument
168 pthread_cond_destroy(cond);
173 NEOERR *cWait(pthread_cond_t *cond, pthread_mutex_t *mutex) argument
177 if((err = pthread_cond_wait(cond, mutex)))
183 NEOERR *cBroadcast(pthread_cond_t *cond) argument
187 if((err = pthread_cond_broadcast(cond)))
194 NEOERR *cSignal(pthread_cond_t *cond) argument
198 if((err = pthread_cond_signal(cond)))
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DWaitingThread.java53 private final Condition cond; field in class:WaitingThread
69 * @param cond the condition for which to wait
73 public WaitingThread(Condition cond, RouteSpecificPool pool) { argument
75 if (cond == null) {
79 this.cond = cond;
91 return this.cond;
141 // the lock would not be released on calling cond.await() below.
157 success = this.cond.awaitUntil(deadline);
159 this.cond
[all...]
/external/qemu/
H A Dqemu-thread.h11 pthread_cond_t cond; member in struct:QemuCond
28 void qemu_cond_init(QemuCond *cond);
29 void qemu_cond_signal(QemuCond *cond);
30 void qemu_cond_broadcast(QemuCond *cond);
31 void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex);
32 int qemu_cond_timedwait(QemuCond *cond, QemuMutex *mutex, uint64_t msecs);
H A Dqemu-thread.c2 * Wrappers around mutex/cond/thread functions
84 void qemu_cond_init(QemuCond *cond) argument
88 err = pthread_cond_init(&cond->cond, NULL);
93 void qemu_cond_signal(QemuCond *cond) argument
97 err = pthread_cond_signal(&cond->cond);
102 void qemu_cond_broadcast(QemuCond *cond) argument
106 err = pthread_cond_broadcast(&cond->cond);
111 qemu_cond_wait(QemuCond *cond, QemuMutex *mutex) argument
120 qemu_cond_timedwait(QemuCond *cond, QemuMutex *mutex, uint64_t msecs) argument
[all...]
/external/dbus/dbus/
H A Ddbus-threads-internal.h40 void _dbus_condvar_free (DBusCondVar *cond);
41 void _dbus_condvar_wait (DBusCondVar *cond,
43 dbus_bool_t _dbus_condvar_wait_timeout (DBusCondVar *cond,
46 void _dbus_condvar_wake_one (DBusCondVar *cond);
47 void _dbus_condvar_wake_all (DBusCondVar *cond);
H A Ddbus-threads.h80 typedef void (* DBusCondVarFreeFunction) (DBusCondVar *cond);
92 typedef void (* DBusCondVarWaitFunction) (DBusCondVar *cond,
101 typedef dbus_bool_t (* DBusCondVarWaitTimeoutFunction) (DBusCondVar *cond,
108 typedef void (* DBusCondVarWakeOneFunction) (DBusCondVar *cond);
114 typedef void (* DBusCondVarWakeAllFunction) (DBusCondVar *cond);
/external/webkit/JavaScriptCore/assembler/
H A DMacroAssembler.h98 void branchPtr(Condition cond, RegisterID op1, ImmPtr imm, Label target) argument
100 branchPtr(cond, op1, imm).linkTo(target, this);
103 void branch32(Condition cond, RegisterID op1, RegisterID op2, Label target) argument
105 branch32(cond, op1, op2).linkTo(target, this);
108 void branch32(Condition cond, RegisterID op1, Imm32 imm, Label target) argument
110 branch32(cond, op1, imm).linkTo(target, this);
113 void branch32(Condition cond, RegisterID left, Address right, Label target) argument
115 branch32(cond, left, right).linkTo(target, this);
118 void branch16(Condition cond, BaseIndex left, RegisterID right, Label target) argument
120 branch16(cond, lef
123 branchTestPtr(Condition cond, RegisterID reg, Label target) argument
229 setPtr(Condition cond, RegisterID left, Imm32 right, RegisterID dest) argument
265 branchPtr(Condition cond, RegisterID left, RegisterID right) argument
270 branchPtr(Condition cond, RegisterID left, ImmPtr right) argument
275 branchPtr(Condition cond, RegisterID left, Address right) argument
280 branchPtr(Condition cond, Address left, RegisterID right) argument
285 branchPtr(Condition cond, AbsoluteAddress left, RegisterID right) argument
290 branchPtr(Condition cond, Address left, ImmPtr right) argument
295 branchPtr(Condition cond, AbsoluteAddress left, ImmPtr right) argument
300 branchTestPtr(Condition cond, RegisterID reg, RegisterID mask) argument
305 branchTestPtr(Condition cond, RegisterID reg, Imm32 mask = Imm32(-1)) argument
310 branchTestPtr(Condition cond, Address address, Imm32 mask = Imm32(-1)) argument
315 branchTestPtr(Condition cond, BaseIndex address, Imm32 mask = Imm32(-1)) argument
321 branchAddPtr(Condition cond, RegisterID src, RegisterID dest) argument
326 branchSubPtr(Condition cond, Imm32 imm, RegisterID dest) argument
[all...]
H A DMacroAssemblerX86Common.h438 Jump branchDouble(DoubleCondition cond, FPRegisterID left, FPRegisterID right) argument
442 if (cond & DoubleConditionBitInvert)
447 if (cond == DoubleEqual) {
452 } else if (cond == DoubleNotEqualOrUnordered) {
461 ASSERT(!(cond & DoubleConditionBitSpecial));
462 return Jump(m_assembler.jCC(static_cast<X86Assembler::Condition>(cond & ~DoubleConditionBits)));
623 Jump branch32(Condition cond, RegisterID left, RegisterID right) argument
626 return Jump(m_assembler.jCC(x86Condition(cond)));
629 Jump branch32(Condition cond, RegisterID left, Imm32 right) argument
631 if (((cond
638 branch32(Condition cond, RegisterID left, Address right) argument
644 branch32(Condition cond, Address left, RegisterID right) argument
650 branch32(Condition cond, Address left, Imm32 right) argument
656 branch32(Condition cond, BaseIndex left, Imm32 right) argument
662 branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, Imm32 right) argument
667 branch16(Condition cond, BaseIndex left, RegisterID right) argument
673 branch16(Condition cond, BaseIndex left, Imm32 right) argument
681 branchTest32(Condition cond, RegisterID reg, RegisterID mask) argument
688 branchTest32(Condition cond, RegisterID reg, Imm32 mask = Imm32(-1)) argument
701 branchTest32(Condition cond, Address address, Imm32 mask = Imm32(-1)) argument
711 branchTest32(Condition cond, BaseIndex address, Imm32 mask = Imm32(-1)) argument
748 branchAdd32(Condition cond, RegisterID src, RegisterID dest) argument
755 branchAdd32(Condition cond, Imm32 imm, RegisterID dest) argument
762 branchAdd32(Condition cond, Imm32 src, Address dest) argument
769 branchAdd32(Condition cond, RegisterID src, Address dest) argument
776 branchAdd32(Condition cond, Address src, RegisterID dest) argument
783 branchMul32(Condition cond, RegisterID src, RegisterID dest) argument
790 branchMul32(Condition cond, Address src, RegisterID dest) argument
797 branchMul32(Condition cond, Imm32 imm, RegisterID src, RegisterID dest) argument
804 branchSub32(Condition cond, RegisterID src, RegisterID dest) argument
811 branchSub32(Condition cond, Imm32 imm, RegisterID dest) argument
818 branchSub32(Condition cond, Imm32 imm, Address dest) argument
825 branchSub32(Condition cond, RegisterID src, Address dest) argument
832 branchSub32(Condition cond, Address src, RegisterID dest) argument
839 branchOr32(Condition cond, RegisterID src, RegisterID dest) argument
874 set8(Condition cond, RegisterID left, RegisterID right, RegisterID dest) argument
880 set8(Condition cond, Address left, RegisterID right, RegisterID dest) argument
886 set8(Condition cond, RegisterID left, Imm32 right, RegisterID dest) argument
895 set32(Condition cond, RegisterID left, RegisterID right, RegisterID dest) argument
902 set32(Condition cond, RegisterID left, Imm32 right, RegisterID dest) argument
917 setTest8(Condition cond, Address address, Imm32 mask, RegisterID dest) argument
926 setTest32(Condition cond, Address address, Imm32 mask, RegisterID dest) argument
937 x86Condition(Condition cond) argument
[all...]
H A DMacroAssemblerARM.h362 Jump branch32(Condition cond, RegisterID left, RegisterID right, int useConstantPool = 0) argument
365 return Jump(m_assembler.jmp(ARMCondition(cond), useConstantPool));
368 Jump branch32(Condition cond, RegisterID left, Imm32 right, int useConstantPool = 0) argument
375 return Jump(m_assembler.jmp(ARMCondition(cond), useConstantPool));
378 Jump branch32(Condition cond, RegisterID left, Address right) argument
381 return branch32(cond, left, ARMRegisters::S1);
384 Jump branch32(Condition cond, Address left, RegisterID right) argument
387 return branch32(cond, ARMRegisters::S1, right);
390 Jump branch32(Condition cond, Address left, Imm32 right) argument
393 return branch32(cond, ARMRegister
396 branch32(Condition cond, BaseIndex left, Imm32 right) argument
402 branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, Imm32 right) argument
408 branch16(Condition cond, BaseIndex left, RegisterID right) argument
417 branch16(Condition cond, BaseIndex left, Imm32 right) argument
425 branchTest32(Condition cond, RegisterID reg, RegisterID mask) argument
432 branchTest32(Condition cond, RegisterID reg, Imm32 mask = Imm32(-1)) argument
443 branchTest32(Condition cond, Address address, Imm32 mask = Imm32(-1)) argument
449 branchTest32(Condition cond, BaseIndex address, Imm32 mask = Imm32(-1)) argument
470 branchAdd32(Condition cond, RegisterID src, RegisterID dest) argument
477 branchAdd32(Condition cond, Imm32 imm, RegisterID dest) argument
494 branchMul32(Condition cond, RegisterID src, RegisterID dest) argument
506 branchMul32(Condition cond, Imm32 imm, RegisterID src, RegisterID dest) argument
519 branchSub32(Condition cond, RegisterID src, RegisterID dest) argument
526 branchSub32(Condition cond, Imm32 imm, RegisterID dest) argument
533 branchOr32(Condition cond, RegisterID src, RegisterID dest) argument
569 set32(Condition cond, RegisterID left, RegisterID right, RegisterID dest) argument
576 set32(Condition cond, RegisterID left, Imm32 right, RegisterID dest) argument
583 set8(Condition cond, RegisterID left, RegisterID right, RegisterID dest) argument
589 set8(Condition cond, Address left, RegisterID right, RegisterID dest) argument
596 set8(Condition cond, RegisterID left, Imm32 right, RegisterID dest) argument
602 setTest32(Condition cond, Address address, Imm32 mask, RegisterID dest) argument
613 setTest8(Condition cond, Address address, Imm32 mask, RegisterID dest) argument
648 branch32(Condition cond, AbsoluteAddress left, RegisterID right) argument
654 branch32(Condition cond, AbsoluteAddress left, Imm32 right) argument
683 branchPtrWithPatch(Condition cond, RegisterID left, DataLabelPtr& dataLabel, ImmPtr initialRightValue = ImmPtr(0)) argument
690 branchPtrWithPatch(Condition cond, Address left, DataLabelPtr& dataLabel, ImmPtr initialRightValue = ImmPtr(0)) argument
805 branchDouble(DoubleCondition cond, FPRegisterID left, FPRegisterID right) argument
850 ARMCondition(Condition cond) argument
[all...]
/external/qemu/tcg/arm/
H A Dtcg-target.c259 static inline void tcg_out_bx(TCGContext *s, int cond, int rn) argument
261 tcg_out32(s, (cond << 28) | 0x012fff10 | rn);
264 static inline void tcg_out_b(TCGContext *s, int cond, int32_t offset) argument
266 tcg_out32(s, (cond << 28) | 0x0a000000 |
270 static inline void tcg_out_b_noaddr(TCGContext *s, int cond) argument
273 tcg_out8(s, (cond << 4) | 0x0a);
277 tcg_out8(s, (cond << 4) | 0x0a);
281 static inline void tcg_out_bl(TCGContext *s, int cond, int32_t offset) argument
283 tcg_out32(s, (cond << 28) | 0x0b000000 |
288 int cond, in
287 tcg_out_dat_reg(TCGContext *s, int cond, int opc, int rd, int rn, int rm, int shift) argument
294 tcg_out_dat_reg2(TCGContext *s, int cond, int opc0, int opc1, int rd0, int rd1, int rn0, int rn1, int rm0, int rm1, int shift) argument
313 tcg_out_dat_imm(TCGContext *s, int cond, int opc, int rd, int rn, int im) argument
320 tcg_out_movi32(TCGContext *s, int cond, int rd, int32_t arg) argument
348 tcg_out_mul32(TCGContext *s, int cond, int rd, int rs, int rm) argument
365 tcg_out_umull32(TCGContext *s, int cond, int rd0, int rd1, int rs, int rm) argument
382 tcg_out_smull32(TCGContext *s, int cond, int rd0, int rd1, int rs, int rm) argument
399 tcg_out_ld32_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
410 tcg_out_st32_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
421 tcg_out_ld32_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
428 tcg_out_st32_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
436 tcg_out_ld32_rwb(TCGContext *s, int cond, int rd, int rn, int rm) argument
443 tcg_out_st32_rwb(TCGContext *s, int cond, int rd, int rn, int rm) argument
450 tcg_out_ld16u_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
463 tcg_out_st16u_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
476 tcg_out_ld16u_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
483 tcg_out_st16u_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
490 tcg_out_ld16s_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
503 tcg_out_st16s_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
516 tcg_out_ld16s_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
523 tcg_out_st16s_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
530 tcg_out_ld8_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
541 tcg_out_st8_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
552 tcg_out_ld8_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
559 tcg_out_st8_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
566 tcg_out_ld8s_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
579 tcg_out_st8s_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
592 tcg_out_ld8s_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
599 tcg_out_st8s_r(TCGContext *s, int cond, int rd, int rn, int rm) argument
606 tcg_out_ld32u(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
616 tcg_out_st32(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
626 tcg_out_ld16u(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
636 tcg_out_ld16s(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
646 tcg_out_st16u(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
656 tcg_out_ld8u(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
666 tcg_out_ld8s(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
676 tcg_out_st8u(TCGContext *s, int cond, int rd, int rn, int32_t offset) argument
686 tcg_out_goto(TCGContext *s, int cond, uint32_t addr) argument
709 tcg_out_call(TCGContext *s, int cond, uint32_t addr) argument
741 tcg_out_callr(TCGContext *s, int cond, int arg) argument
754 tcg_out_goto_label(TCGContext *s, int cond, int label_index) argument
771 tcg_out_div_helper(TCGContext *s, int cond, const TCGArg *args, void *helper_div, void *helper_rem, int shift) argument
843 tcg_out_qemu_ld(TCGContext *s, int cond, const TCGArg *args, int opc) argument
1026 tcg_out_qemu_st(TCGContext *s, int cond, const TCGArg *args, int opc) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/joystick/dc/
H A DSDL_sysjoystick.c127 cont_cond_t cond,*prev_cond; local
131 if (cont_get_cond(addr,&cond)<0) return;
133 buttons = cond.buttons;
161 if (cond.joyx!=prev_cond->joyx)
162 SDL_PrivateJoystickAxis(joystick, 0, cond.joyx-128);
163 if (cond.joyy!=prev_cond->joyy)
164 SDL_PrivateJoystickAxis(joystick, 1, cond.joyy-128);
165 if (cond.rtrig!=prev_cond->rtrig)
166 SDL_PrivateJoystickAxis(joystick, 2, cond.rtrig);
167 if (cond
[all...]
/external/bluetooth/glib/tests/
H A Derrorcheck-mutex-test.c54 GCond* cond = g_cond_new (); local
55 g_cond_wait (cond, mutex);
62 GCond* cond = g_cond_new (); local
66 g_cond_wait (cond, mutex);
73 GCond* cond = g_cond_new (); local
74 g_cond_timed_wait (cond, mutex, NULL);
81 GCond* cond = g_cond_new (); local
85 g_cond_timed_wait (cond, mutex, NULL);
/external/v8/src/arm/
H A Dassembler-arm.h615 void b(int branch_offset, Condition cond = al);
616 void bl(int branch_offset, Condition cond = al);
618 void blx(Register target, Condition cond = al); // v5 and above
619 void bx(Register target, Condition cond = al); // v5 and above, plus v4t
622 void b(Label* L, Condition cond = al) {
623 b(branch_offset(L, cond == al), cond); local
625 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); } local
626 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); } local
627 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); } local
[all...]
H A Dassembler-thumb2.h615 void b(int branch_offset, Condition cond = al);
616 void bl(int branch_offset, Condition cond = al);
618 void blx(Register target, Condition cond = al); // v5 and above
619 void bx(Register target, Condition cond = al); // v5 and above, plus v4t
622 void b(Label* L, Condition cond = al) {
623 b(branch_offset(L, cond == al), cond); local
625 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); } local
626 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); } local
627 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); } local
[all...]
/external/skia/tests/
H A DTest.h35 void assertTrue(bool cond, const char desc[]) { argument
36 if (!cond) {
40 void assertFalse(bool cond, const char desc[]) { argument
41 if (cond) {
93 #define REPORTER_ASSERT(r, cond) \
95 if (!(cond)) { \
97 desc.printf("%s:%d: %s", __FILE__, __LINE__, #cond); \
/external/qemu/distrib/sdl-1.2.12/src/video/dc/
H A DSDL_dcevents.c68 mouse_cond_t cond; local
74 if ((addr = maple_first_mouse())==0 || mouse_get_cond(addr, &cond)<0) return;
76 buttons = cond.buttons^0xff;
77 if (cond.dz<0) buttons|=MOUSE_WHEELUP;
78 if (cond.dz>0) buttons|=MOUSE_WHEELDOWN;
80 if (cond.dx||cond.dy) SDL_PrivateMouseMotion(0,1,cond.dx,cond.dy);
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_mutex.h129 extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond *cond);
134 extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond *cond);
139 extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond *cond);
146 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut);
154 extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);
/external/elfcopy/
H A Ddebug.h10 #define FAILIF(cond, msg...) do { \
11 if (unlikely(cond)) { \
30 #define FAILIF(cond, msg...) do { \
31 if (unlikely(cond)) { \
42 #define FAILIF_LIBELF(cond, function) \
43 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));

Completed in 206 milliseconds

123456