| /vbox/src/VBox/GuestHost/OpenGL/util/ |
| H A D | threads.c | 180 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/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
| H A D | misc.h | 425 #define __BUG_WARN_MSG(cond, with_msg, ...) \ 426 do { if (cond) { \ 427 ErrorFSigSafe("BUG: triggered 'if (" #cond ")'\n"); \ 434 #define BUG_WARN_MSG(cond, ...) \ 435 __BUG_WARN_MSG(cond, 1, __VA_ARGS__) 437 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL) 439 #define BUG_RETURN(cond) \ 440 do { if (cond) { __BUG_WARN_MSG(cond, [all...] |
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
| H A D | misc.h | 425 #define __BUG_WARN_MSG(cond, with_msg, ...) \ 426 do { if (cond) { \ 427 ErrorFSigSafe("BUG: triggered 'if (" #cond ")'\n"); \ 434 #define BUG_WARN_MSG(cond, ...) \ 435 __BUG_WARN_MSG(cond, 1, __VA_ARGS__) 437 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL) 439 #define BUG_RETURN(cond) \ 440 do { if (cond) { __BUG_WARN_MSG(cond, [all...] |
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/ |
| H A D | misc.h | 391 #define __BUG_WARN_MSG(cond, with_msg, ...) \ 392 do { if (cond) { \ 393 ErrorFSigSafe("BUG: triggered 'if (" #cond ")'\n"); \ 400 #define BUG_WARN_MSG(cond, ...) \ 401 __BUG_WARN_MSG(cond, 1, __VA_ARGS__) 403 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL) 405 #define BUG_RETURN(cond) \ 406 do { if (cond) { __BUG_WARN_MSG(cond, [all...] |
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/ |
| H A D | misc.h | 392 #define __BUG_WARN_MSG(cond, with_msg, ...) \ 393 do { if (cond) { \ 394 ErrorFSigSafe("BUG: triggered 'if (" #cond ")'\n"); \ 401 #define BUG_WARN_MSG(cond, ...) \ 402 __BUG_WARN_MSG(cond, 1, __VA_ARGS__) 404 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL) 406 #define BUG_RETURN(cond) \ 407 do { if (cond) { __BUG_WARN_MSG(cond, [all...] |
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/ |
| H A D | misc.h | 421 #define __BUG_WARN_MSG(cond, with_msg, ...) \ 422 do { if (cond) { \ 423 ErrorFSigSafe("BUG: triggered 'if (" #cond ")'\n"); \ 430 #define BUG_WARN_MSG(cond, ...) \ 431 __BUG_WARN_MSG(cond, 1, __VA_ARGS__) 433 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL) 435 #define BUG_RETURN(cond) \ 436 do { if (cond) { __BUG_WARN_MSG(cond, [all...] |
| /vbox/src/VBox/GuestHost/OpenGL/include/ |
| H A D | cr_threads.h | 71 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/libs/xpcom18a4/xpcom/typelib/xpt/tests/ |
| H A D | PrimitiveTest.c | 50 #define TRY_(msg, cond, silent) \ 51 if ((cond) && !silent) { \ 58 #define TRY(msg, cond) TRY_(msg, cond, 0) 59 #define TRY_Q(msg, cond) TRY_(msg, cond, 1);
|
| H A D | SimpleTypeLib.c | 50 #define TRY_(msg, cond, silent) \ 51 if ((cond) && !silent) { \ 58 #define TRY(msg, cond) TRY_(msg, cond, 0) 59 #define TRY_Q(msg, cond) TRY_(msg, cond, 1);
|
| /vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
| H A D | pralarm.c | 69 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/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseCpuLib/Ipf/ |
| H A D | CpuFlushTlb.s | 42 br.cond.sptk LoopPredicate 54 (p6) br.cond.sptk LoopOuter
|
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/ |
| H A D | misc.h | 365 #define __BUG_WARN_MSG(cond, with_msg, ...) \ 366 do { if (cond) { \ 367 ErrorF("BUG: triggered 'if (" #cond ")'\n"); \ 374 #define BUG_WARN_MSG(cond, ...) \ 375 __BUG_WARN_MSG(cond, 1, __VA_ARGS__) 377 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL)
|
| /vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/ |
| H A D | ranfile.cpp | 86 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/libs/libxml2-2.6.31/python/ |
| H A D | generator.py | 126 elif tag == 'cond': 180 elif tag == 'cond': 188 def function(name, desc, ret, args, file, cond): 189 functions[name] = (desc, ret, args, file, cond) 402 (desc, ret, args, file, cond) = functions[name] 498 if cond != None and cond != "": 499 include.write("#if %s\n" % cond) 500 export.write("#if %s\n" % cond) 501 output.write("#if %s\n" % cond) [all...] |
| /vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
| H A D | os_Linux_ia64.s | 70 (p6) br.cond.dptk .L3
|
| /vbox/src/recompiler/ |
| H A D | osdep.h | 38 #define assert(cond) Assert(cond)
|
| /vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Modules/zlib/ |
| H A D | zutil.h | 245 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} 252 # define Assert(cond,msg)
|
| /vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Modules/zlib/ |
| H A D | zutil.h | 255 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} 262 # define Assert(cond,msg)
|
| /vbox/src/libs/zlib-1.2.6/ |
| H A D | zutil.h | 222 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} 229 # define Assert(cond,msg)
|
| /vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
| H A D | res_send.c | 134 # define Dprint(cond, args) /*empty*/ 135 # define DprintQ(cond, args, query, size) /*empty*/ 139 # define Dprint(cond, args) if (cond) {fprintf args;} else {} 140 # define DprintQ(cond, args, query, size) if (cond) {\
|
| /vbox/src/recompiler/tcg/ |
| H A D | tcg-op.h | 603 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/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/Ipf/ |
| H A D | AsmFuncs.s | 71 //(p14) br.cond.dptk.few $L143#;; 72 (p14) br.cond.dptk.few LoopBack;; 570 (p14) br.cond.sptk.few GetSlot2;; // get slot 2 572 (p14) br.cond.sptk.few GetSlot1;; // get slot 1 621 (p14) br.cond.sptk.few SetSlot2;; // set slot 2 623 (p14) br.cond.sptk.few SetSlot1;; // set slot 1 1241 (p7) br.cond.dpnt.few DO_CHAIN;; 1253 br.cond.sptk.few b0;; 1283 br.cond.sptk.few b0 1308 (p15) br.cond [all...] |
| /vbox/src/VBox/Devices/Audio/ |
| H A D | audio.c | 230 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)) {
|
| H A D | audio_int.h | 242 int audio_bug (const char *funcname, int cond);
|
| /vbox/src/recompiler/tcg/i386/ |
| H A D | tcg-target.c | 855 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
|