Searched defs:z_ (Results 1 - 12 of 12) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dcgnr_linear_operator.h83 : A_(A), D_(D), z_(new double[A.num_rows()]) {
88 std::fill(z_.get(), z_.get() + A_.num_rows(), 0.0);
91 A_.RightMultiply(x, z_.get());
94 A_.LeftMultiply(z_.get(), y);
114 scoped_array<double> z_; member in class:ceres::internal::CgnrLinearOperator
H A Dparameter_block_ordering_test.cc68 problem_.AddParameterBlock(z_, 5);
72 problem_.AddResidualBlock(new DummyCostFunction<6, 5, 4>, NULL, z_, y_);
73 problem_.AddResidualBlock(new DummyCostFunction<3, 3, 5>, NULL, x_, z_);
74 problem_.AddResidualBlock(new DummyCostFunction<7, 5, 3>, NULL, z_, x_);
76 z_, x_, w_);
80 double x_[3], y_[4], z_[5], w_[6]; member in class:ceres::internal::SchurOrderingTest
127 problem_.SetParameterBlockConstant(z_);
H A Ddynamic_numeric_diff_cost_function_test.cc320 z_.resize(3);
321 z_[0] = 2.0;
322 z_[1] = 4.0;
323 z_[2] = 6.0;
328 parameter_blocks_[2] = &z_[0];
347 jacobian_vect_[2].resize(7 * z_.size(), -100000);
352 const double sum_z = z_[0] + 3.0 * z_[1] + 6.0 * z_[2];
416 vector<double> z_; member in class:ceres::internal::ThreeParameterCostFunctorTest
[all...]
H A Ddynamic_autodiff_cost_function_test.cc319 z_.resize(3);
320 z_[0] = 2.0;
321 z_[1] = 4.0;
322 z_[2] = 6.0;
327 parameter_blocks_[2] = &z_[0];
346 jacobian_vect_[2].resize(7 * z_.size(), -100000);
351 const double sum_z = z_[0] + 3.0 * z_[1] + 6.0 * z_[2];
415 vector<double> z_; member in class:ceres::internal::ThreeParameterCostFunctorTest
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dpoint3_f.h20 Point3F() : x_(0), y_(0), z_(0) {}
22 Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {}
24 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {}
38 float z() const { return z_; }
42 void set_z(float z) { z_ = z; }
47 z_ = z;
54 z_ += v.z();
61 z_ -= v.z();
68 float dz = z_ - other.z_;
80 float z_; member in class:gfx::Point3F
[all...]
H A Dvector3d_f.h34 float z() const { return z_; }
35 void set_z(float z) { z_ = z; }
51 z_ = z_ <= other.z_ ? z_ : other.z_;
57 z_ = z_ >= other.z_
78 float z_; member in class:gfx::Vector3dF
[all...]
/external/chromium_org/cc/resources/
H A Dlayer_quad.h25 Edge() : x_(0), y_(0), z_(0) {}
30 float z() const { return z_; }
34 void set_z(float z) { z_ = z; }
38 z_ = z;
43 void move_z(float dz) { z_ += dz; }
47 z_ += dz;
52 void scale_z(float sz) { z_ *= sz; }
56 z_ *= sz;
69 float z_; member in class:cc::LayerQuad::Edge
/external/chromium_org/net/quic/crypto/
H A Dcert_compressor.cc425 explicit ScopedZLib(Type type) : z_(NULL), type_(type) {}
429 z_ = z;
438 if (!z_) {
443 deflateEnd(z_);
445 inflateEnd(z_);
447 z_ = NULL;
450 z_stream* z_; member in class:net::__anon9419::ScopedZLib
/external/deqp/framework/common/
H A DtcuVector.hpp108 Vector (T x_, T y_, T z_);
109 Vector (T x_, T y_, T z_, T w_);
196 inline Vector<T, Size>::Vector (T x_, T y_, T z_) argument
201 m_data[2] = z_;
205 inline Vector<T, Size>::Vector (T x_, T y_, T z_, T w_) argument
210 m_data[2] = z_;
/external/chromium_org/testing/gtest/test/
H A Dgtest-printers_test.cc127 UnprintableInFoo() : z_(0) { memcpy(xy_, "\xEF\x12\x0\x0\x34\xAB\x0\x0", 8); }
128 double z() const { return z_; }
131 double z_; member in class:foo::UnprintableInFoo
/external/gtest/test/
H A Dgtest-printers_test.cc127 UnprintableInFoo() : z_(0) { memcpy(xy_, "\xEF\x12\x0\x0\x34\xAB\x0\x0", 8); }
130 double z_; member in class:foo::UnprintableInFoo
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp195 const float z_ = baseDepth + rng.getFloat(-depthNoise, +depthNoise); local
197 vertices[y*gridsize + x] = Vec3(x_, y_, z_);

Completed in 1197 milliseconds