Home
last modified time | relevance | path

Searched refs:kSampleSize (Results 1 – 4 of 4) sorted by relevance

/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.sample/
Dsample.stable.pass.cpp37 const unsigned kSampleSize = 20; in test_stability() local
46 std::sample(first, last, out, kSampleSize, g); in test_stability()
47 unstable |= !std::is_sorted(oa, oa + kSampleSize); in test_stability()
/external/libcxx/test/std/experimental/algorithms/alg.random.sample/
Dsample.stable.pass.cpp35 const unsigned kSampleSize = 20; in test_stability() local
44 std::experimental::sample(first, last, out, kSampleSize, g); in test_stability()
45 unstable |= !std::is_sorted(oa, oa + kSampleSize); in test_stability()
/external/v8/samples/
Dprocess.cc647 const int kSampleSize = 6; variable
648 StringHttpRequest kSampleRequests[kSampleSize] = {
708 if (!ProcessEntries(platform, &processor, kSampleSize, kSampleRequests)) in main()
/external/v8/src/regexp/
Djsregexp.cc6629 static const int kSampleSize = 128; in Compile() local
6633 int half_way = (sample_subject->length() - kSampleSize) / 2; in Compile()
6635 i < sample_subject->length() && chars_sampled < kSampleSize; in Compile()