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

1 2 3 4 56 7 8 91011>>

  /external/bluetooth/bluez/input/
fakehid.c 212 static gboolean ps3remote_event(GIOChannel *chan, GIOCondition cond,
221 if (cond & G_IO_NVAL)
224 if (cond & (G_IO_HUP | G_IO_ERR)) {
  /dalvik/vm/
Sync.h 159 int dvmRelativeCondWait(pthread_cond_t* cond, pthread_mutex_t* mutex,
  /dalvik/vm/mterp/armv5te/
OP_CMP_LONG.S 45 @ Want to cond code the next mov so we can avoid branch, but don't see it;
  /external/bluetooth/bluez/network/
connection.c 148 static gboolean bnep_watchdog_cb(GIOChannel *chan, GIOCondition cond,
225 static gboolean bnep_setup_cb(GIOChannel *chan, GIOCondition cond,
237 if (cond & G_IO_NVAL)
240 if (cond & (G_IO_HUP | G_IO_ERR)) {
  /external/bluetooth/glib/tests/
testgdate.c 19 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
23 g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
25 g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 326 PassRefPtr<Label> emitJumpIfTrue(RegisterID* cond, Label* target);
327 PassRefPtr<Label> emitJumpIfFalse(RegisterID* cond, Label* target);
328 PassRefPtr<Label> emitJumpIfNotFunctionCall(RegisterID* cond, Label* target);
329 PassRefPtr<Label> emitJumpIfNotFunctionApply(RegisterID* cond, Label* target);
  /ndk/build/platforms/android-3/arch-arm/usr/include/android/
log.h 116 void __android_log_assert(const char *cond, const char *tag,
  /ndk/build/platforms/android-4/arch-arm/usr/include/android/
log.h 116 void __android_log_assert(const char *cond, const char *tag,
  /ndk/build/platforms/android-5/arch-arm/usr/include/android/
log.h 116 void __android_log_assert(const char *cond, const char *tag,
  /ndk/build/platforms/android-5/arch-x86/usr/include/android/
log.h 116 void __android_log_assert(const char *cond, const char *tag,
  /ndk/build/platforms/android-8/arch-arm/usr/include/android/
log.h 116 void __android_log_assert(const char *cond, const char *tag,
  /ndk/build/platforms/android-8/arch-x86/usr/include/android/
log.h 116 void __android_log_assert(const char *cond, const char *tag,
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
gimple.def 231 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY>
236 for (INDEX = INITIAL; INDEX COND FINAL; INDEX {+=,-=} INCR)
252 COND is the condition code for the controlling predicate. It must
259 INIT, COND, and INCR that are technically part of the OMP_FOR
  /system/core/include/android/
log.h 116 void __android_log_assert(const char *cond, const char *tag,
  /packages/apps/Camera/src/com/android/camera/
Util.java 176 public static void Assert(boolean cond) {
177 if (!cond) {
  /external/bluetooth/glib/glib/
gthread.c 144 /* mutex and cond creation works without g_threads_got_initialized */
148 /* we may only create mutex and cond in here */
794 g_static_rw_lock_wait (GCond** cond, GStaticMutex* mutex)
796 if (!*cond)
797 *cond = g_cond_new ();
798 g_cond_wait (*cond, g_static_mutex_get_mutex (mutex));
gmain.c 98 GCond *cond; member in struct:_GMainWaiter
122 GCond *cond; member in struct:_GMainContext
391 if (context->cond != NULL)
392 g_cond_free (context->cond);
    [all...]
  /external/qemu/tcg/
tcg-op.h 552 static inline void tcg_gen_brcond_i32(int cond, TCGv_i32 arg1, TCGv_i32 arg2,
555 tcg_gen_op4ii_i32(INDEX_op_brcond_i32, arg1, arg2, cond, label_index);
558 static inline void tcg_gen_brcondi_i32(int cond, TCGv_i32 arg1, int32_t arg2,
562 tcg_gen_brcond_i32(cond, arg1, t0, label_index);
820 static inline void tcg_gen_brcond_i64(int cond, TCGv_i64 arg1, TCGv_i64 arg2,
825 TCGV_HIGH(arg2), cond, label_index);
1052 static inline void tcg_gen_brcond_i64(int cond, TCGv_i64 arg1, TCGv_i64 arg2,
1055 tcg_gen_op4ii_i64(INDEX_op_brcond_i64, arg1, arg2, cond, label_index);
    [all...]
README 141 * brcond_i32/i64 cond, t0, t1, label
143 Conditional jump if t0 cond t1 is true. cond can be:
  /external/bluetooth/bluez/audio/
gateway.c 121 static gboolean rfcomm_ag_data_cb(GIOChannel *chan, GIOCondition cond,
425 static gboolean rfcomm_ag_data_cb(GIOChannel *chan, GIOCondition cond,
438 if (cond & G_IO_NVAL)
443 if (cond & (G_IO_ERR | G_IO_HUP)) {
492 static gboolean sco_io_cb(GIOChannel *chan, GIOCondition cond,
497 if (cond & G_IO_NVAL)
500 if (cond & (G_IO_ERR | G_IO_HUP)) {
  /external/v8/src/
ast.h 358 void Initialize(Expression* cond, Statement* body) {
360 cond_ = cond;
365 Expression* cond() const { return cond_; } function in class:v8::internal::DoWhileStatement
386 void Initialize(Expression* cond, Statement* body) {
388 cond_ = cond;
393 Expression* cond() const { return cond_; } function in class:v8::internal::WhileStatement
418 Expression* cond,
423 cond_ = cond;
430 Expression* cond() const { return cond_; } function in class:v8::internal::ForStatement
    [all...]
codegen.cc 433 Expression* cond) {
434 if (cond == NULL) return ALWAYS_TRUE;
436 Literal* lit = cond->AsLiteral();
  /external/openssl/crypto/des/
des_opts.c 405 for (count=0,run=1; COND(cb); count++) \
469 #define COND(d) (count != (d))
472 #define COND(c) (run)
  /dalvik/vm/compiler/codegen/arm/
CodegenFactory.c 290 ArmConditionCode cond,
296 ArmLIR *branch = opCondBranch(cUnit, cond);
  /external/kernel-headers/original/linux/
kernel.h 83 #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)

Completed in 233 milliseconds

1 2 3 4 56 7 8 91011>>