Searched refs:Sub (Results 1 - 25 of 102) sorted by relevance

12345

/freebsd-10.0-release/sys/contrib/dev/acpica/components/utilities/
H A Dutids.c165 ACPI_PNP_DEVICE_ID *Sub; local
186 Sub = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_PNP_DEVICE_ID) + (ACPI_SIZE) Length);
187 if (!Sub)
195 Sub->String = ACPI_ADD_PTR (char, Sub, sizeof (ACPI_PNP_DEVICE_ID));
199 ACPI_STRCPY (Sub->String, ObjDesc->String.Pointer);
200 Sub->Length = Length;
201 *ReturnId = Sub;
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp135 int Sub = InstOffset - BlockToInstOffset[MII->getOperand(0).getMBB()]; local
136 unsigned Dist = Sub > 0 ? Sub : -Sub;
/freebsd-10.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfname.c309 ACPI_PNP_DEVICE_ID *Sub = NULL; local
389 Status = AcpiUtExecute_SUB (Node, &Sub);
392 InfoSize += Sub->Length;
512 if (Sub)
515 Sub, NextIdString);
558 if (Sub)
560 ACPI_FREE (Sub);
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp910 static bool ShouldBreakUpSubtract(Instruction *Sub) { argument
912 if (BinaryOperator::isNeg(Sub))
917 if (isReassociableOp(Sub->getOperand(0), Instruction::Add) ||
918 isReassociableOp(Sub->getOperand(0), Instruction::Sub))
920 if (isReassociableOp(Sub->getOperand(1), Instruction::Add) ||
921 isReassociableOp(Sub->getOperand(1), Instruction::Sub))
923 if (Sub->hasOneUse() &&
924 (isReassociableOp(Sub
934 BreakUpSubtract(Instruction *Sub) argument
[all...]
H A DLowerAtomic.cpp55 case AtomicRMWInst::Sub:
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DModule.cpp167 for (submodule_iterator Sub = Current->submodule_begin(),
169 Sub != SubEnd; ++Sub) {
170 if ((*Sub)->IsAvailable)
171 Stack.push_back(*Sub);
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp240 const MCExpr *Sub = NULL; local
245 Sub = MCSymbolRefExpr::Create(Sym, *Ctx);
247 Sub = MCConstantExpr::Create((int)SymbolicOp.SubtractSymbol.Value, *Ctx);
256 if (Sub) {
259 LHS = MCBinaryExpr::CreateSub(Add, Sub, *Ctx);
261 LHS = MCUnaryExpr::CreateMinus(Sub, *Ctx);
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DOperator.h76 /// which may exhibit overflow - Add, Sub, and Mul. It does not include SDiv,
113 I->getOpcode() == Instruction::Sub ||
119 CE->getOpcode() == Instruction::Sub ||
332 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Sub> {
H A DInstrTypes.h267 DEFINE_HELPERS(Sub, NSW) // CreateNSWSub
268 DEFINE_HELPERS(Sub, NUW) // CreateNUWSub
317 /// Sub, FSub, or Xor.
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp148 Value *Sub = 0; local
150 Sub = Builder->CreateSub(X, Y, "suba");
152 Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc");
153 if (Sub)
155 BinaryOperator::CreateMul(Sub,
816 if (SubOperator *Sub = dyn_cast<SubOperator>(Op0))
817 if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap())
818 return BinaryOperator::CreateSDiv(Sub->getOperand(1),
H A DInstCombineSelect.cpp92 case Instruction::Sub: // Can only fold on the amount subtracted.
108 case Instruction::Sub:
873 if ((TI->getOpcode() == Instruction::Sub &&
878 } else if ((FI->getOpcode() == Instruction::Sub &&
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DSetTheory.cpp35 // (sub Add, Sub, ...) Set difference.
41 RecSet Add, Sub; local
43 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
45 if (!Sub.count(*I))
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendActions.cpp216 for (clang::Module::submodule_iterator Sub = Module->submodule_begin(),
218 Sub != SubEnd; ++Sub)
219 collectModuleHeaderIncludes(LangOpts, FileMgr, ModMap, *Sub, Includes);
H A DCompilerInstance.cpp1282 clang::Module *Sub = Module->findSubmodule(Name); local
1284 if (!Sub) {
1314 Sub = Module->findSubmodule(Best[0]);
1318 if (!Sub) {
1327 Module = Sub;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp172 const MCExpr *Sub = local
176 Asm->OutStreamer.EmitValue(Sub, sizeof(uint32_t));
/freebsd-10.0-release/usr.sbin/bsdconfig/dot/
H A Ddot381 printf '\n\t/*\n\t * Sub-menu items\n\t */\n'
404 printf '\n\t/*\n\t * Sub-menu item relationships\n\t */\n'
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCExpr.cpp125 case MCBinaryExpr::Sub: OS << '-'; break;
609 case MCBinaryExpr::Sub:
646 case MCBinaryExpr::Sub: Result = LHS - RHS; break;
H A DMCObjectStreamer.cpp328 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCExpr.h349 Sub, ///< Subtraction. enumerator in enum:llvm::MCBinaryExpr::Opcode
432 return Create(Sub, LHS, RHS, Ctx);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPDirectives.cpp343 StringRef Sub = Directive.substr(2); local
344 if (Sub.empty() || // "if"
345 Sub == "def" || // "ifdef"
346 Sub == "ndef") { // "ifndef"
355 StringRef Sub = Directive.substr(1); local
356 if (Sub == "ndif") { // "endif"
376 } else if (Sub == "lse") { // "else".
403 } else if (Sub == "lif") { // "elif".
H A DModuleMap.cpp70 Module *Sub = lookupModuleQualified(Id[I].first, Context); local
71 if (!Sub) {
80 Context = Sub;
367 if (Module *Sub = lookupModuleQualified(Name, Context))
368 return Sub;
385 if (Module *Sub = lookupModuleQualified(Name, Parent))
386 return std::make_pair(Sub, false);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DCostModel.cpp125 case Instruction::Sub:
/freebsd-10.0-release/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp215 case Instruction::Sub: case Instruction::FSub:
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtVisitor.h122 BINOP_FALLBACK(Add) BINOP_FALLBACK(Sub) BINOP_FALLBACK(Shl)
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp1200 MachineInstr *Sub = NULL;
1213 // Search for Sub.
1238 Sub = &*I;
1248 if (!MI && !Sub)
1252 if (!MI) MI = Sub;
1281 if (Sub) {
1282 ShouldSwap = SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
1283 Sub->getOperand(2).getReg() == SrcReg;

Completed in 171 milliseconds

12345