Searched defs:cond (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_threads.h71 extern DECLEXPORT(void) crInitCondition(CRcondition *cond); variable
72 extern DECLEXPORT(void) crFreeCondition(CRcondition *cond); variable
73 extern DECLEXPORT(void) crWaitCondition(CRcondition *cond, CRmutex *mutex);
74 extern DECLEXPORT(void) crSignalCondition(CRcondition *cond); variable
84 pthread_cond_t cond; member in struct:__anon16135
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dthreads.c180 void crInitCondition(CRcondition *cond) argument
184 (void) cond;
186 int err = pthread_cond_init(cond, NULL);
194 void crFreeCondition(CRcondition *cond) argument
198 (void) cond;
200 int err = pthread_cond_destroy(cond);
211 void crWaitCondition(CRcondition *cond, CRmutex *mutex) argument
215 (void) cond;
218 pthread_cond_wait(cond, mutex);
223 void crSignalCondition(CRcondition *cond) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dpralarm.c69 PRCondVar *cond; /* condition that used to wait */ member in struct:PRAlarm
151 (void)PR_WaitCondVar(alarm->cond, PR_INTERVAL_NO_TIMEOUT);
161 (void)PR_WaitCondVar(alarm->cond, pause); /* dally */
192 if ((alarm->cond = PR_NewCondVar(alarm->lock)) == NULL) goto done;
204 if (alarm->cond != NULL) PR_DestroyCondVar(alarm->cond);
216 rv = PR_NotifyCondVar(alarm->cond);
223 PR_DestroyCondVar(alarm->cond);
257 PR_NotifyCondVar(alarm->cond);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/
H A Dranfile.cpp86 HammerData(RCLock* lock, RCCondition *cond, PRUint32 clip);
106 Hammer(RCThread::Scope scope, RCLock* lock, RCCondition *cond, PRUint32 clip);
151 RCThread::Scope scope, RCLock* lock, RCCondition *cond, PRUint32 clip):
152 HammerData(lock, cond, clip), RCThread(scope, RCThread::joinable, 0) { }
156 HammerData::HammerData(RCLock* lock, RCCondition *cond, PRUint32 clip) argument
159 cv = cond;
150 Hammer( RCThread::Scope scope, RCLock* lock, RCCondition *cond, PRUint32 clip) argument
/vbox/src/VBox/Devices/Audio/
H A Daudio.c230 int audio_bug (const char *funcname, int cond) argument
232 if (cond) {
259 return cond;
284 int cond; local
288 cond = !nmemb || !size;
289 cond |= nmemb < 0;
290 cond |= len < size;
292 if (audio_bug ("audio_calloc", cond)) {
/vbox/src/VBox/Frontends/VBoxShell/
H A Dvboxshell.py656 def cond(c, v1, v2): function
669 print " name=%s host=%s %s %s" % (sf.name, colPath(ctx, sf.hostPath), cond(sf.accessible, "accessible", "not accessible"), cond(sf.writable, "writable", "read-only"))
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/linking/
H A Dprlink.c175 short cond; member in struct:__anon17226
2014 if (($VMS_STATUS_SUCCESS(status)) && ($VMS_STATUS_SUCCESS(iosb.cond))) {
/vbox/src/recompiler/tcg/i386/
H A Dtcg-target.c855 static void tcg_out_brcond32(TCGContext *s, TCGCond cond, argument
860 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index, small);
864 static void tcg_out_brcond64(TCGContext *s, TCGCond cond, argument
869 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index, small);
955 static void tcg_out_setcond32(TCGContext *s, TCGCond cond, TCGArg dest, argument
959 tcg_out_modrm(s, OPC_SETCC | tcg_cond_to_jcc[cond], 0, dest);
964 static void tcg_out_setcond64(TCGContext *s, TCGCond cond, TCGArg dest, argument
968 tcg_out_modrm(s, OPC_SETCC | tcg_cond_to_jcc[cond], 0, dest);
999 clear the destination first, jump if cond false, and emit an
/vbox/src/recompiler/tcg/
H A Dtcg-op.h603 static inline void tcg_gen_brcond_i32(TCGCond cond, TCGv_i32 arg1, argument
606 tcg_gen_op4ii_i32(INDEX_op_brcond_i32, arg1, arg2, cond, label_index);
609 static inline void tcg_gen_brcondi_i32(TCGCond cond, TCGv_i32 arg1, argument
613 tcg_gen_brcond_i32(cond, arg1, t0, label_index);
617 static inline void tcg_gen_setcond_i32(TCGCond cond, TCGv_i32 ret, argument
620 tcg_gen_op4i_i32(INDEX_op_setcond_i32, ret, arg1, arg2, cond);
623 static inline void tcg_gen_setcondi_i32(TCGCond cond, TCGv_i32 ret, argument
627 tcg_gen_setcond_i32(cond, ret, arg1, t0);
947 static inline void tcg_gen_brcond_i64(TCGCond cond, TCGv_i64 arg1, argument
952 TCGV_HIGH(arg2), cond, label_inde
955 tcg_gen_setcond_i64(TCGCond cond, TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2) argument
1212 tcg_gen_brcond_i64(TCGCond cond, TCGv_i64 arg1, TCGv_i64 arg2, int label_index) argument
1218 tcg_gen_setcond_i64(TCGCond cond, TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2) argument
1363 tcg_gen_brcondi_i64(TCGCond cond, TCGv_i64 arg1, int64_t arg2, int label_index) argument
1371 tcg_gen_setcondi_i64(TCGCond cond, TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2) argument
[all...]
/vbox/src/recompiler/target-i386/
H A Dtranslate.c1125 int inv, jcc_op, size, cond; local
1191 cond = inv ? TCG_COND_GEU : TCG_COND_LTU;
1194 cond = inv ? TCG_COND_GTU : TCG_COND_LEU;
1219 tcg_gen_brcond_tl(cond, cpu_tmp4, t0, l1);
1223 cond = inv ? TCG_COND_GE : TCG_COND_LT;
1226 cond = inv ? TCG_COND_GT : TCG_COND_LE;
1251 tcg_gen_brcond_tl(cond, cpu_tmp4, t0, l1);
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...

Completed in 140 milliseconds