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

123

/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/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dtrace_templated_super.h31 class Sub : public Super<T> { class in namespace:blink
38 class HeapObject : public Sub<HeapObject> {
/external/chromium_org/v8/test/mjsunit/
H A Dfast-prototype.js37 function Sub() { function
50 (new Sub()).__proto__ = proto;
52 Sub.prototype = proto;
53 // Need to instantiate Sub to mark .prototype as prototype.
54 new Sub();
51 Sub.prototype = proto; class
/external/clang/test/SemaCXX/
H A Dpragma-pack.cpp11 struct Sub : public Base { struct in namespace:rdar8745206
16 int check[sizeof(Sub) == 5 ? 1 : -1];
28 struct Sub : virtual Base { struct in namespace:check2
33 int check[sizeof(Sub) == 13 ? 1 : -1];
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLSL_impl.h55 inline Self GrGLSLExpr<Self>::Sub(T0 in0, T1 in1) { function in class:GrGLSLExpr
108 return GrGLSLExpr1::Sub(in0, in1);
148 return GrGLSLExpr4::Sub(in0, in1);
160 return GrGLSLExpr4::Sub(in0, in1);
172 return GrGLSLExpr4::Sub(in0, in1);
/external/skia/src/gpu/gl/
H A DGrGLSL_impl.h55 inline Self GrGLSLExpr<Self>::Sub(T0 in0, T1 in1) { function in class:GrGLSLExpr
108 return GrGLSLExpr1::Sub(in0, in1);
148 return GrGLSLExpr4::Sub(in0, in1);
160 return GrGLSLExpr4::Sub(in0, in1);
172 return GrGLSLExpr4::Sub(in0, in1);
/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/lib/MC/
H A DMCExternalSymbolizer.cpp97 const MCExpr *Sub = nullptr; local
102 Sub = MCSymbolRefExpr::Create(Sym, Ctx);
104 Sub = MCConstantExpr::Create((int)SymbolicOp.SubtractSymbol.Value, Ctx);
113 if (Sub) {
116 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx);
118 LHS = MCUnaryExpr::CreateMinus(Sub, Ctx);
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp179 const MCExpr *Sub = nullptr; local
184 Sub = MCSymbolRefExpr::Create(Sym, Ctx);
186 Sub = MCConstantExpr::Create(SymbolicOp.SubtractSymbol.Value, Ctx);
195 if (Sub) {
198 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx);
200 LHS = MCUnaryExpr::CreateMinus(Sub, Ctx);
/external/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp137 int Sub = InstOffset - BlockToInstOffset[MII->getOperand(0).getMBB()]; local
138 unsigned Dist = Sub > 0 ? Sub : -Sub;
/external/llvm/lib/Target/X86/
H A DX86TargetObjectFile.cpp63 const SubOperator *Sub = dyn_cast<SubOperator>(CE); local
64 if (!Sub)
70 dyn_cast<PtrToIntOperator>(Sub->getOperand(0));
72 dyn_cast<PtrToIntOperator>(Sub->getOperand(1));
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp166 const MCExpr *Sub = MCBinaryExpr::CreateSub( local
169 Asm->OutStreamer.EmitValue(Sub, sizeof(uint32_t));
/external/llvm/lib/Target/Mips/
H A DMipsMCInstLower.cpp159 const MCBinaryExpr *Sub = MCBinaryExpr::CreateSub(Sym1, Sym2, *Ctx); local
161 return MCOperand::CreateExpr(MipsMCExpr::Create(Kind, Sub, *Ctx));
/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/lib/TableGen/
H A DSetTheory.cpp36 // (sub Add, Sub, ...) Set difference.
43 RecSet Add, Sub; variable
45 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
47 if (!Sub.count(*I))
/external/clang/test/PCH/
H A Dcxx-templates.h73 template <class T> class Sub : public UseBase<int> { }; class in inherits:UseBase
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp67 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V); local
71 BinaryOperator *SubClone = this->clone(Sub);
84 Sub->setHasNoUnsignedWrap();
88 SubClone = this->clone(Sub);
101 Sub->setHasNoSignedWrap();
105 SubClone = this->clone(Sub);
118 Sub->setHasNoUnsignedWrap(false);
122 SubClone = this->clone(Sub);
/external/chromium_org/third_party/jinja2/
H A Dnodes.py748 class Sub(BinExpr): class in inherits:BinExpr
/external/clang/test/SemaTemplate/
H A Ddependent-names.cpp329 struct Sub : public Main<int> { struct in namespace:rdar11242625
333 int arr[sizeof(Sub)];
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp72 enum class BinOpToken : unsigned { Invalid, Add, Sub, BitwiseAnd, member in class:llvm::RuntimeDyldCheckerExprEval::BinOpToken
150 case '-': Op = BinOpToken::Sub; break;
164 case BinOpToken::Sub:
/external/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp919 const MCExpr *Sub = local
930 const MCExpr *SubHa16 = PPCMCExpr::CreateHa(Sub, isDarwin, OutContext);
940 const MCExpr *SubLo16 = PPCMCExpr::CreateLo(Sub, isDarwin, OutContext);
/external/llvm/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp103 const MCBinaryExpr *Sub = MCBinaryExpr::CreateSub(Cur, Start, OutContext); local
104 const MCBinaryExpr *Add = MCBinaryExpr::CreateAdd(GOT, Sub, OutContext);

Completed in 306 milliseconds

123