HomeSort by relevance Sort by last modified time
    Searched refs:Sub (Results 201 - 225 of 299) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 517 HANDLEBINOP(Sub)
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.cc 143 // Add/sub extended supports shift <= 4. We want to support exactly the
526 // Add/sub with carry (immediate or ROR shifted register.)
532 // Add/sub with carry (shifted register).
543 // Add/sub with carry (extended register).
545 // Add/sub extended supports a shift <= 4. We want to support exactly the
    [all...]
  /external/vixl/test/
test-disasm-a64.cc 140 COMPARE(dci(0x4b000021), "sub w1, w1, w0");
305 COMPARE(sub(w0, w1, Operand(0xff)), "sub w0, w1, #0xff (255)");
306 COMPARE(sub(x2, x3, Operand(0x3ff)), "sub x2, x3, #0x3ff (1023)");
307 COMPARE(sub(w4, w5, Operand(0xfff)), "sub w4, w5, #0xfff (4095)");
308 COMPARE(sub(x6, x7, Operand(0x1000)), "sub x6, x7, #0x1000 (4096)");
309 COMPARE(sub(w8, w9, Operand(0xff000)), "sub w8, w9, #0xff000 (1044480)")
    [all...]
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 53 OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) OPERATOR(Shl) OPERATOR(Shr) \
60 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 656 if (Opc == Instruction::Sub) {
746 // If this is "gep i8* Ptr, (sub 0, V)", fold this as:
747 // "inttoptr (sub (ptrtoint Ptr), V)"
752 if (CE && CE->getOpcode() == Instruction::Sub &&
777 // Do not try the incorporate the sub-GEP if some index is not a number.
    [all...]
BasicAliasAnalysis.cpp 235 case Instruction::Sub:
    [all...]
LazyValueInfo.cpp 850 case Instruction::Sub:
851 Result.markConstantRange(LHSRange.sub(RHSRange));
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 241 e.opcode = Instruction::Sub;
415 case Instruction::Sub:
    [all...]
LoopRerollPass.cpp 75 // rooted at the induction variable (excepting the sub-DAGs which root the
637 case Instruction::Sub:
    [all...]
  /external/opencv/cxcore/src/
cxarithm.cpp 242 ICV_DEF_BIN_ARI_ALL( CV_SUB_R, Sub, CV_FAST_CAST_8U )
259 ICV_DEF_INIT_ARITHM_FUNC_TAB( Sub, C1R )
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.h 321 // Can't use the DECLARE-macro here because of sub-classes.
800 DECLARE_CONCRETE_INSTRUCTION(MultiplySubD, "multiply-sub-d")
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 376 // Can't use the DECLARE-macro here because of sub-classes.
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 322 // Can't use the DECLARE-macro here because of sub-classes.
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 318 // Can't use the DECLARE-macro here because of sub-classes.
782 DECLARE_CONCRETE_INSTRUCTION(MultiplySubD, "multiply-sub-d")
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.h 311 // Can't use the DECLARE-macro here because of sub-classes.
747 DECLARE_CONCRETE_INSTRUCTION(MultiplySubD, "multiply-sub-d")
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 86 case Instruction::Sub:
110 case AtomicRMWInst::Sub: return bitc::RMW_SUB;
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 86 case Instruction::Sub:
110 case AtomicRMWInst::Sub: return bitc::RMW_SUB;
    [all...]
  /art/compiler/utils/arm/
assembler_arm32_test.cc 787 TEST_F(AssemblerArm32Test, Sub) {
788 T5Helper(&arm::Arm32Assembler::sub, false, "sub{cond}{s} {reg1}, {reg2}, {shift}", "sub");
792 T4Helper(&arm::Arm32Assembler::subs, false, "sub{cond}s {reg1}, {reg2}, {shift}", "subs");
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 351 TEST_F(ConstantRangeTest, Sub) {
352 EXPECT_EQ(Full.sub(APInt(16, 4)), Full);
353 EXPECT_EQ(Full.sub(Full), Full);
354 EXPECT_EQ(Full.sub(Empty), Empty);
355 EXPECT_EQ(Full.sub(One), Full);
356 EXPECT_EQ(Full.sub(Some), Full);
357 EXPECT_EQ(Full.sub(Wrap), Full);
358 EXPECT_EQ(Empty.sub(Empty), Empty);
359 EXPECT_EQ(Empty.sub(One), Empty);
360 EXPECT_EQ(Empty.sub(Some), Empty)
    [all...]

Completed in 1001 milliseconds

1 2 3 4 5 6 7 891011>>