Searched refs:True (Results 26 - 50 of 62) sorted by relevance

123

/freebsd-9.3-release/contrib/bmake/mk/
H A Dmeta2deps.py235 self.srctops.sort(reverse=True)
236 self.objroots.sort(reverse=True)
383 skip = True
588 output = True
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/examples/
H A Dwpas-dbus-new.py97 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
H A Dwpas-dbus-new-signals.py127 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DConstantFolder.h207 Constant *CreateSelect(Constant *C, Constant *True, Constant *False) const { argument
208 return ConstantExpr::getSelect(C, True, False);
H A DTargetFolder.h231 Constant *CreateSelect(Constant *C, Constant *True, Constant *False) const { argument
232 return Fold(ConstantExpr::getSelect(C, True, False));
H A DNoFolder.h267 Constant *True, Constant *False) const {
268 return SelectInst::Create(C, True, False);
266 CreateSelect(Constant *C, Constant *True, Constant *False) const argument
/freebsd-9.3-release/contrib/bzip2/
H A Ddecompress.c45 while (True) { \
270 s->inUse16[i] = True; else
280 if (uc == 1) s->inUse[i * 16 + j] = True;
293 while (True) {
320 while (True) {
375 while (True) {
H A Dblocksort.c508 while (True) {
664 while (True) {
665 while (True) {
675 while (True) {
987 bigDone[ss] = True;
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp857 SDValue True = Op.getOperand(2); local
876 // Move hardware True/False values to the correct operand.
880 if (isHWTrueValue(False) && isHWFalseValue(True)) {
882 std::swap(False, True);
887 std::swap(False, True);
894 if (isHWTrueValue(True) && isHWFalseValue(False) &&
897 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
923 std::swap(True, False);
934 // Bitcast True / False to the correct types. This will end up being
937 // one pattern for integer True/Fals
1629 SDValue True = N->getOperand(2); local
[all...]
H A DAMDGPUISelLowering.cpp437 SDValue True = Op.getOperand(2); local
442 !((LHS == True && RHS == False) || (LHS == False && RHS == True))) {
467 if (LHS == True)
478 if (LHS == True)
H A DSIISelLowering.cpp750 SDValue True = Op.getOperand(2); local
763 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
857 ConstantSDNode *True, *False; local
859 if ((True = dyn_cast<ConstantSDNode>(N->getOperand(2)))
861 && True->isAllOnesValue()
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DLazyValueInfo.cpp1079 return ResCI->isZero() ? False : True;
1093 return True;
1096 return True;
1106 return True;
1128 return True;
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DIntegerDivision.cpp138 ConstantInt *True = Builder.getTrue(); local
212 Value *Tmp0 = Builder.CreateCall2(CTLZi32, Divisor, True);
213 Value *Tmp1 = Builder.CreateCall2(CTLZi32, Dividend, True);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DExprClassification.cpp540 static Cl::Kinds ClassifyConditional(ASTContext &Ctx, const Expr *True, argument
548 if (True->getType()->isVoidType() || False->getType()->isVoidType())
556 Cl::Kinds LCl = ClassifyInternal(Ctx, True),
/freebsd-9.3-release/usr.sbin/ypserv/
H A Dypinit.sh368 if ! make NOPUSH=True UPDATE_DOMAIN=${DOMAIN} YP_DIR=${YP_DIR}; then
/freebsd-9.3-release/contrib/sendmail/cf/m4/
H A Dcfhead.m4294 define(`confOLD_STYLE_HEADERS', `True')
296 define(`confSAFE_QUEUE', `True')
301 define(`confMIME_FORMAT_ERRORS', `True')
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py361 self._optpointer = True
362 self._optaddarg = True
1065 self._optional = True
/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h532 BranchInst *CreateCondBr(Value *Cond, BasicBlock *True, BasicBlock *False, argument
534 return Insert(addBranchWeights(BranchInst::Create(True, False, Cond),
1336 Value *CreateSelect(Value *C, Value *True, Value *False, argument
1339 if (Constant *TC = dyn_cast<Constant>(True))
1342 return Insert(SelectInst::Create(C, True, False), Name);
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h680 SDValue True, SDValue False, ISD::CondCode Cond) {
681 return getNode(ISD::SELECT_CC, DL, True.getValueType(),
682 LHS, RHS, True, False, getCondCode(Cond));
679 getSelectCC(SDLoc DL, SDValue LHS, SDValue RHS, SDValue True, SDValue False, ISD::CondCode Cond) argument
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp510 static SDValue createCMovFP(SelectionDAG &DAG, SDValue Cond, SDValue True, argument
517 True.getValueType(), True, FCC0, False, Cond);
545 SDValue True = N->getOperand(1); local
550 return DAG.getNode(ISD::SELECT, DL, FalseTy, SetCC, False, True);
1435 SDValue True = DAG.getConstant(1, MVT::i32); local
1438 return createCMovFP(DAG, Cond, True, False, SDLoc(Op));
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp772 unsigned ToRemove = Baseline == LazyValueInfo::True ? 1 : 0;
773 unsigned ToKeep = Baseline == LazyValueInfo::True ? 0 : 1;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h211 /// True if we are within an Objective-C container while parsing C-like decls.
305 /// isTokenStringLiteral - True if this token is a string-literal.
1699 return isCXXDeclarationSpecifier() == TPResult::True();
1800 static TPResult True() { return TPR_true; } function in class:clang::Parser::TPResult
1821 /// isCXXDeclarationSpecifier - Returns TPResult::True() if it is a
1832 /// Given that isCXXDeclarationSpecifier returns \c TPResult::True or
1844 // Returning TPResult::True()/False() indicates that the ambiguity was
/freebsd-9.3-release/contrib/libstdc++/scripts/
H A Dmake_graph.py521 return self.__npq_builder.build(True)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseTemplate.cpp1173 while (isCXXDeclarationSpecifier() == TPResult::True())
/freebsd-9.3-release/contrib/llvm/lib/TableGen/
H A DRecord.cpp441 static BitInit True(true);
444 return V ? &True : &False;

Completed in 488 milliseconds

123