HomeSort by relevance Sort by last modified time
    Searched refs:cond (Results 226 - 250 of 435) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/VEX/priv/
host_amd64_defs.c 189 HChar* showAMD64CondCode ( AMD64CondCode cond )
191 switch (cond) {
714 AMD64Instr* AMD64Instr_Call ( AMD64CondCode cond, Addr64 target, Int regparms ) {
717 i->Ain.Call.cond = cond;
723 AMD64Instr* AMD64Instr_Goto ( IRJumpKind jk, AMD64CondCode cond, AMD64RI* dst ) {
726 i->Ain.Goto.cond = cond;
731 AMD64Instr* AMD64Instr_CMov64 ( AMD64CondCode cond, AMD64RM* src, HReg dst ) {
734 i->Ain.CMov64.cond = cond
    [all...]
guest_arm_helpers.c 228 UInt cond = cond_n_op >> 4; local
235 if (cond == ARMCondAL) return 1;
237 inv = cond & 1;
240 switch (cond) {
286 cond, cc_op, cc_dep1, cc_dep2, cc_dep3 );
  /external/bluetooth/bluez/input/
fakehid.c 211 static gboolean ps3remote_event(GIOChannel *chan, GIOCondition cond,
221 if (cond & G_IO_NVAL)
224 if (cond & (G_IO_HUP | G_IO_ERR)) {
  /external/kernel-headers/original/linux/
netfilter.h 213 int (*okfn)(struct sk_buff *), bool cond)
217 if (!cond ||
335 #define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
kernel.h 83 #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
  /external/v8/src/
prettyprinter.cc 155 Visit(node->cond());
163 Visit(node->cond());
178 if (node->cond() != NULL) Visit(node->cond());
829 PrintIndentedVisit("COND", node->cond());
836 PrintIndentedVisit("COND", node->cond());
845 if (node->cond()) PrintIndentedVisit("COND", node->cond())
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ValidateLimitations.cpp 248 TIntermNode* cond = node->getCondition(); local
249 if (cond == NULL) {
257 TIntermBinary* binOp = cond->getAsBinaryNode();
Intermediate.cpp 587 TIntermNode* TIntermediate::addSelection(TIntermTyped* cond, TIntermNodePair nodePair, TSourceLoc line)
594 if (cond->getAsTyped() && cond->getAsTyped()->getAsConstantUnion()) {
595 if (cond->getAsTyped()->getAsConstantUnion()->getUnionArrayPointer()->getBConst())
601 TIntermSelection* node = new TIntermSelection(cond, nodePair.node1, nodePair.node2);
628 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, TSourceLoc line)
648 if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnion()) {
649 if (cond->getAsConstantUnion()->getUnionArrayPointer()->getBConst())
658 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType());
701 TIntermNode* TIntermediate::addLoop(TLoopType type, TIntermNode* init, TIntermTyped* cond, TIntermTyped* expr, TIntermNode* body, TSourceLoc line
    [all...]
  /system/media/wilhelm/tests/listening/
slesTest_playMuteSolo.cpp 59 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
94 ok = pthread_cond_signal(&cond);
312 pthread_cond_wait(&cond, &mutex);
  /external/bluetooth/bluez/test/
btiotest.c 80 static gboolean io_watch(GIOChannel *io, GIOCondition cond, gpointer user_data)
100 GIOCondition cond; local
156 cond = G_IO_NVAL | G_IO_HUP | G_IO_ERR;
157 g_io_add_watch_full(io, G_PRIORITY_DEFAULT, cond, io_watch, data,
  /external/valgrind/main/drd/
drd_clientobj.h 87 // null if no client threads are currently waiting on this cond.var.
148 struct cond_info cond; member in union:drd_clientobj
drd_clientreq.c 333 const Addr cond = arg[1]; local
337 DRD_(cond_pre_wait)(cond, mutex);
344 const Addr cond = arg[1]; local
347 DRD_(cond_post_wait)(cond);
  /external/valgrind/unittest/
windows_tests.cc 350 bool cond; member in namespace:WindowsConditionVariableSRWTest
359 cond = true;
367 while (!cond) {
379 cond = false;
  /system/media/audio_utils/
echo_reference.c 58 pthread_cond_t cond; // condition signaled when data is ready to read member in struct:echo_reference
252 pthread_cond_signal(&er->cond);
304 pthread_cond_timedwait_relative_np(&er->cond, &er->lock, &ts);
414 pthread_cond_signal(&er->cond);
  /external/qemu/tcg/ppc/
tcg-target.c 990 static void tcg_out_cmp (TCGContext *s, int cond, TCGArg arg1, TCGArg arg2,
996 switch (cond) {
1081 TCGCond cond = args[4]; local
1092 }, *b = &bits[cond];
1094 switch (cond) {
1097 op = (cond == TCG_COND_EQ) ? CRAND : CRNAND;
1098 tcg_out_cmp (s, cond, args[0], args[2], const_args[2], 6);
1099 tcg_out_cmp (s, cond, args[1], args[3], const_args[3], 7);
1112 tcg_out_cmp (s, tcg_unsigned_cond (cond), args[0], args[2],
1122 static void tcg_out_setcond (TCGContext *s, TCGCond cond, TCGArg arg0
    [all...]
  /external/clang/test/SemaCXX/
member-pointer.cpp 169 bool cond();
176 { (void)(Condition) &base::Continuous::cond; }
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 48 | Ast.If (cond, then_, else_) ->
49 let cond = codegen_expr cond in var
53 let cond_val = build_fcmp Fcmp.One cond zero "ifcond" builder in
  /external/stlport/test/unit/
limits_test.cpp 56 bool check_cond(const bool& cond) { return cond; }
  /external/v8/tools/gcmole/
gcmole.lua 107 local function EvaluateCondition(cond, props)
108 if cond == 'all' then return true end
110 local p, v = cond:match "(%w+):(%w+)"
112 assert(p and v, "failed to parse condition: " .. cond)
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaEqualizerTest.java 71 private static void assumeTrue(String message, boolean cond) {
72 assertTrue("(assume)"+message, cond);
  /ndk/tests/device/test-gnustl-full/unit/
limits_test.cpp 56 bool check_cond(const bool& cond) { return cond; }
  /ndk/tests/device/test-stlport/unit/
limits_test.cpp 56 bool check_cond(const bool& cond) { return cond; }
  /external/valgrind/main/callgrind/
global.h 85 Bool collect_jumps; /* Collect (cond.) jumps in functions ? */
288 Bool skip; /* Cond.Jumps to next instruction should be ignored */
329 Bool cjmp_inverted; /* condition of last cond.jump can be inverted by VEX */
368 jCC* jcc_list; /* JCCs for Cond.Jumps from this exit */
851 #define CLG_ASSERT(cond) \
852 if (!(cond)) { \
855 tl_assert(cond); \
861 #define CLG_ASSERT(cond) tl_assert(cond);
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
process.js 126 "conditional": function(cond, t, e) {
127 return [ this[0], walk(cond), walk(t), walk(e) ];
147 "for": function(init, cond, step, block) {
148 return [ this[0], walk(init), walk(cond), walk(step), walk(block) ];
153 "while": function(cond, block) {
154 return [ this[0], walk(cond), walk(block) ];
156 "do": function(cond, block) {
157 return [ this[0], walk(cond), walk(block) ];
539 - if (cond) foo(); else bar(); ==> cond?foo():bar()
    [all...]
  /external/blktrace/btreplay/
btreplay.c 86 * @cond: Condition variable used when waiting on a volatile value change
107 pthread_cond_t cond; member in struct:thr_info
402 * __wait_cv - Waits for a variable under cond var control to hit a value
763 pthread_cond_init(&tip->cond, NULL);
846 pthread_cond_destroy(&tip->cond);
1014 if (pthread_cond_wait(&tip->cond, &tip->mutex)) {
1016 "nfree_current cond wait failed\n");
1075 pthread_cond_signal(&tip->cond);
1158 if (pthread_cond_wait(&tip->cond, &tip->mutex)) {
1160 "nfree_current cond wait failed\n")
    [all...]

Completed in 910 milliseconds

1 2 3 4 5 6 7 8 91011>>