Home
last modified time | relevance | path

Searched refs:kJitSamplesBatchSize (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jit/
Djit-inl.h47 uint32_t old_batch = RoundDown(old_count, kJitSamplesBatchSize); // Clear lower bits. in AddSamples()
48 uint32_t new_batch = RoundDown(new_count, kJitSamplesBatchSize); // Clear lower bits. in AddSamples()
Djit.h70 static constexpr uint32_t kJitSamplesBatchSize = 512; // Must be power of 2. variable
Djit.cc70 static constexpr uint32_t kJitDefaultCompileThreshold = 20 * kJitSamplesBatchSize;
72 static constexpr uint32_t kJitStressDefaultCompileThreshold = 2 * kJitSamplesBatchSize;
118 const uint32_t kJitThresholdStep = Jit::kSlowMode ? 1u : kJitSamplesBatchSize; in CreateFromRuntimeArguments()