OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kStepSize
(Results
1 - 9
of
9
) 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/chromium_org/v8/src/
v8utils.h
312
static const int
kStepSize
= sizeof(uintptr_t) / sizeof(*dest); // NOLINT
313
ASSERT(dest +
kStepSize
> dest); // Check for overflow.
314
while (dest +
kStepSize
<= limit) {
317
dest +=
kStepSize
;
318
src +=
kStepSize
;
objects.cc
[
all
...]
/external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp
93
const UInt32
kStepSize
= ((UInt32)1 << 22);
94
if (curSize >
kStepSize
)
95
curSize = (SizeT)
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/chrome/app/
client_util.cc
169
const size_t
kStepSize
= 1024 * 1024;
171
ImagePreReader::PartialPreReadImage(dir->c_str(), percentage,
kStepSize
);
/external/chromium_org/chrome_frame/test/perf/
chrome_frame_perftest.cc
413
static const size_t
kStepSize
= 4 * 1024;
423
step_size_(
kStepSize
),
967
const size_t
kStepSize
= 2 * 1024 * 1024;
970
ImagePreReader::PreReadImage(module_path, 0,
kStepSize
));
972
ImagePreReader::PreReadImage(module_path, file_size / 4,
kStepSize
));
974
ImagePreReader::PreReadImage(module_path, file_size / 2,
kStepSize
));
976
ImagePreReader::PreReadImage(module_path, file_size,
kStepSize
));
978
ImagePreReader::PreReadImage(module_path, file_size * 2,
kStepSize
));
986
const size_t
kStepSize
= 2 * 1024 * 1024;
989
ImagePreReader::PartialPreReadImage(module_path, 0,
kStepSize
));
[
all
...]
Completed in 987 milliseconds