OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cubic_shift
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/quic/congestion_control/
cube_root.cc
70
//
cubic_shift
1, 1, 1, 2, 2, 2, 3, 3, 3, 4, ...
71
uint32
cubic_shift
= (msb - 4);
local
72
cubic_shift
= ((
cubic_shift
* 342) >> 10); // Div by 3, biased high.
75
uint32 down_shifted_to_6bit = (a >> (
cubic_shift
* 3));
76
uint64 root = ((cube_root_table[down_shifted_to_6bit] + 10) <<
cubic_shift
)
cubic.cc
94
//
cubic_shift
1, 1, 1, 2, 2, 2, 3, 3, 3, 4, ...
95
uint32
cubic_shift
= (msb - 4);
local
96
cubic_shift
= ((
cubic_shift
* 342) >> 10); // Div by 3, biased high.
99
uint32 down_shifted_to_6bit = (a >> (
cubic_shift
* 3));
100
uint64 root = ((cube_root_table[down_shifted_to_6bit] + 10) <<
cubic_shift
)
Completed in 594 milliseconds