HomeSort by relevance Sort by last modified time
    Searched full:cond (Results 1 - 25 of 2249) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
supp.supp 3 Memcheck:Cond
  /external/llvm/test/CodeGen/ARM/
fast-isel-br-phi.ll 11 br i1 %cmp, label %cond.true, label %cond.false
13 cond.true: ; preds = %entry
14 br label %cond.end
16 cond.false: ; preds = %entry
17 br label %cond.end
19 cond.end: ; preds = %cond.false, %cond.true
20 %cond = phi i1 [ 0, %cond.true ], [ 1, %cond.false
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
assertions.h 72 #define REQUIRE(cond) \
73 ((void) ((cond) || \
75 #cond, 0), 0)))
76 #define REQUIRE_ERR(cond) \
77 ((void) ((cond) || \
79 #cond, 1), 0)))
81 #define REQUIRE(cond) ((void) (cond))
82 #define REQUIRE_ERR(cond) ((void) (cond))
    [all...]
  /external/llvm/test/Transforms/InstCombine/
pr12338.ll 5 br label %for.cond
7 for.cond:
8 %local = phi <1 x i32> [ <i32 0>, %entry ], [ %phi2, %cond.end47 ]
11 br label %cond.end
13 cond.false:
14 br label %cond.end
16 cond.end:
17 %cond = phi <1 x i32> [ %phi3, %for.cond ], [ undef, %cond.false
    [all...]
  /external/llvm/test/TableGen/
if-empty-list-arg.td 4 class C<bit cond> {
5 list<int> X = !if(cond, [1, 2, 3], []);
6 list<int> Y = !if(cond, [], [4, 5, 6]);
  /external/qemu/distrib/sdl-1.2.15/src/thread/dc/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/generic/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_syscond.c 44 SDL_cond *cond; local
46 cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
47 if ( cond ) {
48 cond->lock = SDL_CreateMutex();
49 cond->wait_sem = SDL_CreateSemaphore(0);
50 cond->wait_done = SDL_CreateSemaphore(0);
51 cond->waiting = cond->signals = 0;
52 if ( ! cond->lock || ! cond->wait_sem || ! cond->wait_done )
    [all...]
  /external/llvm/test/Transforms/SimplifyCFG/
speculate-vector-ops.ll 16 br i1 %tobool, label %cond.else, label %cond.then
18 return: ; preds = %cond.end28
21 cond.then: ; preds = %entry
23 br label %cond.end
25 cond.else: ; preds = %entry
27 br label %cond.end
29 cond.end: ; preds = %cond.else, %cond.the
    [all...]
  /external/clang/test/SemaObjC/
conditional-expr-4.m 14 id f0(int cond, id a, void *b) {
15 return cond ? a : b;
17 A *f0_a(int cond, A *a, void *b) {
18 return cond ? a : b;
21 id f1(int cond, id a) {
22 return cond ? a : nil;
24 A *f1_a(int cond, A *a) {
25 return cond ? a : nil;
37 id f2(int cond, id<P0> a, void *b) {
38 return cond ? a : b
    [all...]
conditional-expr-3.m 37 void f4(int cond, id x, A *a) {
38 bar(cond ? x : a);
41 void f5(int cond, A *a, B *b) {
42 bar(cond ? a : b);
45 void f6(int cond, id x, A *a) {
46 bar(cond ? (id<P0, P1>) x : a);
49 void f7(int cond, id x, A *a) {
50 bar(cond ? a : (id<P0, P1>) x);
53 void f8(int cond, id<P0,P1> x0, id<P0,P2> x1) {
54 barP0(cond ? x0 : x1); // expected-warning {{incompatible operand types ('id<P0,P1>' and 'id<P0,P2>')}
    [all...]
  /external/llvm/test/Analysis/ScalarEvolution/
how-far-to-zero.ll 6 br label %for.cond
8 for.cond: ; preds = %for.cond, %entry
9 %c.0 = phi i8 [ 1, %entry ], [ 0, %for.cond ]
10 %i.0 = phi i8 [ 0, %entry ], [ %inc, %for.cond ]
13 br i1 %lnot, label %for.cond, label %while.cond
15 while.cond: ; preds = %while.body, %for.cond
16 %b.2 = phi i8 [ %add, %while.body ], [ 0, %for.cond ]
    [all...]
  /art/compiler/utils/arm/
assembler_arm32.h 43 void and_(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
45 void eor(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
47 void sub(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
48 void subs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
50 void rsb(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
51 void rsbs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
53 void add(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
55 void adds(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
57 void adc(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
59 void sbc(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE
    [all...]
assembler_arm32.cc 29 Condition cond) {
30 EmitType01(cond, so.type(), AND, 0, rn, rd, so);
35 Condition cond) {
36 EmitType01(cond, so.type(), EOR, 0, rn, rd, so);
41 Condition cond) {
42 EmitType01(cond, so.type(), SUB, 0, rn, rd, so);
46 Condition cond) {
47 EmitType01(cond, so.type(), RSB, 0, rn, rd, so);
51 Condition cond) {
52 EmitType01(cond, so.type(), RSB, 1, rn, rd, so)
931 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, false, cond); local
936 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, true, cond); local
941 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, false, cond); local
946 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, true, cond); local
    [all...]
  /external/llvm/test/Analysis/RegionInfo/
20100809_bb_not_in_domtree.ll 4 br label %for.cond
7 br label %for.cond
9 for.cond: ; preds = %for.inc, %entry
12 for.body: ; preds = %for.cond
16 br label %for.cond
18 for.end: ; preds = %for.cond
  /external/llvm/test/CodeGen/Mips/
seleq.ll 18 br i1 %cmp, label %cond.true, label %cond.false
20 cond.true: ; preds = %entry
22 br label %cond.end
24 cond.false: ; preds = %entry
26 br label %cond.end
28 cond.end: ; preds = %cond.false, %cond.true
29 %cond = phi i32 [ %2, %cond.true ], [ %3, %cond.false
    [all...]
seleqk.ll 17 br i1 %cmp, label %cond.true, label %cond.false
19 cond.true: ; preds = %entry
21 br label %cond.end
23 cond.false: ; preds = %entry
25 br label %cond.end
27 cond.end: ; preds = %cond.false, %cond.true
28 %cond = phi i32 [ %1, %cond.true ], [ %2, %cond.false
    [all...]
selgek.ll 18 br i1 %cmp, label %cond.true, label %cond.false
20 cond.true: ; preds = %entry
22 br label %cond.end
24 cond.false: ; preds = %entry
26 br label %cond.end
28 cond.end: ; preds = %cond.false, %cond.true
29 %cond = phi i32 [ %1, %cond.true ], [ %2, %cond.false
    [all...]
selgt.ll 20 br i1 %cmp, label %cond.true, label %cond.false
22 cond.true: ; preds = %entry
24 br label %cond.end
26 cond.false: ; preds = %entry
28 br label %cond.end
30 cond.end: ; preds = %cond.false, %cond.true
31 %cond = phi i32 [ %2, %cond.true ], [ %3, %cond.false
    [all...]
selle.ll 19 br i1 %cmp, label %cond.true, label %cond.false
21 cond.true: ; preds = %entry
23 br label %cond.end
25 cond.false: ; preds = %entry
27 br label %cond.end
29 cond.end: ; preds = %cond.false, %cond.true
30 %cond = phi i32 [ %2, %cond.true ], [ %3, %cond.false
    [all...]
selltk.ll 18 br i1 %cmp, label %cond.true, label %cond.false
20 cond.true: ; preds = %entry
22 br label %cond.end
24 cond.false: ; preds = %entry
26 br label %cond.end
28 cond.end: ; preds = %cond.false, %cond.true
29 %cond = phi i32 [ %1, %cond.true ], [ %2, %cond.false
    [all...]
selne.ll 19 br i1 %cmp, label %cond.true, label %cond.false
21 cond.true: ; preds = %entry
23 br label %cond.end
25 cond.false: ; preds = %entry
27 br label %cond.end
29 cond.end: ; preds = %cond.false, %cond.true
30 %cond = phi i32 [ %2, %cond.true ], [ %3, %cond.false
    [all...]
selnek.ll 17 br i1 %cmp, label %cond.true, label %cond.false
19 cond.true: ; preds = %entry
21 br label %cond.end
23 cond.false: ; preds = %entry
25 br label %cond.end
27 cond.end: ; preds = %cond.false, %cond.true
28 %cond = phi i32 [ %1, %cond.true ], [ %2, %cond.false
    [all...]
  /external/clang/test/SemaObjCXX/
conditional-expr.mm 37 void f4(int cond, id x, A *a) {
38 bar(cond ? x : a);
41 void f5(int cond, A *a, B *b) {
42 bar(cond ? a : b);
45 void f6(int cond, id x, A *a) {
46 bar(cond ? (id<P0, P1>) x : a);
49 void f7(int cond, id x, A *a) {
50 bar(cond ? a : (id<P0, P1>) x);
53 void f8(int cond, id<P0,P1> x0, id<P0,P2> x1) {
54 barP0(cond ? x0 : x1); // expected-warning {{incompatible operand types ('id<P0,P1>' and 'id<P0,P2>')}
    [all...]
  /external/clang/test/SemaTemplate/
value-dependent-null-pointer-constant.cpp 5 const char *f0(bool Cond) {
6 return Cond? "honk" : N;
9 const char *f1(bool Cond) {
10 return Cond? N : "honk";

Completed in 1306 milliseconds

1 2 3 4 5 6 7 8 91011>>