Home
last modified time | relevance | path

Searched refs:istrue (Results 1 – 13 of 13) sorted by relevance

/external/llvm/test/Transforms/SimplifyCFG/
Dimplied-cond-matching-false-dest.ll15 br i1 %cmp2, label %istrue, label %isfalse
17 istrue:
39 br i1 %cmp2, label %istrue, label %isfalse
41 istrue:
63 br i1 %cmp2, label %istrue, label %isfalse
65 istrue:
87 br i1 %cmp2, label %istrue, label %isfalse
89 istrue:
111 br i1 %cmp2, label %istrue, label %isfalse
113 istrue:
[all …]
Dimplied-cond-matching-imm.ll13 br i1 %cmp2, label %istrue, label %isfalse
15 istrue:
37 br i1 %cmp2, label %istrue, label %isfalse
39 istrue:
61 br i1 %cmp2, label %istrue, label %isfalse
63 istrue:
85 br i1 %cmp2, label %istrue, label %isfalse
87 istrue:
109 br i1 %cmp2, label %istrue, label %isfalse
111 istrue:
Dimplied-cond-matching.ll1017 br i1 %cmp2, label %istrue, label %isfalse
1019 istrue:
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SimplifyCFG/
Dimplied-cond-matching-false-dest.ll15 br i1 %cmp2, label %istrue, label %isfalse
17 istrue:
39 br i1 %cmp2, label %istrue, label %isfalse
41 istrue:
63 br i1 %cmp2, label %istrue, label %isfalse
65 istrue:
87 br i1 %cmp2, label %istrue, label %isfalse
89 istrue:
111 br i1 %cmp2, label %istrue, label %isfalse
113 istrue:
[all …]
Dimplied-cond-matching-imm.ll13 br i1 %cmp2, label %istrue, label %isfalse
15 istrue:
37 br i1 %cmp2, label %istrue, label %isfalse
39 istrue:
61 br i1 %cmp2, label %istrue, label %isfalse
63 istrue:
85 br i1 %cmp2, label %istrue, label %isfalse
87 istrue:
109 br i1 %cmp2, label %istrue, label %isfalse
111 istrue:
Dimplied-cond-matching.ll1017 br i1 %cmp2, label %istrue, label %isfalse
1019 istrue:
/external/llvm/test/Transforms/JumpThreading/
Dimplied-cond.ll141 br i1 %cmp2, label %istrue, label %isfalse
143 istrue:
165 br i1 %cmp2, label %istrue, label %isfalse
167 istrue:
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/JumpThreading/
Dimplied-cond.ll141 br i1 %cmp2, label %istrue, label %isfalse
143 istrue:
165 br i1 %cmp2, label %istrue, label %isfalse
167 istrue:
/external/one-true-awk/
Drun.c636 i = istrue(x); in boolop()
642 i = istrue(y); in boolop()
649 i = istrue(y); in boolop()
1223 if (istrue(x)) { in pastat()
1239 if (istrue(x)) in dopa2()
1245 if (istrue(x)) in dopa2()
1398 if (istrue(x)) { in condexpr()
1413 if (istrue(x)) { in ifstat()
1429 if (!istrue(x)) in whilestat()
1455 if (!istrue(x)) in dostat()
[all …]
Dawk.h204 #define istrue(n) ((n)->csub == BTRUE) macro
/external/python/cpython2/Modules/
Ddatetimemodule.c1444 int istrue; in diff_to_bool() local
1447 case Py_EQ: istrue = diff == 0; break; in diff_to_bool()
1448 case Py_NE: istrue = diff != 0; break; in diff_to_bool()
1449 case Py_LE: istrue = diff <= 0; break; in diff_to_bool()
1450 case Py_GE: istrue = diff >= 0; break; in diff_to_bool()
1451 case Py_LT: istrue = diff < 0; break; in diff_to_bool()
1452 case Py_GT: istrue = diff > 0; break; in diff_to_bool()
1455 istrue = 0; /* To shut up compiler */ in diff_to_bool()
1457 result = istrue ? Py_True : Py_False; in diff_to_bool()
Dpyexpat.c1403 get_pybool(int istrue) in get_pybool() argument
1405 PyObject *result = istrue ? Py_True : Py_False; in get_pybool()
/external/python/cpython3/Modules/
Dpyexpat.c1254 get_pybool(int istrue) in get_pybool() argument
1256 PyObject *result = istrue ? Py_True : Py_False; in get_pybool()