HomeSort by relevance Sort by last modified time
    Searched defs:Sub (Results 26 - 50 of 178) sorted by null

12 3 4 5 6 7 8

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DivRemPairs.cpp 111 Instruction *Sub = BinaryOperator::CreateSub(X, Mul);
123 // %rem = sub %x, %mul
125 // If the division dominates, it's already in the right place. The mul+sub
138 // %rem = sub %x, %mul
146 Sub->insertAfter(Mul);
149 // (sub X, (mul (div X, Y), Y)
150 RemInst->replaceAllUsesWith(Sub);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/
Eiffel.py 107 class Sub(Test):
111 super(Sub, self).m2_post(Result, arg)
124 s = Sub()
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.cpp 195 const MCExpr *Sub = MCBinaryExpr::createSub(
198 Asm->OutStreamer->EmitValue(Sub, sizeof(uint32_t));
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 210 const MCBinaryExpr *Sub = MCBinaryExpr::createSub(Sym1, Sym2, *Ctx);
212 return MCOperand::createExpr(MipsMCExpr::create(Kind, Sub, *Ctx));
  /external/python/cpython2/Demo/newmetaclasses/
Eiffel.py 107 class Sub(Test):
111 super(Sub, self).m2_post(Result, arg)
124 s = Sub()
  /external/python/cpython3/Lib/unittest/test/testmock/
testcallable.py 104 class Sub(CallableX):
107 class Multi(SomeClass, Sub):
111 for Klass in CallableX, Sub, Multi:
  /external/python/cpython3/Tools/demo/
eiffel.py 126 class Sub(Test):
131 super(Sub, self).m2_post(Result, arg)
139 s = Sub()
  /external/python/mock/mock/tests/
testcallable.py 104 class Sub(CallableX):
107 class Multi(SomeClass, Sub):
118 for Klass in CallableX, Sub, Multi, OldStyle, OldStyleSub:
  /external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/
Cloning.cpp 55 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V);
59 BinaryOperator *SubClone = this->clone(Sub);
72 Sub->setHasNoUnsignedWrap();
76 SubClone = this->clone(Sub);
89 Sub->setHasNoSignedWrap();
93 SubClone = this->clone(Sub);
106 Sub->setHasNoUnsignedWrap(false);
110 SubClone = this->clone(Sub);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 210 const MCBinaryExpr *Sub = MCBinaryExpr::createSub(Sym1, Sym2, *Ctx);
212 return MCOperand::createExpr(MipsMCExpr::create(Kind, Sub, *Ctx));
  /art/test/093-serialization/src/
Main.java 48 Sub sub = new Sub('X'); local
49 objStream.writeObject(sub);
63 Sub sub; local
66 sub = (Sub) objStream.readObject();
75 sub.check();
106 class Sub extends Base
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
String.c 746 CHAR16 *Sub;
749 Sub = StrCharSet;
754 StrCharSet = Sub;
787 CHAR8 *Sub;
790 Sub = StrCharSet;
795 StrCharSet = Sub;
  /external/gemmlowp/fixedpoint/
fixedpoint_msa.h 96 inline v4i32 Sub(v4i32 a, v4i32 b) {
101 inline v8i16 Sub(v8i16 a, v8i16 b) {
fixedpoint_neon.h 88 inline int32x4_t Sub(int32x4_t a, int32x4_t b) {
93 inline int16x8_t Sub(int16x8_t a, int16x8_t b) {
fixedpoint_sse.h 115 inline __m128i Sub(__m128i a, __m128i b) {
120 inline int16x8_m128i Sub(int16x8_m128i a, int16x8_m128i b) {
  /external/llvm/lib/TableGen/
SetTheory.cpp 36 // (sub Add, Sub, ...) Set difference.
43 RecSet Add, Sub;
45 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
47 if (!Sub.count(*I))
249 addOperator("sub", llvm::make_unique<SubOp>());
  /external/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 36 unsigned Reg, Sub;
38 return Reg < R.Reg || (Reg == R.Reg && Sub < R.Sub);
BitTracker.h 93 : Reg(R), Sub(S) {}
95 : Reg(MO.getReg()), Sub(MO.getSubReg()) {}
96 unsigned Reg, Sub;
407 // Return a sub-register mask that indicates which bits in Reg belong
408 // to the subregister Sub. These bits are assumed to be contiguous in
409 // the super-register, and have the same ordering in the sub-register
411 // Sub == 0, in this case, the function should return a mask that spans
414 virtual BitMask mask(unsigned Reg, unsigned Sub) const;
  /external/llvm/lib/Target/X86/
X86WinAllocaExpander.cpp 44 enum Lowering { TouchAndSub, Sub, Probe };
108 return Sub;
166 case Sub:
228 case Sub:
235 // Sub.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
SetTheory.cpp 47 // (sub Add, Sub, ...) Set difference.
54 RecSet Add, Sub;
56 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
58 if (!Sub.count(*I))
260 addOperator("sub", llvm::make_unique<SubOp>());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 35 unsigned Reg, Sub;
38 return Reg < R.Reg || (Reg == R.Reg && Sub < R.Sub);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86WinAllocaExpander.cpp 44 enum Lowering { TouchAndSub, Sub, Probe };
109 return Sub;
167 case Sub:
230 case Sub:
237 // Sub.
253 // Sub
  /external/v8/tools/clang/plugins/tests/
virtual_specifiers.cpp 127 class Sub : public MacroBase {
  /cts/tests/tests/libcoreapievolution/src/android/apievolution/cts/
ApiEvolutionTest.java 53 * that has a more specific (sub-) return type, but doesn't carry any annotation.
60 Sub.class, "myMethod", new Class[] { Integer.class },
219 /** Sub class for return type specialization tests. */
220 private static class Sub extends Base {
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 115 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
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);

Completed in 1083 milliseconds

12 3 4 5 6 7 8