Searched refs:new_count (Results 1 – 7 of 7) sorted by relevance
/aosp12/art/runtime/jit/ |
H A D | jit-inl.h | 42 uint32_t new_count = old_count + samples; in AddSamples() local 48 uint32_t new_batch = RoundDown(new_count, kJitSamplesBatchSize); // Clear lower bits. in AddSamples() 50 if (!MaybeCompileMethod(self, method, old_count, new_count, with_backedges)) { in AddSamples() 61 method->SetCounter(new_count); in AddSamples()
|
H A D | jit.h | 482 uint32_t new_count,
|
H A D | jit.cc | 1496 uint32_t new_count, in MaybeCompileMethod() argument 1526 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) { in MaybeCompileMethod() 1535 if (old_count < OSRMethodThreshold() && new_count >= OSRMethodThreshold()) { in MaybeCompileMethod()
|
/aosp12/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
H A D | hsearch_r.c | 80 size_t hash, index, i, old_hash, old_count, new_count; in hsearch_r() local 116 new_count = (hsearch->index_mask + 1) * 2; in hsearch_r() 117 new_entries = calloc(new_count, sizeof(ENTRY)); in hsearch_r() 121 hsearch->index_mask = new_count - 1; in hsearch_r()
|
/aosp12/art/runtime/mirror/ |
H A D | string.h | 101 void SetCount(int32_t new_count) REQUIRES_SHARED(Locks::mutator_lock_) { in SetCount() argument 104 SetField32<false, false>(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count); in SetCount()
|
/aosp12/art/runtime/ |
H A D | monitor.cc | 1132 uint32_t new_count = lock_word.ThinLockCount() + 1; in MonitorEnter() local 1133 if (LIKELY(new_count <= LockWord::kThinLockMaxCount)) { in MonitorEnter() 1135 new_count, in MonitorEnter() 1234 uint32_t new_count = lock_word.ThinLockCount() - 1; in MonitorExit() local 1235 new_lw = LockWord::FromThinLockId(thread_id, new_count, lock_word.GCState()); in MonitorExit()
|
/aosp12/system/security/keystore2/src/ |
H A D | metrics_store.rs | 611 let new_count = match crash_count { in update_keystore_crash_sysprop() localVariable 634 if let Err(e) = write(KEYSTORE_CRASH_COUNT_PROPERTY, &new_count.to_string()) { in update_keystore_crash_sysprop()
|