Home
last modified time | relevance | path

Searched refs:IsBinary (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h79 bool IsBinary; variable
82 explicit OperatorKind(BinaryOperatorKind Bin) : Op{Bin}, IsBinary{true} {} in OperatorKind()
83 explicit OperatorKind(UnaryOperatorKind Un) : IsBinary{false} { Op.Un = Un; } in OperatorKind()
84 bool IsBinaryOp() const { return IsBinary; } in IsBinaryOp()
87 assert(IsBinary && "cannot get binary operator - we have a unary operator"); in GetBinaryOpUnsafe()
92 if (IsBinary) in GetBinaryOp()
98 assert(!IsBinary && in GetUnaryOpUnsafe()
104 if (!IsBinary) in GetUnaryOp()
111 bool IsBinary);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCReduceCRLogicals.cpp361 unsigned IsBinary : 1; member
371 CRLogicalOpInfo() : MI(nullptr), IsBinary(0), IsNullary(0), in CRLogicalOpInfo()
439 dbgs() << "IsBinary: " << IsBinary << ", FeedsISEL: " << FeedsISEL; in dump()
449 if (IsBinary) in dump()
481 Ret.IsBinary = 1; in createCRLogicalOpInfo()
517 if (Ret.IsBinary) in createCRLogicalOpInfo()
522 if (Ret.IsBinary && Ret.ContainedInBlock && Ret.SingleUse) { in createCRLogicalOpInfo()
588 if (CRI.IsBinary && CRI.ContainedInBlock && CRI.SingleUse && CRI.FeedsBR && in handleCROp()
720 else if (AllCRLogicalOps.back().IsBinary) in collectCRLogicals()
/freebsd-14.2/sys/contrib/dev/acpica/common/
H A Dacfileio.c529 BOOLEAN IsBinary = FALSE; in AcIsFileBinary() local
540 IsBinary = TRUE; in AcIsFileBinary()
547 return (IsBinary); in AcIsFileBinary()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp152 bool IsBinary) { in operationKindFromOverloadedOperator() argument
165 if (IsBinary) { \ in operationKindFromOverloadedOperator()
/freebsd-14.2/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp426 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; in ExecuteAssemblerImpl() local
430 getOutputStream(Opts.OutputPath, Diags, IsBinary); in ExecuteAssemblerImpl()
435 DwoOS = getOutputStream(Opts.SplitDwarfOutput, Diags, IsBinary); in ExecuteAssemblerImpl()