Searched defs:False (Results 51 - 75 of 82) sorted by relevance

1234

/external/valgrind/main/none/tests/ppc32/
H A Dtest_dfp3.c40 #define False 0 macro
497 return False;
1015 Bool insert_insn = False;
H A Dtest_isa_2_06_part2.c41 #define False 0 macro
1290 do_dot = False;
1295 Bool repeat = False;
1296 Bool scalar = False;
1300 do_dp = test_group.precision == DOUBLE_TEST ? True : False;
1399 do_aXp = False;
1419 Bool dp = (test_group.precision == DOUBLE_TEST) ? True : False;
1420 Bool xvrespTest = (strstr(test_group.name , "xvresp") != NULL) ? True: False;
1507 do_dot = False;
1516 setup_dp_fp_args(&test_group.targs[i], False);
[all...]
H A Dtest_isa_2_06_part3.c41 #define False 0 macro
444 Bool result = False;
452 Bool src_is_negative = False;
453 Bool res_is_negative = False;
461 src_is_negative = (*src_dp_ull & 0x8000000000000000ULL) ? True : False;
462 res_is_negative = (dst_dp[output_vec_idx] & 0x8000000000000000ULL) ? True : False;
469 src_is_negative = (*src_sp_uint & 0x80000000) ? True : False;
470 res_is_negative = (dst_sp[output_vec_idx] & 0x80000000) ? True : False;
1096 Bool dp = (test_group.precision == DOUBLE_TEST) ? True : False;
1097 Bool is_sqrt = (strstr(test_group.name, "sqrt")) ? True : False;
[all...]
H A Dtest_isa_2_07_part2.c55 #define False 0 macro
798 Bool result = False;
807 Bool src_is_negative = False;
808 Bool res_is_negative = False;
814 src_is_negative = (*src_dp_ull & 0x8000000000000000ULL) ? True : False;
815 res_is_negative = (dst_dp[output_vec_idx] & 0x8000000000000000ULL) ? True : False;
1046 (test_group.precision == DOUBLE_TEST_SINGLE_RES)) ? True : False;
1049 Bool is_sqrt = (strstr(test_group.name, "sqrt")) ? True : False;
1050 Bool is_scalar = (strstr(test_group.name, "xs")) ? True : False;
1051 Bool sparse_sp = False;
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dtest_dfp3.c40 #define False 0 macro
497 return False;
1015 Bool insert_insn = False;
H A Dtest_isa_2_06_part2.c41 #define False 0 macro
1290 do_dot = False;
1295 Bool repeat = False;
1296 Bool scalar = False;
1300 do_dp = test_group.precision == DOUBLE_TEST ? True : False;
1399 do_aXp = False;
1419 Bool dp = (test_group.precision == DOUBLE_TEST) ? True : False;
1420 Bool xvrespTest = (strstr(test_group.name , "xvresp") != NULL) ? True: False;
1507 do_dot = False;
1516 setup_dp_fp_args(&test_group.targs[i], False);
[all...]
H A Dtest_isa_2_06_part3.c41 #define False 0 macro
444 Bool result = False;
452 Bool src_is_negative = False;
453 Bool res_is_negative = False;
461 src_is_negative = (*src_dp_ull & 0x8000000000000000ULL) ? True : False;
462 res_is_negative = (dst_dp[output_vec_idx] & 0x8000000000000000ULL) ? True : False;
469 src_is_negative = (*src_sp_uint & 0x80000000) ? True : False;
470 res_is_negative = (dst_sp[output_vec_idx] & 0x80000000) ? True : False;
1096 Bool dp = (test_group.precision == DOUBLE_TEST) ? True : False;
1097 Bool is_sqrt = (strstr(test_group.name, "sqrt")) ? True : False;
[all...]
H A Dtest_isa_2_07_part2.c55 #define False 0 macro
798 Bool result = False;
807 Bool src_is_negative = False;
808 Bool res_is_negative = False;
814 src_is_negative = (*src_dp_ull & 0x8000000000000000ULL) ? True : False;
815 res_is_negative = (dst_dp[output_vec_idx] & 0x8000000000000000ULL) ? True : False;
1046 (test_group.precision == DOUBLE_TEST_SINGLE_RES)) ? True : False;
1049 Bool is_sqrt = (strstr(test_group.name, "sqrt")) ? True : False;
1050 Bool is_scalar = (strstr(test_group.name, "xs")) ? True : False;
1051 Bool sparse_sp = False;
[all...]
/external/bzip2/
H A Dbzip2.c170 #define False ((Bool)0) macro
323 return False;
535 return False;
617 return False;
623 return False;
629 return False;
988 if (MY_S_ISREG(statBuf.st_mode)) return False;
1089 return False;
1096 return False;
1114 if (ns < nx) return False;
[all...]
H A Dbzlib_private.h50 #define False ((Bool)0) macro
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp1160 SDValue False = Op.getOperand(3); local
1178 // Move hardware True/False values to the correct operand.
1182 if (isHWTrueValue(False) && isHWFalseValue(True)) {
1184 std::swap(False, True);
1189 std::swap(False, True);
1196 if (isHWTrueValue(True) && isHWFalseValue(False) &&
1199 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
1225 std::swap(True, False);
1236 // Bitcast True / False to the correct types. This will end up being
1239 // one pattern for integer True/False an
1968 SDValue False = N->getOperand(3); local
[all...]
H A DSIISelLowering.cpp1118 ConstantSDNode *True, *False; local
1121 && (False = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1123 && False->isNullValue()
H A DAMDGPUISelLowering.cpp956 SDValue False = N->getOperand(3); local
960 !((LHS == True && RHS == False) || (LHS == False && RHS == True))) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp210 Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned); local
211 Res = SelectInst::Create(I->getOperand(0), True, False);
/external/valgrind/main/cachegrind/
H A Dcg_merge.c47 #define False ((Bool)0) macro
159 // True if anything read, False if at EOF
462 return False; /* end of string, or junk */
534 return False;
1063 oldV->b = False;
1079 case 1: return False;
1096 return False;
1100 return False;
1112 case -1: return False;
1129 return False;
[all...]
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c145 #define False ((Bool)0) macro
177 static Bool opt_help = False;
178 static Bool opt_initkludge = False;
423 return False;
443 False. */
450 return False;
1245 sReqs[i].inUse = False;
1349 (when error_in_status == False, then we expect not to get
1463 maybe_complete(False/*err in status?*/,
1496 maybe_complete(False/*er
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dsse4-64.c51 #define False ((Bool)0) macro
2353 do_ROUNDSD_000(False/*reg*/, &src, &dst);
2376 do_ROUNDSD_001(False/*reg*/, &src, &dst);
2399 do_ROUNDSD_010(False/*reg*/, &src, &dst);
2422 do_ROUNDSD_011(False/*reg*/, &src, &dst);
2484 do_ROUNDSD_1XX(False/*reg*/, &src, &dst);
2669 do_ROUNDSS_000(False/*reg*/, &src, &dst);
2692 do_ROUNDSS_001(False/*reg*/, &src, &dst);
2715 do_ROUNDSS_010(False/*reg*/, &src, &dst);
2738 do_ROUNDSS_011(False/*re
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml123 | False Constructor in type:Fcmp/t
/external/llvm/include/llvm/IR/
H A DIRBuilder.h549 BranchInst *CreateCondBr(Value *Cond, BasicBlock *True, BasicBlock *False, argument
551 return Insert(addBranchWeights(BranchInst::Create(True, False, Cond),
1362 Value *CreateSelect(Value *C, Value *True, Value *False, argument
1366 if (Constant *FC = dyn_cast<Constant>(False))
1368 return Insert(SelectInst::Create(C, True, False), Name);
/external/clang/include/clang/Parse/
H A DParser.h1912 True, False, Ambiguous, Error member in class:clang::Parser::TPResult
1928 /// declaration specifier, TPResult::False if it is not,
1935 isCXXDeclarationSpecifier(TPResult BracedCastResult = TPResult::False,
1950 // Returning TPResult::True/False indicates that the ambiguity was
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp529 SDValue False, SDLoc DL) {
535 True.getValueType(), True, FCC0, False, Cond);
550 SDValue False = N->getOperand(2);
551 EVT FalseTy = False.getValueType();
556 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(False);
558 // If the RHS (False) is 0, we swap the order of the operands
577 return DAG.getNode(ISD::SELECT, DL, FalseTy, SetCC, False, True);
600 return DAG.getNode(ISD::ADD, DL, SetCC.getValueType(), SetCC, False);
1565 SDValue False = DAG.getConstant(0, MVT::i32); local
1567 return createCMovFP(DAG, Cond, True, False, SDLo
528 createCMovFP(SelectionDAG &DAG, SDValue Cond, SDValue True, SDValue False, SDLoc DL) argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1736 Value *False = vectorizeTree(FalseVec); local
1741 Value *V = Builder.CreateSelect(Cond, True, False);
/external/valgrind/main/helgrind/
H A Dhg_main.c177 thread->announced = False;
203 lock->heldW = False;
319 lk->heldW = False;
348 lk->heldW = False;
535 False /* show_lock_addrdescr */,
842 return False;
932 if (lk->heldW) BAD("9"); /* should be False if !heldBy */
1188 libhb_so_recv( thr->hbthr, lk->hbso, False/*!strong_recv*/ );
1207 libhb_so_recv( thr->hbthr, lk->hbso, False/*!strong_recv*/ );
1242 should refer to a reader-writer lock, and is False i
5407 False,/*show TIDs for errors*/ local
[all...]
/external/valgrind/main/VEX/switchback/
H A Dtest_bzip2.c416 #define False ((Bool)0) macro
994 return False;
1063 Bool neg = False;
1148 is_long = False;
1621 s->inUse16[i] = False;
1624 for (i = 0; i < 256; i++) s->inUse[i] = False;
1938 default: AssertH ( False, 4001 );
1941 AssertH ( False, 4002 );
2490 return False;
2860 bigDone [i] = False;
[all...]
H A Dtest_ppc_jm1.c168 #define False ((Bool)0) macro
343 return False;
412 Bool neg = False;
497 is_long = False;

Completed in 4362 milliseconds

1234