/external/swiftshader/third_party/LLVM/unittests/VMCore/ |
ConstantsTest.cpp | 22 Constant* NegOne = ConstantInt::get(Int1, static_cast<uint64_t>(-1), true); 23 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1)); 32 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One)); 36 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne)); 40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One)); 44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne)); 68 EXPECT_EQ(One, ConstantExpr::getMul(NegOne, One)); 72 EXPECT_EQ(One, ConstantExpr::getSDiv(NegOne, One)); 76 EXPECT_EQ(One, ConstantExpr::getSDiv(One, NegOne)); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/ |
state.h | 16 cloog_int_t negone; member in struct:cloogstate
|
/external/llvm/unittests/IR/ |
ConstantsTest.cpp | 29 Constant* NegOne = ConstantInt::get(Int1, static_cast<uint64_t>(-1), true); 30 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1)); 39 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One)); 43 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne)); 47 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One)); 51 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne)); 75 EXPECT_EQ(One, ConstantExpr::getMul(NegOne, One)); 79 EXPECT_EQ(One, ConstantExpr::getSDiv(NegOne, One)); 83 EXPECT_EQ(One, ConstantExpr::getSDiv(One, NegOne)); [all...] |
/art/test/003-omnibus-opcodes/src/ |
IntMath.java | 190 int negOne = -results[5]; 192 int result = (((minInt + plusOne) - plusOne) / negOne) / negOne; 404 long negOne = -results[5]; 406 long result = (((minLong + plusOne) - plusOne) / negOne) / negOne;
|
/art/test/107-int-math2/src/ |
Main.java | 356 int negOne = -results[5]; 358 int result = (((minInt + plusOne) - plusOne) / negOne) / negOne; 359 int shouldBeZero = minInt % negOne; 480 long negOne = -results[5]; 482 long result = (((minLong + plusOne) - plusOne) / negOne) / negOne; [all...] |
/prebuilts/go/darwin-x86/src/text/template/ |
exec_test.go | [all...] |
/prebuilts/go/linux-x86/src/text/template/ |
exec_test.go | [all...] |
/external/llvm/lib/Transforms/Utils/ |
IntegerDivision.cpp | 163 ConstantInt *NegOne; 169 NegOne = ConstantInt::getSigned(DivTy, -1); 175 NegOne = ConstantInt::getSigned(DivTy, -1); 284 Value *Tmp4 = Builder.CreateAdd(Divisor, NegOne); 320 Value *SR_2 = Builder.CreateAdd(SR_3, NegOne);
|
/external/llvm/test/CodeGen/Mips/ |
fp16instrinsmc.ll | 6 @negone = global float -1.000000e+00, align 4 43 %1 = load float, float* @negone, align 4
|
/prebuilts/go/darwin-x86/src/math/ |
pow_s390x.s | 11 #define NegOne 0xBFF0000000000000 194 MOVD $NegOne, R3
|
/prebuilts/go/linux-x86/src/math/ |
pow_s390x.s | 11 #define NegOne 0xBFF0000000000000 194 MOVD $NegOne, R3
|
/external/llvm/lib/Target/AMDGPU/ |
AMDGPUISelLowering.cpp | [all...] |
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
InstructionSimplify.cpp | [all...] |
ScalarEvolution.cpp | [all...] |
/external/icu/icu4c/source/test/intltest/ |
itrbnf.cpp | 671 llong negOne(0xffffffff, 0xffffffff); 675 LLAssert(negOne > (int32_t)-2); 685 LLAssert(negOne >= (int32_t)-2); [all...] |
/external/llvm/lib/Analysis/ |
InstructionSimplify.cpp | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
Reassociate.cpp | 255 Constant *NegOne = Ty->isIntOrIntVectorTy() ? 258 BinaryOperator *Res = CreateMul(Neg->getOperand(1), NegOne, "", Neg, Neg); [all...] |
LoopStrengthReduce.cpp | 345 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue( 348 Good.push_back(SE.getMulExpr(NegOne, S)); 350 Bad.push_back(SE.getMulExpr(NegOne, S)); [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
LoopStrengthReduce.cpp | 291 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue( 295 Good.push_back(SE.getMulExpr(NegOne, *I)); 298 Bad.push_back(SE.getMulExpr(NegOne, *I)); [all...] |
/external/clang/lib/CodeGen/ |
CGExprScalar.cpp | [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
InstCombineCompares.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
DAGCombiner.cpp | [all...] |
SelectionDAG.cpp | [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCompares.cpp | [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | 918 SDValue NegOne = 920 return getNode(ISD::XOR, DL, VT, Val, NegOne); [all...] |