Searched refs:Zeros (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/ui/gfx/
H A Dmatrix3_unittest.cc16 Matrix3F zeros = Matrix3F::Zeros();
49 EXPECT_EQ(0.0f, Matrix3F::Zeros().Determinant());
53 Matrix3F matrix = Matrix3F::Zeros();
72 Matrix3F singular = Matrix3F::Zeros();
77 EXPECT_EQ(Matrix3F::Zeros(), singular.Inverse());
79 Matrix3F regular = Matrix3F::Zeros();
100 Matrix3F matrix = Matrix3F::Zeros();
104 Matrix3F eigenvectors = Matrix3F::Zeros();
116 Matrix3F matrix = Matrix3F::Zeros();
120 Matrix3F eigenvectors = Matrix3F::Zeros();
[all...]
H A Dmatrix3_f.h17 static Matrix3F Zeros();
H A Dmatrix3_f.cc59 Matrix3F Matrix3F::Zeros() { function in class:gfx::Matrix3F
102 Matrix3F inverse = Matrix3F::Zeros();
105 return inverse; // Singular matrix. Return Zeros().
194 *eigenvectors = Zeros();
H A Dcolor_analysis.cc407 gfx::Matrix3F covariance = gfx::Matrix3F::Zeros();
555 gfx::Matrix3F eigenvectors = gfx::Matrix3F::Zeros();
H A Dcolor_analysis_unittest.cc288 EXPECT_EQ(gfx::Matrix3F::Zeros(),
294 EXPECT_TRUE(covariance == gfx::Matrix3F::Zeros());
311 gfx::Matrix3F expected_covariance = gfx::Matrix3F::Zeros();
/external/llvm/include/llvm/MC/
H A DMCObjectWriter.h171 const char Zeros[16] = { 0 }; local
174 OS << StringRef(Zeros, 16);
176 OS << StringRef(Zeros, N % 16);
/external/llvm/runtime/libprofile/
H A DCommonProfiling.c136 int Zeros = 0; local
145 if (write(OutFile, &Zeros, 4-(SavedArgsLength&3)) < 0) {
/external/llvm/lib/Support/
H A DConstantRange.cpp688 APInt Zeros(getBitWidth(), getUnsignedMax().countLeadingZeros());
689 if (Zeros.ugt(Other.getUnsignedMax()))
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp174 return llvm::ConstantExpr::getGetElementPtr(ConstStr, Zeros);
189 return llvm::ConstantExpr::getGetElementPtr(ConstStr, Zeros);
241 CGM.GetAddrOfConstantString(NameAndAttributes), Zeros);
281 llvm::Constant *Zeros[2]; member in class:__anon15214::CGObjCGNU
934 Zeros[0] = llvm::ConstantInt::get(LongTy, 0);
935 Zeros[1] = Zeros[0];
2330 llvm::Constant *offsetPointerIndexes[] = {Zeros[0],
2362 NULLPtr, 0x12L, ClassName.c_str(), 0, Zeros[0], GenerateIvarList(
2495 llvm::Constant *Idxs[] = {Zeros[
[all...]
H A DCodeGenModule.cpp2240 llvm::Constant *Zeros[] = { Zero, Zero }; local
2250 V = llvm::ConstantExpr::getGetElementPtr(GV, Zeros);
2310 Fields[2] = llvm::ConstantExpr::getGetElementPtr(GV, Zeros);
2352 llvm::Constant *Zeros[] = { Zero, Zero }; local
2375 V = llvm::ConstantExpr::getGetElementPtr(GV, Zeros);
2438 Fields[1] = llvm::ConstantExpr::getGetElementPtr(GV, Zeros);
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp3302 APInt Zeros(BitWidth, 0), Ones(BitWidth, 0);
3303 ComputeMaskedBits(U->getValue(), Zeros, Ones);
3304 return Zeros.countTrailingOnes();
3441 APInt Zeros(BitWidth, 0), Ones(BitWidth, 0);
3442 ComputeMaskedBits(U->getValue(), Zeros, Ones, TD);
3443 if (Ones == ~Zeros + 1)
3446 ConservativeResult.intersectWith(ConstantRange(Ones, ~Zeros + 1)));
/external/llvm/include/llvm/IR/
H A DIRBuilder.h1397 Value *Zeros = ConstantAggregateZero::get(VectorType::get(I32Ty, NumElts)); local
1398 return CreateShuffleVector(V, Undef, Zeros, Name + ".splat");
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1077 uint32_t Zeros = AndRHSMask.countLeadingZeros(); local
1078 APInt Mask = APInt::getLowBitsSet(BitWidth, BitWidth - Zeros);
/external/chromium/testing/gtest/test/
H A Dgtest_unittest.cc2778 TEST_F(FloatTest, Zeros) {
2951 TEST_F(DoubleTest, Zeros) {
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc2575 TEST_F(FloatTest, Zeros) {
2748 TEST_F(DoubleTest, Zeros) {
/external/gtest/test/
H A Dgtest_unittest.cc2778 TEST_F(FloatTest, Zeros) {
2951 TEST_F(DoubleTest, Zeros) {
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc3029 TEST_F(FloatTest, Zeros) {
3196 TEST_F(DoubleTest, Zeros) {
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp9544 APInt Zeros, Ones; local
9545 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9546 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
12053 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl); local
12054 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12097 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl); local
12098 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
15591 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl); local
15592 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);

Completed in 434 milliseconds