OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kLimit
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/v8/test/cctest/
test-hashing.cc
146
static const uint32_t
kLimit
= 1000;
149
check(PseudoRandom(i, j) %
kLimit
);
test-regexp.cc
558
static const unsigned
kLimit
= 1000;
561
bool seen[
kLimit
];
562
for (unsigned i = 0; i <
kLimit
; i++) seen[i] = false;
564
for (unsigned k = 0; k <
kLimit
; k++) \
569
unsigned next = PseudoRandom(i, j) %
kLimit
;
590
int val = PseudoRandom(j, i) %
kLimit
;
597
val = PseudoRandom(i + j, i - j) %
kLimit
;
611
static const int
kLimit
= 1000;
618
range[j] = PseudoRandom(i + 25, j + 87) %
kLimit
;
634
for (int p = 0; p <
kLimit
; p++)
[
all
...]
/external/chromium_org/base/strings/
utf_offset_string_conversions_unittest.cc
77
const size_t
kLimit
= 10;
83
LimitOffset<string16>(
kLimit
));
97
LimitOffset<string16>(
kLimit
));
/external/chromium_org/third_party/skia/samplecode/
SampleOvalTest.cpp
13
static const SkScalar
kLimit
= SK_Scalar1 * kILimit;
93
if (fSize.fWidth <
kLimit
) {
/external/chromium_org/content/browser/appcache/
appcache_url_request_job.cc
187
const int64
kLimit
= 500 * 1000;
189
handler_source_buffer_->SetCapacity(
kLimit
);
194
kLimit
,
view_appcache_internals_job.cc
602
const int64
kLimit
= 100 * 1000;
604
std::min(
kLimit
, response_info->response_data_size());
/external/chromium_org/content/browser/android/java/
gin_java_script_to_java_types_coercion.cc
47
const int64
kLimit
= (GG_INT64_C(1) << 63) - static_cast<uint64>(1 << 10);
48
DCHECK(
kLimit
> 0);
49
const double kLargestDoubleLessThanInt64Max =
kLimit
;
50
const double kSmallestDoubleGreaterThanInt64Min = -
kLimit
;
Completed in 498 milliseconds