Searched refs:kSampleSize (Results 1 – 7 of 7) sorted by relevance
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.sample/ |
D | sample.stable.pass.cpp | 37 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/skqp/src/core/ |
D | SkScan_AntiPath.cpp | 602 constexpr int kSampleSize = 8; variable 609 if (n < kSampleSize || path.getBounds().isEmpty()) { in compute_complexity() 617 for(int i = 1; i < kSampleSize; ++i) { in compute_complexity() 622 avgLength = sumLength / (kSampleSize - 1); in compute_complexity() 669 uint8_t sampleVerbs[kSampleSize]; in ShouldUseDAA() 670 int verbCount = SkTMin(kSampleSize, path.getVerbs(sampleVerbs, kSampleSize)); in ShouldUseDAA()
|
/external/skia/src/core/ |
D | SkScan_AntiPath.cpp | 602 constexpr int kSampleSize = 8; variable 609 if (n < kSampleSize || path.getBounds().isEmpty()) { in compute_complexity() 617 for(int i = 1; i < kSampleSize; ++i) { in compute_complexity() 622 avgLength = sumLength / (kSampleSize - 1); in compute_complexity() 669 uint8_t sampleVerbs[kSampleSize]; in ShouldUseDAA() 670 int verbCount = SkTMin(kSampleSize, path.getVerbs(sampleVerbs, kSampleSize)); in ShouldUseDAA()
|
/external/v8/samples/ |
D | process.cc | 669 const int kSampleSize = 6; variable 670 StringHttpRequest kSampleRequests[kSampleSize] = { 730 if (!ProcessEntries(platform.get(), &processor, kSampleSize, kSampleRequests)) in main()
|
/external/skqp/tests/ |
D | CodecTest.cpp | 1744 constexpr int kSampleSize = 19; in DEF_TEST() local 1745 const auto size = codec->getSampledDimensions(kSampleSize); in DEF_TEST() 1752 options.fSampleSize = kSampleSize; in DEF_TEST()
|
/external/skia/tests/ |
D | CodecTest.cpp | 1744 constexpr int kSampleSize = 19; in DEF_TEST() local 1745 const auto size = codec->getSampledDimensions(kSampleSize); in DEF_TEST() 1752 options.fSampleSize = kSampleSize; in DEF_TEST()
|
/external/v8/src/regexp/ |
D | jsregexp.cc | 6646 static const int kSampleSize = 128; in Compile() local 6650 int half_way = (sample_subject->length() - kSampleSize) / 2; in Compile() 6652 i < sample_subject->length() && chars_sampled < kSampleSize; in Compile()
|