Searched defs:base_value (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/ui/autofill/
H A Dloading_animation.cc36 double base_value = gfx::LinearAnimation::GetCurrentValue(); local
41 base_value -= kSecondDotDelayMs / kDurationMs;
43 base_value -= kThirdDotDelayMs / kDurationMs;
45 if (base_value < 0.0)
46 base_value = first_cycle_ ? 0.0 : base_value + 1.0;
48 double value = gfx::Tween::CalculateValue(gfx::Tween::EASE_OUT, base_value);
/external/chromium_org/tools/gn/
H A Dparse_tree.cc131 const Value* base_value = scope->GetValue(base_.value(), true); local
132 if (!base_value) {
136 if (!base_value->VerifyTypeIs(Value::LIST, err))
146 if (index_sizet >= base_value->list_value().size()) {
151 static_cast<int64>(base_value->list_value().size()) - 1) +
160 return base_value->list_value()[index_sizet];
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_csp.c126 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { argument
127 const int v = base_value << shift; // final uplifted value
140 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { argument
141 return (int)(base_value << shift);
/external/webp/src/enc/
H A Dpicture_csp.c126 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { argument
127 const int v = base_value << shift; // final uplifted value
140 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { argument
141 return (int)(base_value << shift);

Completed in 189 milliseconds