Searched refs:True (Results 151 - 175 of 190) sorted by relevance

12345678

/freebsd-13-stable/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A D_libzfs_core.py447 deletion by :func:`lzc_destroy_snaps` ( ``defer`` = `True` ).)
724 :raises DatasetExists: if ``force`` is `True` but the destination
745 :raises DatasetBusy: if ``force`` is `True` but the destination filesystem
771 If ``force`` is `True` and the stream is incremental then the
780 If ``force`` is `True` and the stream is a full stream then the
819 :return: `True` if the dataset exists, `False` otherwise.
876 :param bool noop: if `True` the encryption key will only be verified,
1017 :raises DatasetExists: if ``force`` is `True` but the destination
1038 :raises DatasetBusy: if ``force`` is `True` but the destination filesystem
1104 :raises DatasetExists: if ``force`` is `True` bu
[all...]
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd7.c149 return True;
492 p->MinContext = p->MaxContext = CreateSuccessors(p, True);
767 return True;
H A Darchive_ppmd8.c114 return True;
840 CTX_PTR cs = CreateSuccessors(p, True, s, p->MinContext);
/freebsd-13-stable/contrib/libevent/
H A Devent_rpcgen.py361 self._optpointer = True
362 self._optaddarg = True
1065 self._optional = True
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py361 self._optpointer = True
362 self._optaddarg = True
1065 self._optional = True
/freebsd-13-stable/sys/contrib/openzfs/cmd/arc_summary/
H A Darc_summary3203 universal_newlines=True)
207 universal_newlines=True)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp790 Value *Cond, *True = nullptr, *False = nullptr; local
794 True = SimplifyBinOp(Opcode, B, E, FMF, Q);
798 if (False && !True)
799 True = Builder.CreateBinOp(Opcode, B, E);
800 else if (True && !False)
806 True = SimplifyBinOp(Opcode, B, RHS, FMF, Q);
811 True = SimplifyBinOp(Opcode, LHS, E, FMF, Q);
815 if (!True || !False)
818 Value *SI = Builder.CreateSelect(Cond, True, False);
2770 // Change br (not X), label True, labe
[all...]
H A DInstCombineCasts.cpp207 Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned); local
209 Res = SelectInst::Create(I->getOperand(0), True, False);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DIRBuilder.cpp918 Value *IRBuilderBase::CreateSelect(Value *C, Value *True, Value *False, argument
921 if (auto *TC = dyn_cast<Constant>(True))
925 SelectInst *Sel = SelectInst::Create(C, True, False);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp666 static SDValue createCMovFP(SelectionDAG &DAG, SDValue Cond, SDValue True, argument
673 True.getValueType(), True, FCC0, False, Cond);
710 SDValue True = N->getOperand(1); local
716 return DAG.getNode(ISD::SELECT, DL, FalseTy, SetCC, False, True);
721 SDValue True = N->getOperand(1); local
722 ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(True);
724 if (!TrueC || !True.getValueType().isInteger())
730 if (True.getValueType() == MVT::i64)
750 return DAG.getNode(ISD::ADD, DL, SetCC.getValueType(), SetCC, True);
2073 SDValue True = DAG.getConstant(1, DL, MVT::i32); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp1371 SDValue True, SDValue False,
1374 if (!(LHS == True && RHS == False) && !(LHS == False && RHS == True))
1395 if (LHS == True)
1414 if (LHS == True)
1420 if (LHS == True)
1432 if (LHS == True)
3585 SDValue True = N->getOperand(1); local
3590 if (DAG.isConstantValueOfAnyType(True) &&
3601 return DAG.getNode(ISD::SELECT, SL, VT, NewCond, False, True);
1369 combineFMinMaxLegacy(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, SDValue True, SDValue False, SDValue CC, DAGCombinerInfo &DCI) const argument
[all...]
H A DAMDGPUISelLowering.h234 SDValue RHS, SDValue True, SDValue False,
H A DAMDGPURegisterBankInfo.cpp138 auto True = B.buildConstant(S32, Opc == AMDGPU::G_SEXT ? -1 : 1); local
140 B.buildSelect(DstReg, SrcReg, True, False);
141 MRI.setRegBank(True.getReg(0), *NewBank);
2582 auto True = B.buildConstant(SelType, Signed ? -1 : 1); local
2585 MRI.setRegBank(True.getReg(0), *DstBank);
2590 B.buildSelect(DefRegs[0], SrcReg, True, False);
2593 auto Sel = B.buildSelect(SelType, SrcReg, True, False);
2597 B.buildSelect(DstReg, SrcReg, True, False);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h958 BranchInst *CreateCondBr(Value *Cond, BasicBlock *True, BasicBlock *False, argument
961 return Insert(addBranchMetadata(BranchInst::Create(True, False, Cond),
967 BranchInst *CreateCondBr(Value *Cond, BasicBlock *True, BasicBlock *False, argument
969 BranchInst *Br = BranchInst::Create(True, False, Cond);
2372 Value *CreateSelect(Value *C, Value *True, Value *False,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1080 SDValue getSelectCC(const SDLoc &DL, SDValue LHS, SDValue RHS, SDValue True, argument
1082 return getNode(ISD::SELECT_CC, DL, True.getValueType(), LHS, RHS, True,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVN.cpp1503 Constant *True = ConstantInt::getTrue(V->getContext()); local
1511 Changed |= propagateEquality(V, True, Edge, false);
1517 ReplaceOperandsWithMap[V] = True;
H A DJumpThreading.cpp1106 unsigned ToRemove = Ret == LazyValueInfo::True ? 1 : 0;
1107 unsigned ToKeep = Ret == LazyValueInfo::True ? 0 : 1;
1124 auto *CI = Ret == LazyValueInfo::True ?
2919 // True dest is safe if BranchCond => GuardCond.
H A DSROA.cpp3461 Value *True = Sel->getTrueValue();
3464 ? Builder.CreateInBoundsGEP(True, Index,
3465 True->getName() + ".sroa.gep")
3466 : Builder.CreateGEP(True, Index, True->getName() + ".sroa.gep");
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h388 /// True if we are within an Objective-C container while parsing C-like decls.
551 /// isTokenStringLiteral - True if this token is a string-literal.
555 /// isTokenSpecial - True if this token requires special consumption methods.
2374 return isCXXDeclarationSpecifier() == TPResult::True;
2489 True, False, Ambiguous, Error member in class:clang::TPResult
2501 /// isCXXDeclarationSpecifier - Returns TPResult::True if it is a
2512 /// Given that isCXXDeclarationSpecifier returns \c TPResult::True or
2534 // Returning TPResult::True/False indicates that the ambiguity was
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFGraph.cpp528 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; local
529 return members_if(True, G);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1942 auto True = ConstantInt::getTrue(M.getContext()); local
1945 U.first->replaceAllUsesWith(True);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp460 /// True if an instruction is in tail position in its caller. Intended for
4498 auto True = MIRBuilder.buildFConstant(DstTy, 1.0); local
4500 MIRBuilder.buildSelect(Dst, Src, True, False);
4531 auto True = MIRBuilder.buildFConstant(DstTy, -1.0); local
4533 MIRBuilder.buildSelect(Dst, Src, True, False);
H A DIRTranslator.cpp622 auto True = MIB.buildConstant(i1Ty, 1); local
623 Cond = MIB.buildXor(i1Ty, Cond, True).getReg(0);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp513 (IsTypename || isTemplateArgumentList(1) == TPResult::True)) {
2343 ObjectType && isTemplateArgumentList(0) == TPResult::True) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp1061 SDValue True = DAG.getNode(HexagonISD::VSPLAT, dl, ResTy, local
1064 return DAG.getSelect(dl, ResTy, VecV, True, False);

Completed in 565 milliseconds

12345678