Searched refs:getZero (Results 1 - 15 of 15) sorted by relevance

/external/clang/test/Analysis/inlining/
H A Dpath-notes.c56 int *getZero() { function
65 *getZero() = 1; // expected-warning{{Dereference of null pointer}}
66 // expected-note@-1 {{Calling 'getZero'}}
67 // expected-note@-2 {{Returning from 'getZero'}}
72 return *getZero(); // expected-warning{{Dereference of null pointer}}
73 // expected-note@-1 {{Calling 'getZero'}}
74 // expected-note@-2 {{Returning from 'getZero'}}
79 int *a = getZero();
80 // expected-note@-1 {{Calling 'getZero'}}
81 // expected-note@-2 {{Returning from 'getZero'}}
[all...]
H A Dpath-notes.cpp159 int getZero() { function in namespace:ReturnZeroNote
173 int problem = 1 / getZero(); // expected-warning {{Division by zero}}
174 // expected-note@-1 {{Calling 'getZero'}}
175 // expected-note@-2 {{Returning from 'getZero'}}
2968 // CHECK-NEXT: <string>Calling &apos;getZero&apos;</string>
2970 // CHECK-NEXT: <string>Calling &apos;getZero&apos;</string>
3074 // CHECK-NEXT: <string>Returning from &apos;getZero&apos;</string>
3076 // CHECK-NEXT: <string>Returning from &apos;getZero&apos;</string>
/external/clang/test/Analysis/
H A Dinline.cpp19 int getZero() { return 0; } function in class:A
24 clang_analyzer_eval(a.getZero() == 0); // expected-warning{{TRUE}}
28 clang_analyzer_eval(copy.getZero() == 0); // expected-warning{{TRUE}}
400 // getZero is non-virtual.
401 clang_analyzer_eval(object->getZero() == 0); // expected-warning{{TRUE}}
402 clang_analyzer_eval(object->One::getZero() == 0); // expected-warning{{TRUE}}
403 clang_analyzer_eval(object->A::getZero() == 0); // expected-warning{{TRUE}}
/external/llvm/include/llvm/Support/
H A DBranchProbability.h38 static BranchProbability getZero() { return BranchProbability(0, 1); } function in class:llvm::BranchProbability
H A DScaledNumber.h522 static ScaledNumber getZero() { return ScaledNumber(0, 0); } function in class:llvm::ScaledNumber
882 *this = getZero();
/external/llvm/unittests/Support/
H A DBranchProbabilityTest.cpp27 EXPECT_EQ(0u, BP::getZero().getNumerator());
28 EXPECT_EQ(1u, BP::getZero().getDenominator());
115 EXPECT_EQ(BP::getZero(), BP(7, 7).getCompl());
/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp140 expected = APFloat::getZero(APFloat::IEEEquad, false);
147 expected = APFloat::getZero(APFloat::IEEEquad, true);
184 test = APFloat::getZero(APFloat::IEEEquad, false);
190 test = APFloat::getZero(APFloat::IEEEquad, false);
196 test = APFloat::getZero(APFloat::IEEEquad, true);
202 test = APFloat::getZero(APFloat::IEEEquad, true);
1225 P = APFloat::getZero(APFloat::IEEEdouble);
1228 P = APFloat::getZero(APFloat::IEEEdouble, true);
1308 TEST(APFloatTest, getZero) {
1330 APFloat test = APFloat::getZero(*GetZeroTes
[all...]
/external/llvm/include/llvm/ADT/
H A DAPFloat.h213 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) { function in class:llvm::APFloat
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp489 auto Max = Scaled64::getZero();
515 return Scaled64::getZero();
/external/llvm/lib/IR/
H A DConstants.cpp139 APFloat::getZero(APFloat::IEEEhalf));
142 APFloat::getZero(APFloat::IEEEsingle));
145 APFloat::getZero(APFloat::IEEEdouble));
148 APFloat::getZero(APFloat::x87DoubleExtended));
151 APFloat::getZero(APFloat::IEEEquad));
625 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp674 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
689 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
/external/clang/lib/AST/
H A DExprConstant.cpp5429 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
5447 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
7314 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
7447 Result = llvm::APFloat::getZero(Sem);
7554 APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy));
/external/llvm/lib/Support/
H A DAPFloat.cpp2428 APFloat decSig = APFloat::getZero(calcSemantics, sign);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp762 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);

Completed in 384 milliseconds