HomeSort by relevance Sort by last modified time
    Searched refs:too_low (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/
chrome_page_zoom_unittest.cc 79 double too_low = 0.01; local
80 std::vector<double> factors = chrome_page_zoom::PresetZoomFactors(too_low);
81 EXPECT_FALSE(content::ZoomValuesEqual(factors.front(), too_low));
89 double too_low = -99.0; local
90 std::vector<double> levels = chrome_page_zoom::PresetZoomLevels(too_low);
91 EXPECT_FALSE(content::ZoomValuesEqual(levels.front(), too_low));
enumerate_modules_model_win.cc 390 bool too_low = version_min.IsValid() && local
396 version_ok = !too_low && !too_high;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fast-dtoa.cc 58 // * unsafe_interval == (too_high - too_low).f() * unit
82 // ]too_low; too_high[ with too_low < w < too_high
108 // too_low - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
111 // Note that the value of buffer could lie anywhere inside the range too_low
165 // The safe interval is [too_low + 2 ulp; too_high - 2 ulp]
166 // Since too_low = too_high - unsafe_interval this is equivalent to
407 DiyFp too_low = DiyFp(low.f() - unit, low.e());
409 // too_low and too_high are guaranteed to lie outside the interval we want the
411 DiyFp unsafe_interval = DiyFp::Minus(too_high, too_low);
    [all...]
  /external/chromium_org/v8/src/
fast-dtoa.cc 36 // * unsafe_interval == (too_high - too_low).f() * unit
60 // ]too_low; too_high[ with too_low < w < too_high
86 // too_low - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
89 // Note that the value of buffer could lie anywhere inside the range too_low
143 // The safe interval is [too_low + 2 ulp; too_high - 2 ulp]
144 // Since too_low = too_high - unsafe_interval this is equivalent to
383 DiyFp too_low = DiyFp(low.f() - unit, low.e()); local
385 // too_low and too_high are guaranteed to lie outside the interval we want the
387 DiyFp unsafe_interval = DiyFp::Minus(too_high, too_low);
    [all...]

Completed in 2860 milliseconds