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

  /external/chromium_org/ui/views/examples/
progress_bar_example.cc 17 const double kStepSize = 0.1;
64 current_percent_ = SetToMax(current_percent_ - kStepSize);
66 current_percent_ = SetToMax(current_percent_ + kStepSize);
  /external/v8/src/
v8utils.h 214 static const int kStepSize = sizeof(uintptr_t) / sizeof(*dest); // NOLINT
215 while (dest <= limit - kStepSize) {
218 dest += kStepSize;
219 src += kStepSize;
utils.h 746 static const int kStepSize = sizeof(uintptr_t) / sizeof(*lhs); // NOLINT
747 while (lhs <= limit - kStepSize) {
752 lhs += kStepSize;
753 rhs += kStepSize;
objects.cc     [all...]
  /external/chromium_org/v8/src/
v8utils.h 367 static const int kStepSize = sizeof(uintptr_t) / sizeof(*dest); // NOLINT
368 ASSERT(dest + kStepSize > dest); // Check for overflow.
369 while (dest + kStepSize <= limit) {
372 dest += kStepSize;
373 src += kStepSize;
utils.h 840 static const int kStepSize = sizeof(uintptr_t) / sizeof(*lhs); // NOLINT
841 while (lhs <= limit - kStepSize) {
846 lhs += kStepSize;
847 rhs += kStepSize;
    [all...]
objects.cc     [all...]
  /external/chromium_org/chrome/app/
client_util.cc 60 const size_t kStepSize = 1024 * 1024;
62 ImagePreReader::PartialPreReadImage(dir->c_str(), percent, kStepSize);
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 93 const UInt32 kStepSize = ((UInt32)1 << 22);
94 if (curSize > kStepSize)
95 curSize = (SizeT)kStepSize;
  /external/chromium_org/chrome_frame/test/perf/
chrome_frame_perftest.cc 411 static const size_t kStepSize = 4 * 1024;
421 step_size_(kStepSize),
965 const size_t kStepSize = 2 * 1024 * 1024;
968 ImagePreReader::PreReadImage(module_path, 0, kStepSize));
970 ImagePreReader::PreReadImage(module_path, file_size / 4, kStepSize));
972 ImagePreReader::PreReadImage(module_path, file_size / 2, kStepSize));
974 ImagePreReader::PreReadImage(module_path, file_size, kStepSize));
976 ImagePreReader::PreReadImage(module_path, file_size * 2, kStepSize));
984 const size_t kStepSize = 2 * 1024 * 1024;
987 ImagePreReader::PartialPreReadImage(module_path, 0, kStepSize));
    [all...]

Completed in 206 milliseconds