HomeSort by relevance Sort by last modified time
    Searched refs:Zeros (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/ui/gfx/geometry/
matrix3_unittest.cc 16 Matrix3F zeros = Matrix3F::Zeros(); local
25 EXPECT_EQ(zeros, product_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();
    [all...]
matrix3_f.h 17 static Matrix3F Zeros();
matrix3_f.cc 59 Matrix3F Matrix3F::Zeros() {
102 Matrix3F inverse = Matrix3F::Zeros();
105 return inverse; // Singular matrix. Return Zeros().
194 *eigenvectors = Zeros();
  /external/llvm/lib/Support/
ScaledNumber.cpp 65 if (int Zeros = countLeadingZeros(Dividend64)) {
66 Shift -= Zeros;
67 Dividend64 <<= Zeros;
87 if (int Zeros = countTrailingZeros(Divisor)) {
88 Shift -= Zeros;
89 Divisor >>= Zeros;
97 if (int Zeros = countLeadingZeros(Dividend)) {
98 Shift -= Zeros;
99 Dividend <<= Zeros;
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 172 const char Zeros[16] = { 0 };
175 OS << StringRef(Zeros, 16);
177 OS << StringRef(Zeros, N % 16);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_multi_vector.h 39 // Clears the vector and inserts |length| zeros into each channel.
40 virtual void Zeros(size_t length);
audio_multi_vector_unittest.cc 176 // Starts with pushing some values to the vector, then test the Zeros method.
177 TEST_P(AudioMultiVectorTest, Zeros) {
180 vec.Zeros(2 * array_length());
283 vec2.Zeros(3); // 3 zeros in each channel.
293 // Elements 5, 6, 7 should have been replaced with zeros.
comfort_noise.cc 82 output->Zeros(requested_length);
sync_buffer.cc 91 Zeros(Size());
audio_multi_vector.cc 53 void AudioMultiVector::Zeros(size_t length) {
neteq_impl.cc 804 // TODO(minyue): treatment of under-run, filling zeros
    [all...]
  /external/llvm/lib/Target/PowerPC/Disassembler/
PPCDisassembler.cpp 318 unsigned Zeros = countTrailingZeros(Imm);
319 assert(Zeros < 8 && "Invalid CR bit value");
321 Inst.addOperand(MCOperand::CreateReg(CRRegs[7 - Zeros]));
  /external/chromium_org/ui/gfx/
color_analysis.cc 422 gfx::Matrix3F covariance = gfx::Matrix3F::Zeros();
588 gfx::Matrix3F eigenvectors = gfx::Matrix3F::Zeros();
color_analysis_unittest.cc 328 EXPECT_EQ(gfx::Matrix3F::Zeros(), ComputeColorCovariance(bitmap));
332 // The answer should be all zeros.
333 EXPECT_TRUE(covariance == gfx::Matrix3F::Zeros());
350 gfx::Matrix3F expected_covariance = gfx::Matrix3F::Zeros();
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsgamma.c 1069 int i, nItems, Zeros, Poles;
1095 Zeros = Poles = 0;
1098 if (z[i] == 0.) Zeros++;
    [all...]
cmsopt.c 921 int i, Zeros = 0, Poles = 0;
926 if (g ->Table16[i] == 0x0000) Zeros++;
930 if (Zeros == 1 && Poles == 1) return FALSE; // For linear tables
931 if (Zeros > (nEntries / 4)) return TRUE; // Degenerated, mostly zeros
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 175 return llvm::ConstantExpr::getGetElementPtr(ConstStr, Zeros);
190 return llvm::ConstantExpr::getGetElementPtr(ConstStr, Zeros);
241 CGM.GetAddrOfConstantCString(NameAndAttributes), Zeros);
280 // Some zeros used for GEPs in lots of places.
281 llvm::Constant *Zeros[2];
    [all...]
CodeGenModule.cpp     [all...]
  /external/llvm/lib/IR/
ConstantRange.cpp 690 APInt Zeros(getBitWidth(), getUnsignedMax().countLeadingZeros());
691 if (Zeros.ugt(Other.getUnsignedMax()))
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 700 // K! (i.e. trailing zeros in the binary representation of K!), and ^ is
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp     [all...]
  /external/chromium_org/testing/gtest/test/
gtest_unittest.cc     [all...]
  /external/gtest/test/
gtest_unittest.cc     [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc     [all...]

Completed in 1055 milliseconds

1 2