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

1 2 34 5 6 7 8 91011>>

  /prebuilt/linux-x86/sdl/include/SDL/
SDL_mutex.h 129 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);
  /prebuilt/windows/sdl/host/include/SDL/
SDL_mutex.h 134 extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond *cond);
139 extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond *cond);
144 extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond *cond);
150 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut);
158 extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);
  /prebuilt/windows/sdl/include/SDL/
SDL_mutex.h 129 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/v8/src/arm/
macro-assembler-arm.cc 72 void MacroAssembler::Jump(Register target, Condition cond) {
74 bx(target, cond);
76 mov(pc, Operand(target), LeaveCC, cond);
82 Condition cond) {
84 mov(ip, Operand(target, rmode), LeaveCC, cond);
85 bx(ip, cond);
87 mov(pc, Operand(target, rmode), LeaveCC, cond);
93 Condition cond) {
95 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
100 Condition cond) {
103 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
136 Call(reinterpret_cast<intptr_t>(target), rmode, cond); local
144 Call(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
    [all...]
  /external/bluetooth/bluez/plugins/
echo.c 44 GIOCondition cond, gpointer data)
50 if (cond & (G_IO_HUP | G_IO_ERR | G_IO_NVAL))
63 GIOCondition cond, gpointer data)
netlink.c 49 GIOCondition cond, void *user_data)
53 if (cond & (G_IO_ERR | G_IO_HUP | G_IO_NVAL))
  /system/extras/tests/bionic/libc/bionic/
test_mutex.c 44 #define assert(cond) do { if ( !(cond) ) panic( "%s:%d: assertion failure: %s\n", __FILE__, __LINE__, #cond ); } while (0)
  /external/libffi/src/arm/
sysv.S 119 .macro RETLDM regs=, cond=, dirn=ia
122 ldr\cond lr, [sp], #4
124 ldm\cond\dirn sp!, {\regs, lr}
126 bx\cond lr
129 ldr\cond pc, [sp], #4
131 ldm\cond\dirn sp!, {\regs, pc}
  /system/core/sh/
error.c 154 exverror(int cond, const char *msg, va_list ap)
161 TRACE(("exverror(%d, \"", cond));
165 TRACE(("exverror(%d, NULL) pid=%d\n", cond, getpid()));
171 exraise(cond);
189 exerror(int cond, const char *msg, ...)
194 exverror(cond, msg, ap);
  /bionic/linker/
debugger.c 44 #define RETRY_ON_EINTR(ret,cond) \
46 ret = (cond); \
  /external/bluetooth/glib/tests/
gio-test.c 115 GIOCondition cond,
123 (cond & G_IO_ERR) ? " ERR" : "",
124 (cond & G_IO_HUP) ? " HUP" : "",
125 (cond & G_IO_IN) ? " IN" : "",
126 (cond & G_IO_PRI) ? " PRI" : "");
129 if (cond & (G_IO_ERR | G_IO_HUP))
135 if (cond & G_IO_IN)
231 GIOCondition cond,
node-test.c 47 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
50 g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
52 g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
  /hardware/qcom/gps/loc_api/libloc_api-rpc/rpc_inc/
debug.h 49 #define FAILIF(cond, msg...) do { \
50 if (__builtin_expect (cond, 0)) { \
  /external/bluetooth/bluez/common/
btio.c 117 static gboolean accept_cb(GIOChannel *io, GIOCondition cond,
124 if ((cond & G_IO_NVAL) || check_nval(io))
127 if (cond & (G_IO_HUP | G_IO_ERR))
138 static gboolean connect_cb(GIOChannel *io, GIOCondition cond,
145 if ((cond & G_IO_NVAL) || check_nval(io))
148 if (cond & G_IO_OUT) {
159 } else if (cond & (G_IO_HUP | G_IO_ERR))
171 static gboolean server_cb(GIOChannel *io, GIOCondition cond,
179 if ((cond & G_IO_NVAL) || check_nval(io))
210 GIOCondition cond; local
227 GIOCondition cond; local
243 GIOCondition cond; local
    [all...]
  /external/openssl/ssl/
ssltest.c     [all...]
  /external/bluetooth/bluez/input/
fakehid.h 32 gboolean (*event) (GIOChannel *chan, GIOCondition cond, gpointer data);
  /external/qemu/
cbuffer.c 22 # define ASSERT(cond,fmt,...) ({ if (!(cond)) { fprintf(stderr, fmt, __VA_ARGS__); assert(cond); } })
24 # define ASSERT(cond,fmt,...) ((void)0)
  /external/skia/include/ports/
SkStream_Win.h 30 /** \cond ZERO */
  /external/skia/include/xml/
SkBML_WXMLParser.h 32 /** @cond UNIT_TEST */
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Debug.h 76 #define OMX_ASSERT(COND) ((!(COND))?OMX_FATALPRINT(0,"OMX_ASSERT("#COND")"),abort():0)
78 #define OMX_ASSERT(COND)
  /external/bluetooth/glib/gthread/
gthread-posix.c 218 g_cond_timed_wait_posix_impl (GCond * cond,
226 g_return_val_if_fail (cond != NULL, FALSE);
231 result = pthread_cond_wait ((pthread_cond_t *)cond,
242 result = pthread_cond_timedwait ((pthread_cond_t *) cond,
259 g_cond_free_posix_impl (GCond * cond)
261 posix_check_cmd (pthread_cond_destroy ((pthread_cond_t *) cond));
262 g_free (cond);
  /external/openssl/crypto/des/
speed.c 220 #define COND(d) (count != (d))
223 #define COND(c) (run)
231 for (count=0,run=1; COND(ca); count++)
244 for (count=0,run=1; COND(cb); count++)
263 for (count=0,run=1; COND(cc); count++)
280 for (count=0,run=1; COND(cd); count++)
299 for (count=0,run=1; COND(ce); count++)
  /external/dbus/dbus/
dbus-threads.h 80 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);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 116 static NJ_INT16 get_cand_by_sequential(NJ_CLASS *iwnn, NJ_SEARCH_CONDITION *cond, NJ_SEARCH_LOCATION_SET *loctset, NJ_UINT8 search_pattern, NJ_UINT8 comp_flg);
117 static NJ_INT16 get_cand_by_evaluate(NJ_CLASS *iwnn, NJ_SEARCH_CONDITION *cond, NJ_SEARCH_LOCATION_SET *loctset, NJ_UINT8 search_pattern);
118 static NJ_INT16 get_cand_by_evaluate2(NJ_CLASS *iwnn, NJ_SEARCH_CONDITION *cond, NJ_SEARCH_LOCATION_SET *loctset, NJ_UINT8 search_pattern, NJ_UINT16 hIdx);
924 static NJ_INT16 get_cand_by_sequential(NJ_CLASS *iwnn, NJ_SEARCH_CONDITION *cond,
940 cond->yomi, cond->ylen, &from, &to, &forward_flag);
964 ptr = get_search_index_address(loctset->loct.handle, cond->operation);
971 ret = str_que_cmp(iwnn, loctset->loct.handle, cond->yomi, cond->ylen, que_id, 1);
979 ret = str_que_cmp(iwnn, loctset->loct.handle, cond->yomi, cond->ylen, que_id, 2)
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 617 PassRefPtr<Label> BytecodeGenerator::emitJumpIfTrue(RegisterID* cond, Label* target)
626 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
643 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
659 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount())
    [all...]

Completed in 286 milliseconds

1 2 34 5 6 7 8 91011>>