Home
last modified time | relevance | path

Searched refs:new_count (Results 1 – 7 of 7) sorted by relevance

/aosp12/art/runtime/jit/
H A Djit-inl.h42 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 Djit.h482 uint32_t new_count,
H A Djit.cc1496 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 Dhsearch_r.c80 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 Dstring.h101 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 Dmonitor.cc1132 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 Dmetrics_store.rs611 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()