/external/bluetooth/bluez/src/ |
security.c | 930 static gboolean io_security_event(GIOChannel *chan, GIOCondition cond, gpointer data) 940 if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR)) {
|
/external/v8/src/mips/ |
assembler-mips.h | 387 // Never use the int16_t b(l)cond version with a branch offset 496 void c(FPUCondition cond, SecondaryField fmt,
|
assembler-mips.cc | 992 void Assembler::c(FPUCondition cond, SecondaryField fmt, 997 | cc << 8 | 3 << 4 | cond;
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
builtins.def | 25 FALLBACK_P, NONANSI_P, ATTRS, IMPLICIT, COND) 65 The builtins is registered only if COND is true. */ [all...] |
gimple.h | 584 enum tree_code cond; local [all...] |
/bionic/libc/kernel/tools/ |
cpp.py | 754 def __init__(self,cond,iftrue,iffalse): 756 self.cond = cond 761 return "(?: %s %s %s)" % (repr(self.cond),repr(self.iftrue),repr(self.iffalse)) 764 return "(%s) ? (%s) : (%s)" % (self.cond, self.iftrue, self.iffalse) [all...] |
/external/bluetooth/bluez/audio/ |
headset.c | 1190 static gboolean rfcomm_io_cb(GIOChannel *chan, GIOCondition cond, 1198 if (cond & G_IO_NVAL) 1203 if (cond & (G_IO_ERR | G_IO_HUP)) { 1270 static gboolean sco_cb(GIOChannel *chan, GIOCondition cond, 1273 if (cond & G_IO_NVAL) [all...] |
avdtp.c | 787 static gboolean transport_cb(GIOChannel *chan, GIOCondition cond, 797 if (!(cond & G_IO_NVAL)) [all...] |
/external/v8/src/ |
parser.cc | 2645 Expression* cond = ParseExpression(true, CHECK_OK); local 2668 Expression* cond = ParseExpression(true, CHECK_OK); local 2751 Expression* cond = NULL; local [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/tests/ |
AacEncTest.c | 173 pthread_cond_t cond; /* conditional mutex */ member in struct:__anon7987 304 pthread_cond_wait(&WaitForStateMutex.cond,&WaitForStateMutex.Mymutex); /* Block on a Condition Variable" */ 368 pthread_cond_signal(&WaitForStateMutex.cond); /* Unblock a Specific Thread" */ 396 pthread_cond_signal(&WaitForStateMutex.cond);/*Sending Waking Up Signal*/ [all...] |
/external/bluetooth/glib/glib/ |
gslice.c | 129 #define mem_assert(cond) do { if (G_LIKELY (cond)) ; else mem_error ("assertion failed: %s", #cond); } while (0) [all...] |
/system/core/adb/ |
sysdeps_win32.c | 11 #define assert(cond) do { if (!(cond)) fatal( "assertion failed '%s' on %s:%ld\n", #cond, __FILE__, __LINE__ ); } while (0) [all...] |
/external/clearsilver/util/ |
skiplist.c | 56 pthread_mutex_t read; /* readers count/cond wait mutex */
|
/external/openssl/crypto/bn/asm/ |
mips3.s | 49 #define MOVNZ(cond,dst,src) \ 50 movn dst,src,cond 52 #define MOVNZ(cond,dst,src) \ 54 bnezl cond,.+8; \ [all...] |
/external/skia/include/images/ |
SkImageDecoder.h | 259 /** @cond UNIT_TEST */
|
/frameworks/base/awt/java/awt/image/ |
ConvolveOp.java | 62 * The edge cond.
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/libexec/gcc/arm-eabi/4.2.1/ |
collect2 | |
/prebuilt/linux-x86/toolchain/sh-4.3.3/libexec/gcc/sh-linux-gnu/4.3.3/ |
collect2 | |
/dalvik/vm/compiler/codegen/arm/ |
ArmLIR.h | 350 kThumbBCond, /* b(1) [1101] cond[11..8] offset_8[7..0] */ 586 kThumb2BCond, /* b<c> [1110] S cond[25-22] imm6[21-16] [10] [all...] |
/external/qemu/tcg/i386/ |
tcg-target.c | 344 static void tcg_out_brcond(TCGContext *s, int cond, 358 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index); [all...] |
/external/qemu/tcg/x86_64/ |
tcg-target.c | 494 static void tcg_out_brcond(TCGContext *s, int cond, 511 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index); [all...] |
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/ |
EASLib.c | 123 pthread_cond_t cond; variable 363 pthread_cond_signal(&cond); 380 pthread_cond_signal(&cond); 413 pthread_cond_wait(&cond, &mtx); 434 pthread_cond_wait(&cond, &mtx); 568 result = pthread_cond_init(&cond, NULL); [all...] |
/external/iproute2/misc/ |
ss.c | 775 struct inet_diag_hostcond *cond = (struct inet_diag_hostcond*)(ptr+4); local 778 cond->family = a->addr.family; 779 cond->port = a->port; 780 cond->prefix_len = a->addr.bitlen; 781 memcpy(cond->addr, a->addr.data, alen); [all...] |
/dalvik/vm/ |
Sync.c | 639 int dvmRelativeCondWait(pthread_cond_t* cond, pthread_mutex_t* mutex, 646 ret = pthread_cond_timedwait_monotonic(cond, mutex, &ts); 648 ret = pthread_cond_timedwait(cond, mutex, &ts); [all...] |
/external/qemu/target-arm/ |
translate.c | 5800 unsigned int cond, insn, val, op1, i, shift, rm, rs, rn, rd, sh; local 8176 uint32_t val, insn, op, rm, rn, rd, shift, cond; local [all...] |