HomeSort by relevance Sort by last modified time
    Searched full:iszero (Results 1 - 25 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
MatrixBase_isZero.cpp 4 cout << "m.isZero() returns: " << m.isZero() << endl;
5 cout << "m.isZero(1e-3) returns: " << m.isZero(1e-3) << endl;
  /external/chromium_org/net/quic/congestion_control/
paced_sender_test.cc 35 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
37 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
43 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
49 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
51 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
57 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
64 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
68 clock_.Now(), zero_time_).IsZero());
74 EXPECT_TRUE(paced_sender_->TimeUntilSend(clock_.Now(), zero_time_).IsZero());
inter_arrival_sender_test.cc 40 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero()) {
51 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
127 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
135 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
148 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
164 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
179 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
194 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
210 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
226 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
    [all...]
fix_rate_test.cc 65 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
69 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
85 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
102 NOT_HANDSHAKE).IsZero());
107 NOT_HANDSHAKE).IsZero());
leaky_bucket_test.cc 36 EXPECT_TRUE(leaky_bucket_->TimeRemaining(clock_.Now()).IsZero());
39 EXPECT_TRUE(leaky_bucket_->TimeRemaining(clock_.Now()).IsZero());
43 EXPECT_TRUE(leaky_bucket_->TimeRemaining(clock_.Now()).IsZero());
53 EXPECT_TRUE(leaky_bucket_->TimeRemaining(clock_.Now()).IsZero());
tcp_cubic_sender_test.cc 59 HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
89 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
96 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
103 NACK_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
111 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
118 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
140 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
147 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
184 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
191 NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA, NOT_HANDSHAKE).IsZero());
    [all...]
tcp_cubic_sender.cc 205 if (smoothed_rtt_.IsZero()) {
282 if (rtt.IsInfinite() || rtt.IsZero()) {
284 << (rtt.IsZero() ? "Zero" : "Infinite");
294 if (delay_min_.IsZero() || delay_min_ > rtt) {
298 if (smoothed_rtt_.IsZero()) {
  /external/chromium_org/gpu/command_buffer/common/
mailbox.cc 17 bool Mailbox::IsZero() const {
30 DCHECK(IsZero() || !memcmp(name, n, sizeof(name)));
mailbox.h 17 bool IsZero() const;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLength.h 95 bool isZero() const
108 if ((from.isZero() && isZero())
111 || (!from.isZero() && fromType != LengthTypePercentage && toType == LengthTypePercentage)
112 || (!isZero() && fromType == LengthTypePercentage && toType != LengthTypePercentage)
113 || (!from.isZero() && !isZero() && (fromType == LengthTypeEMS || fromType == LengthTypeEXS) && fromType != toType))
128 if (fromType == toType || from.isZero() || isZero() || fromType == LengthTypeEMS || fromType == LengthTypeEXS) {
131 if (isZero())
    [all...]
SVGTransformDistance.h 39 bool isZero() const;
  /external/chromium_org/mojo/public/tests/
buffer_unittest.cc 13 bool IsZero(void* p_buf, size_t size) {
30 EXPECT_TRUE(IsZero(small, 10));
34 EXPECT_TRUE(IsZero(large, 100*1024));
39 EXPECT_TRUE(IsZero(small, 10));
71 EXPECT_TRUE(IsZero(a, 10));
76 EXPECT_TRUE(IsZero(b, 10));
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthBox.h 97 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
Length.h 201 bool isZero() const
257 if (!from.isZero() && !isZero() && from.type() != type())
260 if (from.isZero() && isZero())
264 if (isZero())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
extra.decTest     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 52 if (!m_topLeft.width().isZero())
54 if (!m_topRight.width().isZero())
56 if (!m_bottomLeft.width().isZero())
58 if (!m_bottomRight.width().isZero())
BorderImageLengthBox.h 87 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
BorderImageLength.h 71 bool isZero() const
73 return (isLength() && m_length.isZero()) || (isNumber() && m_number);
  /external/chromium_org/ui/gfx/
vector2d.cc 13 bool Vector2d::IsZero() const {
vector2d_f.cc 17 bool Vector2dF::IsZero() const {
  /frameworks/native/services/surfaceflinger/
Transform.cpp 49 bool Transform::isZero(float f) {
54 return isZero(fabs(f) - 1.0f);
117 if (isZero(tx) && isZero(ty)) {
149 H.mType |= isZero(w) ? IDENTITY : TRANSLATE;
157 V.mType |= isZero(h) ? IDENTITY : TRANSLATE;
166 R.mType |= isZero(original_w) ? IDENTITY : TRANSLATE;
260 if (isZero(b) && isZero(c)) {
266 } else if (isZero(a) && isZero(d))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRect.cpp 54 bool FloatRoundedRect::Radii::isZero() const
56 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
  /external/chromium_org/net/quic/
quic_time.h 61 bool IsZero() const;
111 // Zero returns a QuicWallTime set to zero. IsZero will return true for this
122 // IsZero returns true if this object is the result of calling |Zero|.
123 bool IsZero() const;
  /external/chromium_org/content/browser/android/
overscroll_glow.cc 136 if (overscroll.IsZero()) {
147 if (!velocity.IsZero()) {
259 if (overscroll_delta.IsZero())
286 if (overscroll.IsZero() || velocity.IsZero())

Completed in 668 milliseconds

1 2 3 4 5 6 7 8 91011>>