Searched defs:Sub (Results 1 - 25 of 36) sorted by relevance

12

/external/clang/test/Index/
H A Dindex-suppress-refs.cpp4 class Sub : B1, B2 { class in inherits:B1,B2
10 // CHECK: [indexDeclaration]: kind: c++-class | name: Sub
H A Dcursor-ref-names.cpp7 struct Sub: public Base<int> { struct in inherits:Base
17 Sub inst;
31 // CHECK: cursor-ref-names.cpp:17:5: TypeRef=struct Sub:7:8 Extent=[17:5 - 17:8]
32 // CHECK: cursor-ref-names.cpp:17:9: CallExpr=Sub:7:8 Extent=[17:9 - 17:13]
/external/clang/test/CodeGenCXX/
H A Dpragma-pack.cpp9 struct Sub : virtual Base { struct in inherits:Base
13 // CHECK: %struct.Sub = type <{ i32 (...)**, i8, %struct.Base }>
14 void f(Sub*) { }
16 static int i[sizeof(Sub) == 13 ? 1 : -1];
H A Dapple-kext-indirect-call-2.C67 struct Sub : D1, D2 { struct in inherits:D1,D2
72 void FUNC3(Sub* p) {
/external/clang/test/SemaCXX/
H A Dpragma-pack.cpp10 struct Sub : public Base { struct in namespace:rdar8745206
15 int check[sizeof(Sub) == 5 ? 1 : -1];
27 struct Sub : virtual Base { struct in namespace:check2
32 int check[sizeof(Sub) == 13 ? 1 : -1];
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLSubSup.h50 enum SubSupType { Sub, Sup, SubSup }; enumerator in enum:WebCore::RenderMathMLSubSup::SubSupType
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local
72 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
76 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
77 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp57 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V); local
61 BinaryOperator *SubClone = this->clone(Sub);
74 Sub->setHasNoUnsignedWrap();
78 SubClone = this->clone(Sub);
91 Sub->setHasNoSignedWrap();
95 SubClone = this->clone(Sub);
108 Sub->setHasNoUnsignedWrap(false);
112 SubClone = this->clone(Sub);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp172 const MCExpr *Sub = local
176 Asm->OutStreamer.EmitValue(Sub, sizeof(uint32_t), 0);
/external/clang/test/PCH/
H A Dcxx-templates.h73 template <class T> class Sub : public UseBase<int> { }; class in inherits:UseBase
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp98 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local
99 Value *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
102 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
103 Value *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
/external/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);
45 if (!Sub.count(*I))
H A DCodeGenRegisters.cpp846 // Sub-class doesn't exist, create a new one.
1484 // Build list of (Super, Sub) pairs for this SubIdx.
1489 const CodeGenRegister *Sub = Super->getSubRegs().find(SubIdx)->second; local
1490 assert(Sub && "Missing sub-register");
1491 SSPairs.push_back(std::make_pair(Super, Sub));
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp149 Value *Sub = 0; local
151 Sub = Builder->CreateSub(X, Y, "suba");
153 Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc");
154 if (Sub)
156 BinaryOperator::CreateMul(Sub,
527 if (SubOperator *Sub = dyn_cast<SubOperator>(Op0))
528 if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap())
529 return BinaryOperator::CreateSDiv(Sub->getOperand(1),
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp470 static bool ShouldBreakUpSubtract(Instruction *Sub) { argument
472 if (BinaryOperator::isNeg(Sub))
477 if (isReassociableOp(Sub->getOperand(0), Instruction::Add) ||
478 isReassociableOp(Sub->getOperand(0), Instruction::Sub))
480 if (isReassociableOp(Sub->getOperand(1), Instruction::Add) ||
481 isReassociableOp(Sub->getOperand(1), Instruction::Sub))
483 if (Sub->hasOneUse() &&
484 (isReassociableOp(Sub
494 BreakUpSubtract(Instruction *Sub, DenseMap<AssertingVH<Value>, unsigned> &ValueRankMap) argument
[all...]
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp247 const MCExpr *Sub = NULL; local
252 Sub = MCSymbolRefExpr::Create(Sym, *Ctx);
254 Sub = MCConstantExpr::Create((int)SymbolicOp.SubtractSymbol.Value, *Ctx);
263 if (Sub) {
266 LHS = MCBinaryExpr::CreateSub(Add, Sub, *Ctx);
268 LHS = MCUnaryExpr::CreateMinus(Sub, *Ctx);
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp1008 clang::Module *Sub = Module->findSubmodule(Name); local
1010 if (!Sub) {
1040 Sub = Module->findSubmodule(Best[0]);
1044 if (!Sub) {
1053 Module = Sub;
/external/clang/lib/Lex/
H A DModuleMap.cpp54 Module *Sub = lookupModuleQualified(Unresolved.Id[I].first, local
56 if (!Sub) {
66 Context = Sub;
261 if (Module *Sub = lookupModuleQualified(Name, Context))
262 return Sub;
279 if (Module *Sub = lookupModuleQualified(Name, Parent))
280 return std::make_pair(Sub, false);
H A DPPDirectives.cpp306 StringRef Sub = Directive.substr(2); local
307 if (Sub.empty() || // "if"
308 Sub == "def" || // "ifdef"
309 Sub == "ndef") { // "ifndef"
318 StringRef Sub = Directive.substr(1); local
319 if (Sub == "ndif") { // "endif"
333 } else if (Sub == "lse") { // "else".
356 } else if (Sub == "lif") { // "elif".
/external/llvm/include/llvm/MC/
H A DMCExpr.h327 Sub, ///< Subtraction. enumerator in enum:llvm::MCBinaryExpr::Opcode
410 return Create(Sub, LHS, RHS, Ctx);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp763 SDValue Sub = DAG.getNode(ISD::SUB, dl, MVT::i32, StackPointer, Size); local
781 Sub,
784 // The Sub result contains the new stack start address, so it
788 Sub);
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp497 const MCExpr *Sub = NULL; local
502 Sub = MCSymbolRefExpr::Create(Sym, *Ctx);
504 Sub = MCConstantExpr::Create(SymbolicOp.SubtractSymbol.Value, *Ctx);
513 if (Sub) {
516 LHS = MCBinaryExpr::CreateSub(Add, Sub, *Ctx);
518 LHS = MCUnaryExpr::CreateMinus(Sub, *Ctx);
/external/regex-re2/lib/codereview/
H A Dcodereview.py785 l = Sub(l, taken.keys())
808 def Sub(l1, l2): function
812 l = l1 + Sub(l2, l1)
999 pats = Sub(pats, taken) + ['path:'+f for f in files]
1419 extra = Sub(cl.files, files)
1540 cl.files = Sub(cl.files, oldfiles)
1549 files = Sub(files, cl.files)
1562 ocl.files = Sub(ocl.files, files)
1617 cl.cc = Sub(cl.cc, defaultcc)
1892 extra = Sub(c
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp2549 if (Stmt *Sub = CS->getSubStmt()) {
2553 while (isa<CaseStmt>(Sub)) {
2568 CS = cast<CaseStmt>(Sub);
2569 Sub = CS->getSubStmt();
2572 addStmt(Sub);
3571 const CompoundStmt *Sub = SE->getSubStmt(); local
3573 if (Sub->children()) {
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml151 | Sub Constructor in type:Opcode/t

Completed in 512 milliseconds

12