OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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"
76
Cubic
::
Cubic
(const QuicClock* clock)
85
uint32
Cubic
::CubeRoot(uint64 a) {
111
void
Cubic
::Reset() {
123
QuicTcpCongestionWindow
Cubic
::CongestionWindowAfterPacketLoss(
137
QuicTcpCongestionWindow
Cubic
::CongestionWindowAfterAck(
143
//
Cubic
is "independent" of RTT, the update is limited by the time elapsed.
157
// Reset estimated_tcp_congestion_window_ to be in sync with
cubic
.
183
// 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/platform/scroll/
ScrollAnimatorNone.h
64
Cubic
,
/external/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp
60
// note that three points in a line doesn't simplify a
cubic
109
static int coincident_line(const SkDCubic&
cubic
, SkDCubic& reduction) {
110
reduction[0] = reduction[1] =
cubic
[0];
118
static int vertical_line(const SkDCubic&
cubic
, SkDCubic& reduction) {
119
reduction[0] =
cubic
[0];
120
reduction[1] =
cubic
[3];
124
static int horizontal_line(const SkDCubic&
cubic
, SkDCubic& reduction) {
125
reduction[0] =
cubic
[0];
126
reduction[1] =
cubic
[3];
131
static int check_quadratic(const SkDCubic&
cubic
, SkDCubic& reduction)
275
SkDCubic
cubic
;
local
[
all
...]
/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/pathops/
SkReduceOrder.cpp
60
// note that three points in a line doesn't simplify a
cubic
109
static int coincident_line(const SkDCubic&
cubic
, SkDCubic& reduction) {
110
reduction[0] = reduction[1] =
cubic
[0];
118
static int vertical_line(const SkDCubic&
cubic
, SkDCubic& reduction) {
119
reduction[0] =
cubic
[0];
120
reduction[1] =
cubic
[3];
124
static int horizontal_line(const SkDCubic&
cubic
, SkDCubic& reduction) {
125
reduction[0] =
cubic
[0];
126
reduction[1] =
cubic
[3];
131
static int check_quadratic(const SkDCubic&
cubic
, SkDCubic& reduction)
275
SkDCubic
cubic
;
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
...]
Completed in 93 milliseconds