Home
last modified time | relevance | path

Searched refs:old_count (Results 1 – 16 of 16) sorted by relevance

/external/v8/src/wasm/
Dwasm-memory.cc145 size_t old_count = reserved_address_space_; in ReserveAddressSpace() local
146 if ((kAddressSpaceLimit - old_count) < num_bytes) return false; in ReserveAddressSpace()
147 if (reserved_address_space_.compare_exchange_weak(old_count, in ReserveAddressSpace()
148 old_count + num_bytes)) { in ReserveAddressSpace()
/external/grpc-grpc/src/core/lib/iomgr/
Dtcp_posix.cc198 gpr_atm old_count = in drop_uncovered() local
202 static_cast<int>(old_count), static_cast<int>(old_count) - 1); in drop_uncovered()
204 GPR_ASSERT(old_count != 1); in drop_uncovered()
209 gpr_atm old_count = in cover_self() local
213 static_cast<int>(old_count), 2 + static_cast<int>(old_count)); in cover_self()
215 if (old_count == 0) { in cover_self()
238 if (old_count != 0) { in cover_self()
Dresource_quota.cc854 int old_count = static_cast<int>(gpr_atm_no_barrier_fetch_add( in grpc_resource_user_free_threads() local
856 if (old_count < thread_count || rq->num_threads_allocated < 0) { in grpc_resource_user_free_threads()
860 thread_count, rq->num_threads_allocated + thread_count, old_count); in grpc_resource_user_free_threads()
/external/freetype/src/pfr/
Dpfrgload.c742 FT_UInt n, old_count, count; in pfr_glyph_load_rec() local
747 old_count = glyph->num_subs; in pfr_glyph_load_rec()
757 count = glyph->num_subs - old_count; in pfr_glyph_load_rec()
773 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec()
783 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec()
/external/v8/src/debug/
Ddebug-coverage.cc27 uint32_t old_count = entry->value; in Add() local
28 if (UINT32_MAX - count < old_count) { in Add()
31 entry->value = old_count + count; in Add()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dextract_symbols.py485 old_count = template_function_count.setdefault(name,0) variable
486 template_function_count[name] = old_count + 1
/external/llvm/utils/
Dextract_symbols.py477 old_count = template_function_count.setdefault(name,0) variable
478 template_function_count[name] = old_count + 1
/external/v8/src/objects/
Ddebug-objects.cc353 const int old_count = BlockCount(slot_index); in IncrementBlockCount() local
354 set(slot_start + kSlotBlockCountIndex, Smi::FromInt(old_count + 1)); in IncrementBlockCount()
/external/python/cpython2/Lib/test/support/
D__init__.py1741 old_count = thread._count()
1749 if count <= old_count:
1756 % (count - old_count, dt, count, old_count))
/external/autotest/client/bin/
Djob.py751 old_count = self._state.get('client', 'cpu_count')
752 if cpu_count != old_count:
755 (old_count, cpu_count))
/external/v8/src/compiler/
Dwasm-compiler.h457 Node** Realloc(Node* const* buffer, size_t old_count, size_t new_count) { in Realloc() argument
459 if (buf != buffer) memcpy(buf, buffer, old_count * sizeof(Node*)); in Realloc()
/external/toybox/kconfig/
Dexpr.c196 int res, old_count; in expr_eq() local
212 old_count = trans_count; in expr_eq()
218 trans_count = old_count; in expr_eq()
/external/u-boot/scripts/kconfig/
Dexpr.c253 int res, old_count; in expr_eq() local
273 old_count = trans_count; in expr_eq()
279 trans_count = old_count; in expr_eq()
/external/libchrome/base/debug/
Dactivity_tracker.cc1406 int old_count = thread_tracker_count_.fetch_add(1, std::memory_order_relaxed); in CreateTrackerForCurrentThread() local
1409 old_count + 1, static_cast<int>(kMaxThreadCount)); in CreateTrackerForCurrentThread()
/external/python/cpython3/Lib/test/support/
D__init__.py2148 old_count = _thread._count()
2156 if count <= old_count:
/external/v8/src/
Dobjects.cc15294 int old_count = count(); in Compact() local
15296 for (int i = 0; i < old_count; i++) { in Compact()
15306 for (int i = new_count; i < old_count; i++) { in Compact()
15309 return new_count < old_count; in Compact()