Searched refs:Sub (Results 26 - 50 of 344) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/Module.framework/Headers/
H A DModule.h23 #include <Module/Sub.h>
/external/llvm/lib/Target/Hexagon/
H A DHexagonRDF.cpp27 if (RA.Sub == 0)
29 if (RB.Sub == 0)
51 if (RR.Sub == 0) {
H A DHexagonBitSimplify.cpp360 // For a register ref (pair Reg:Sub), set Begin to the position of the LSB
361 // of Sub in Reg, and set Width to the size of Sub in bits. Return true,
367 assert(RR.Sub == 0);
373 if (RR.Sub == 0) {
378 assert(RR.Sub == Hexagon::subreg_loreg || RR.Sub == Hexagon::subreg_hireg);
380 Begin = (RR.Sub == Hexagon::subreg_loreg ? 0 : 32);
846 // Calculate the register class that matches Reg:Sub. For example, if
854 if (RR.Sub
[all...]
H A DHexagonExpandCondsets.cpp217 Sub(Op.getSubReg()) {}
218 RegisterRef(unsigned R = 0, unsigned S = 0) : Reg(R), Sub(S) {}
220 return Reg == RR.Reg && Sub == RR.Sub;
224 return Reg < RR.Reg || (Reg == RR.Reg && Sub < RR.Sub);
226 unsigned Reg, Sub; member in struct:__anon12976::HexagonExpandCondsets::RegisterRef
232 unsigned getMaskForSub(unsigned Sub);
234 LaneBitmask getLaneMask(unsigned Reg, unsigned Sub);
289 unsigned HexagonExpandCondsets::getMaskForSub(unsigned Sub) { argument
316 getLaneMask(unsigned Reg, unsigned Sub) argument
[all...]
H A DHexagonBitTracker.h34 BitTracker::BitMask mask(unsigned Reg, unsigned Sub) const override;
/external/llvm/lib/MC/MCDisassembler/
H A DMCExternalSymbolizer.cpp101 const MCExpr *Sub = nullptr; local
106 Sub = MCSymbolRefExpr::create(Sym, Ctx);
108 Sub = MCConstantExpr::create((int)SymbolicOp.SubtractSymbol.Value, Ctx);
117 if (Sub) {
120 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx);
122 LHS = MCUnaryExpr::createMinus(Sub, Ctx);
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp84 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local
85 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
89 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
90 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
/external/swiftshader/third_party/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/testng/src/test/java/test/tmp/
H A DSub.java8 public class Sub extends Base { class in inherits:Base
/external/skia/include/private/
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/lib/Support/
H A DCommandLine.cpp126 for (const auto &Sub : RegisteredSubCommands) {
127 if (SC == Sub)
129 addLiteralOption(Opt, Sub, Name);
177 for (const auto &Sub : RegisteredSubCommands) {
178 if (SC == Sub)
180 addOption(O, Sub);
200 SubCommand &Sub = *SC; local
202 Sub.OptionsMap.erase(Name);
205 for (auto Opt = Sub.PositionalOpts.begin();
206 Opt != Sub
253 SubCommand &Sub = *SC; local
399 LookupOption(SubCommand &Sub, StringRef &Arg, StringRef &Value) argument
2118 getRegisteredOptions(SubCommand &Sub) argument
2125 HideUnrelatedOptions(cl::OptionCategory &Category, SubCommand &Sub) argument
2133 HideUnrelatedOptions(ArrayRef<const cl::OptionCategory *> Categories, SubCommand &Sub) argument
[all...]
/external/mockito/src/test/java/org/mockitousage/annotation/
H A DAnnotationsTest.java68 Sub sub = new Sub();
110 class Sub extends Base { class in class:AnnotationsTest
H A DCaptorAnnotationTest.java115 Sub sub = new Sub();
141 class Sub extends Base { class in class:CaptorAnnotationTest
/external/llvm/test/MC/Mips/
H A Dmicromips-multiply-instructions.s6 # for Multiply Add/Sub instructions.
8 # Multiply Add/Sub Instructions
/external/vixl/examples/aarch64/
H A Dfactorial.cc45 __ Sub(x1, x1, 1);
H A Dadd2-vectors.cc53 __ Sub(w2, w2, 16);
68 __ Sub(w2, w2, 1);
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
H A DExpressionParser.java26 import org.jacoco.examples.expressions.Sub;
55 e = new Sub(e, product());
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp181 const MCExpr *Sub = nullptr; local
186 Sub = MCSymbolRefExpr::create(Sym, Ctx);
188 Sub = MCConstantExpr::create(SymbolicOp.SubtractSymbol.Value, Ctx);
197 if (Sub) {
200 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx);
202 LHS = MCUnaryExpr::createMinus(Sub, Ctx);
/external/swiftshader/third_party/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<>, unsigned> &ValueRankMap) argument
[all...]
/external/guava/guava-testlib/test/com/google/common/testing/anotherpackage/
H A DForwardingWrapperTesterTest.java382 new ForwardingWrapperTester().testForwarding(Sub.class, new Function<Sub, Sub>() {
383 @Override public Sub apply(Sub sub) {
393 interface Sub extends Base { interface in class:ForwardingWrapperTesterTest
397 private static class ForwardingSub implements Sub {
398 private final Sub delegate;
400 ForwardingSub(Sub delegate) {
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp64 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V); local
68 BinaryOperator *SubClone = this->clone(Sub);
81 Sub->setHasNoUnsignedWrap();
85 SubClone = this->clone(Sub);
98 Sub->setHasNoSignedWrap();
102 SubClone = this->clone(Sub);
115 Sub->setHasNoUnsignedWrap(false);
119 SubClone = this->clone(Sub);
306 auto *Sub local
[all...]
/external/v8/src/regexp/arm64/
H A Dregexp-macro-assembler-arm64.cc293 __ Sub(capture_length, w11, capture_start_offset); // Length to check.
330 __ Sub(current_position_address, current_position_address,
346 __ Sub(w10, w10, 'a');
350 __ Sub(w10, w10, 224 - 'a');
365 __ Sub(current_input_offset().X(), current_position_address, input_end());
367 __ Sub(current_input_offset().X(), current_input_offset().X(),
399 __ Sub(x1, x1, Operand(capture_length, SXTW));
427 __ Sub(current_input_offset(), current_input_offset(), capture_length);
454 __ Sub(capture_length, w11, w10); // Length to check.
481 __ Sub(current_position_addres
[all...]
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp115 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local
116 Value *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
119 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
120 Value *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
/external/llvm/lib/Target/X86/
H A DX86WinAllocaExpander.cpp44 enum Lowering { TouchAndSub, Sub, Probe }; enumerator in enum:__anon13250::X86WinAllocaExpander::Lowering
108 return Sub;
166 case Sub:
228 case Sub:
235 // Sub.
/external/swiftshader/third_party/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);

Completed in 563 milliseconds

1234567891011>>