HomeSort by relevance Sort by last modified time
    Searched full:cond (Results 26 - 50 of 407) sorted by null

12 3 4 5 6 7 8 91011>>

  /build/tools/isprelinked/
debug.h 10 #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()));
  /build/tools/lsd/
debug.h 10 #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()));
  /build/tools/soslim/
debug.h 10 #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()));
  /development/tools/yuv420sp2rgb/
debug.h 12 #define FAILIF(cond, msg...) do { \
13 if (unlikely(cond)) { \
32 #define FAILIF(cond, msg...) do { \
33 if (unlikely(cond)) { \
44 #define FAILIF_LIBELF(cond, function) \
45 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));
  /external/elfcopy/
debug.h 10 #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()));
  /external/bluetooth/glib/gthread/
gthread-win32.c 194 g_cond_signal_win32_impl (GCond * cond)
196 EnterCriticalSection (&cond->lock);
198 if (cond->array->len > 0)
200 SetEvent (g_ptr_array_index (cond->array, 0));
201 g_ptr_array_remove_index (cond->array, 0);
204 LeaveCriticalSection (&cond->lock);
208 g_cond_broadcast_win32_impl (GCond * cond)
211 EnterCriticalSection (&cond->lock);
213 for (i = 0; i < cond->array->len; i++)
214 SetEvent (g_ptr_array_index (cond->array, i))
    [all...]
  /external/clearsilver/util/
ulocks.h 130 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...]
ulocks.c 154 NEOERR *cCreate(pthread_cond_t *cond)
158 if((err = pthread_cond_init(cond, NULL))) {
166 void cDestroy(pthread_cond_t *cond)
168 pthread_cond_destroy(cond);
173 NEOERR *cWait(pthread_cond_t *cond, pthread_mutex_t *mutex)
177 if((err = pthread_cond_wait(cond, mutex)))
183 NEOERR *cBroadcast(pthread_cond_t *cond)
187 if((err = pthread_cond_broadcast(cond)))
194 NEOERR *cSignal(pthread_cond_t *cond)
198 if((err = pthread_cond_signal(cond)))
    [all...]
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerARMv7.h 548 Jump branchDouble(DoubleCondition cond, FPRegisterID left, FPRegisterID right)
553 if (cond == DoubleNotEqual) {
560 if (cond == DoubleEqualOrUnordered) {
569 return makeBranch(cond);
722 Jump branch32(Condition cond, RegisterID left, RegisterID right)
725 return Jump(makeBranch(cond));
728 Jump branch32(Condition cond, RegisterID left, Imm32 right)
731 return Jump(makeBranch(cond));
734 Jump branch32(Condition cond, RegisterID left, Address right)
737 return branch32(cond, left, dataTempRegister)
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndapi.c 54 if (cursor->cond.ds == NULL) {
61 dicinfo = &(cursor->cond.ds->dic[i]);
84 if (cursor->cond.yomi == NULL) {
89 if (cursor->cond.ylen > NJ_MAX_LEN) {
94 if (cursor->cond.operation == NJ_CUR_OP_LINK) {
96 } else if (cursor->cond.kanji != NULL) {
98 if (nj_strlen(cursor->cond.kanji) > NJ_MAX_RESULT_LEN) {
103 switch (cursor->cond.operation) {
112 switch (cursor->cond.mode) {
153 ret = njd_b_search_word(&cursor->cond, loctset)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/dc/
SDL_sysjoystick.c 127 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.ltrig!=prev_cond->ltrig
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 510 int cond = instr & CondMask; local
513 if (cond == nv) {
522 switch (cond) {
670 Condition cond = static_cast<Condition>(instr & CondMask); local
672 ldr(rd, MemOperand(pc, 0), cond);
674 ldr(ip, MemOperand(pc, 0), cond);
838 void Assembler::b(int branch_offset, Condition cond) {
842 emit(cond | B27 | B25 | (imm24 & Imm24Mask));
844 if (cond == al)
850 void Assembler::bl(int branch_offset, Condition cond) {
    [all...]
assembler-thumb2.cc 490 int cond = instr & CondMask; local
493 if (cond == nv) {
502 switch (cond) {
650 Condition cond = static_cast<Condition>(instr & CondMask); local
652 ldr(rd, MemOperand(pc, 0), cond);
654 ldr(ip, MemOperand(pc, 0), cond);
818 void Assembler::b(int branch_offset, Condition cond) {
822 emit(cond | B27 | B25 | (imm24 & Imm24Mask));
824 if (cond == al)
830 void Assembler::bl(int branch_offset, Condition cond) {
    [all...]
assembler-arm.h 615 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...]
assembler-thumb2.h 615 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...]
  /system/core/include/cutils/
log.h 84 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
88 #define LOGV_IF(cond, ...) ((void)0)
90 #define LOGV_IF(cond, ...) \
91 ( (CONDITION(cond)) \
105 #define LOGD_IF(cond, ...) \
106 ( (CONDITION(cond)) \
119 #define LOGI_IF(cond, ...) \
120 ( (CONDITION(cond)) \
133 #define LOGW_IF(cond, ...)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dc/
SDL_dcevents.c 68 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/dbus/dbus/
dbus-sysdeps-pthread.c 42 pthread_cond_t cond; /**< the condition */ member in struct:__anon1573
189 result = pthread_cond_init (&pcond->cond, NULL);
205 _dbus_pthread_condvar_free (DBusCondVar *cond)
207 DBusCondVarPThread *pcond = DBUS_COND_VAR_PTHREAD (cond);
209 PTHREAD_CHECK ("pthread_cond_destroy", pthread_cond_destroy (&pcond->cond));
215 _dbus_pthread_condvar_wait (DBusCondVar *cond,
219 DBusCondVarPThread *pcond = DBUS_COND_VAR_PTHREAD (cond);
227 PTHREAD_CHECK ("pthread_cond_wait", pthread_cond_wait (&pcond->cond, &pmutex->lock));
234 _dbus_pthread_condvar_wait_timeout (DBusCondVar *cond,
239 DBusCondVarPThread *pcond = DBUS_COND_VAR_PTHREAD (cond);
    [all...]
dbus-threads.c 220 _dbus_condvar_free (DBusCondVar *cond)
222 if (cond && thread_functions.condvar_free)
223 (* thread_functions.condvar_free) (cond);
250 _dbus_condvar_wait (DBusCondVar *cond,
253 if (cond && mutex && thread_functions.condvar_wait)
254 (* thread_functions.condvar_wait) (cond, mutex);
263 * @param cond the condition variable
269 _dbus_condvar_wait_timeout (DBusCondVar *cond,
273 if (cond && mutex && thread_functions.condvar_wait)
274 return (* thread_functions.condvar_wait_timeout) (cond, mutex, timeout_milliseconds)
    [all...]
  /bootable/recovery/minzip/
Log.h 56 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
60 #define LOGV_IF(cond, ...) ((void)0)
62 #define LOGV_IF(cond, ...) \
63 ( (CONDITION(cond)) \
80 #define LOGD_IF(cond, ...) \
81 ( (CONDITION(cond)) \
94 #define LOGI_IF(cond, ...) \
95 ( (CONDITION(cond)) \
108 #define LOGW_IF(cond, ...)
    [all...]
  /external/qemu/audio/
audio_pt_int.h 9 pthread_cond_t cond; member in struct:audio_pt
  /sdk/emulator/qtools/
armdis.cpp 35 static const char* cond_to_str(int cond) {
36 return cond_names[cond];
147 uint8_t cond = (insn >> 28) & 0xf; local
189 opname, cond_to_str(cond), sbit_str, rd_str, rn_str, immed, immed);
205 opname, cond_to_str(cond), sbit_str, rd_str, rn_str, rm);
212 opname, cond_to_str(cond), sbit_str, rd_str, rn_str, rm,
219 opname, cond_to_str(cond), sbit_str, rd_str, rn_str, rm);
225 opname, cond_to_str(cond), sbit_str, rd_str, rn_str, rm,
232 uint8_t cond = (insn >> 28) & 0xf; local
243 sprintf(ptr, "%s%s\t0x%x", opname, cond_to_str(cond), addr)
249 uint8_t cond = (insn >> 28) & 0xf; local
264 uint8_t cond = (insn >> 28) & 0xf; local
275 uint8_t cond = (insn >> 28) & 0xf; local
325 uint8_t cond = (insn >> 28) & 0xf; local
423 uint8_t cond = (insn >> 28) & 0xf; local
481 uint8_t cond = (insn >> 28) & 0xf; local
496 uint8_t cond = (insn >> 28) & 0xf; local
511 uint8_t cond = (insn >> 28) & 0xf; local
526 uint8_t cond = (insn >> 28) & 0xf; local
540 uint8_t cond = (insn >> 28) & 0xf; local
552 uint8_t cond = (insn >> 28) & 0xf; local
611 uint8_t cond = (insn >> 28) & 0xf; local
620 uint8_t cond = (insn >> 28) & 0xf; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 53 private final Condition cond; field in class:WaitingThread
69 * @param cond the condition for which to wait
73 public WaitingThread(Condition cond, RouteSpecificPool pool) {
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.await()
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 50 void MacroAssembler::Jump(Register target, Condition cond,
52 Jump(Operand(target), cond, r1, r2); local
57 Condition cond, Register r1, const Operand& r2) {
58 Jump(Operand(target), cond, r1, r2); local
63 Condition cond, Register r1, const Operand& r2) {
65 Jump(reinterpret_cast<intptr_t>(target), rmode, cond, r1, r2); local
70 Condition cond, Register r1, const Operand& r2) {
72 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
77 Condition cond, Register r1, const Operand& r2) {
78 Call(Operand(target), cond, r1, r2) local
84 Call(Operand(target), cond, r1, r2); local
91 Call(reinterpret_cast<intptr_t>(target), rmode, cond, r1, r2); local
98 Call(reinterpret_cast<intptr_t>(code.location()), rmode, cond, r1, r2); local
103 Jump(Operand(ra), cond, r1, r2); local
    [all...]
  /external/bluetooth/glib/glib/
gthread.h 86 void (*cond_signal) (GCond *cond);
87 void (*cond_broadcast) (GCond *cond);
88 void (*cond_wait) (GCond *cond,
90 gboolean (*cond_timed_wait) (GCond *cond,
93 void (*cond_free) (GCond *cond);
122 /* initializes the mutex/cond/private implementation for glib, might
177 # define g_cond_wait(cond, mutex) \
178 G_THREAD_CF (cond_wait, (void)0, (cond, mutex))
179 # define g_cond_timed_wait(cond, mutex, abs_time) \
180 G_THREAD_CF (cond_timed_wait, TRUE, (cond, mutex, abs_time)
    [all...]

Completed in 94 milliseconds

12 3 4 5 6 7 8 91011>>