HomeSort by relevance Sort by last modified time
    Searched defs:Cubic (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/net/quic/congestion_control/
cubic.h 5 // Cubic algorithm, helper class to TCP cubic.
21 class NET_EXPORT_PRIVATE Cubic {
23 explicit Cubic(const QuicClock* clock);
25 // Call after a timeout to reset the cubic state.
36 // follows a cubic function that depends on the time passed since last
43 // Calculates the cubic root using a table lookup followed by one Newton-
74 // Origin point of cubic function.
77 // Time to origin point of cubic function in 2^10 fractions of a second.
80 // Last congestion window in packets computed by cubic function
    [all...]
cubic.cc 5 #include "net/quic/congestion_control/cubic.h"
72 Cubic::Cubic(const QuicClock* clock)
81 uint32 Cubic::CubeRoot(uint64 a) {
107 void Cubic::Reset() {
119 QuicTcpCongestionWindow Cubic::CongestionWindowAfterPacketLoss(
133 QuicTcpCongestionWindow Cubic::CongestionWindowAfterAck(
139 // Cubic is "independent" of RTT, the update is limited by the time elapsed.
153 // Reset estimated_tcp_congestion_window_ to be in sync with cubic.
179 // We have a new cubic congestion window
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Ease.java 34 static class Cubic {
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
Ease.java 34 static class Cubic {
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
Ease.java 34 static class Cubic {
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollAnimatorNone.h 65 Cubic,
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteGeometrySink.cpp 88 } Cubic[4], Quadratic[3];
90 static bool check_quadratic(const Cubic& cubic, Quadratic& reduction) {
91 float dx10 = cubic[1].x - cubic[0].x;
92 float dx23 = cubic[2].x - cubic[3].x;
93 float midX = cubic[0].x + dx10 * 3 / 2;
94 //NOTE: !approximately_equal(midX - cubic[3].x, dx23 * 3 / 2)
96 if (!approximately_equal(midX, (dx23 * 3 / 2) + cubic[3].x))
118 Cubic cubic = { { prevPt.x, prevPt.y }, local
    [all...]
  /external/skia/src/utils/win/
SkDWriteGeometrySink.cpp 88 } Cubic[4], Quadratic[3];
90 static bool check_quadratic(const Cubic& cubic, Quadratic& reduction) {
91 float dx10 = cubic[1].x - cubic[0].x;
92 float dx23 = cubic[2].x - cubic[3].x;
93 float midX = cubic[0].x + dx10 * 3 / 2;
94 //NOTE: !approximately_equal(midX - cubic[3].x, dx23 * 3 / 2)
96 if (!approximately_equal(midX, (dx23 * 3 / 2) + cubic[3].x))
118 Cubic cubic = { { prevPt.x, prevPt.y }, local
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp 137 // note that three points in a line doesn't simplify a cubic
195 static int coincident_line(const SkDCubic& cubic, SkDCubic& reduction) {
196 reduction[0] = reduction[1] = cubic[0];
204 static int vertical_line(const SkDCubic& cubic, SkReduceOrder::Style reduceStyle,
207 reduction[0] = cubic[0];
208 reduction[1] = cubic[3];
214 int roots = SkDCubic::FindExtrema(cubic[0].fY, cubic[1].fY, cubic[2].fY, cubic[3].fY, tValues)
442 SkDCubic cubic; local
    [all...]
  /external/skia/src/pathops/
SkReduceOrder.cpp 137 // note that three points in a line doesn't simplify a cubic
195 static int coincident_line(const SkDCubic& cubic, SkDCubic& reduction) {
196 reduction[0] = reduction[1] = cubic[0];
204 static int vertical_line(const SkDCubic& cubic, SkReduceOrder::Style reduceStyle,
207 reduction[0] = cubic[0];
208 reduction[1] = cubic[3];
214 int roots = SkDCubic::FindExtrema(cubic[0].fY, cubic[1].fY, cubic[2].fY, cubic[3].fY, tValues)
442 SkDCubic cubic; local
    [all...]

Completed in 212 milliseconds