Home
last modified time | relevance | path

Searched refs:decay (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/jemalloc/src/
H A Darena.c58 arena_decay_t *decay, extents_t *extents, bool all, size_t npages_limit,
519 arena_decay_ms_read(arena_decay_t *decay) { in arena_decay_ms_read() argument
520 return atomic_load_zd(&decay->time_ms, ATOMIC_RELAXED); in arena_decay_ms_read()
524 arena_decay_ms_write(arena_decay_t *decay, ssize_t decay_ms) { in arena_decay_ms_write() argument
525 atomic_store_zd(&decay->time_ms, decay_ms, ATOMIC_RELAXED); in arena_decay_ms_write()
529 arena_decay_deadline_init(arena_decay_t *decay) { in arena_decay_deadline_init() argument
534 nstime_copy(&decay->deadline, &decay->epoch); in arena_decay_deadline_init()
535 nstime_add(&decay->deadline, &decay->interval); in arena_decay_deadline_init()
536 if (arena_decay_ms_read(decay) > 0) { in arena_decay_deadline_init()
539 nstime_init(&jitter, prng_range_u64(&decay->jitter_state, in arena_decay_deadline_init()
[all …]
H A Dbackground_thread.c58 arena_decay_t *decay, size_t npages_new) NOT_REACHED in background_thread_create()
102 decay_npurge_after_interval(arena_decay_t *decay, size_t interval) {
106 sum += decay->backlog[i] * h_steps[i];
109 sum += decay->backlog[i] * (h_steps[i] - h_steps[i - interval]);
116 arena_decay_compute_purge_interval_impl(tsdn_t *tsdn, arena_decay_t *decay,
118 if (malloc_mutex_trylock(tsdn, &decay->mtx)) {
124 ssize_t decay_time = atomic_load_zd(&decay->time_ms, ATOMIC_RELAXED);
131 uint64_t decay_interval_ns = nstime_ns(&decay->interval);
137 if (decay->backlog[i] > 0) {
165 npurge_lb = decay_npurge_after_interval(decay, lb);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Ddecay.h33 struct decay { struct
54 struct _LIBCPP_TEMPLATE_VIS decay {
63 using __decay_t = typename decay<_Tp>::type;
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dtps65086.txt28 - ti,regulator-decay : This is applicable for buck[1-6], set this if
29 the output needs to decay, default is for
50 ti,regulator-decay;
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h431 std::is_constructible<typename std::decay<Callable>::type, Callable>,
433 internal::is_callable_r<Result, typename std::decay<Callable>::type,
441 std::is_constructible<typename std::decay<Callable>::type, Callable>,
444 internal::is_callable_r<Result, typename std::decay<Callable>::type>>;
458 OnceAction, typename std::decay<Callable>::type>>,
463 : function_(StdFunctionAdaptor<typename std::decay<Callable>::type>(
475 OnceAction, typename std::decay<Callable>::type>>,
484 : OnceAction(IgnoreIncomingArguments<typename std::decay<Callable>::type>{
829 fun_ = IgnoreArgs<typename ::std::decay<G>::type>{::std::forward<G>(g)};
1797 internal::DoAllAction<typename std::decay<Action>::type...> DoAll(
[all …]
H A Dgmock-matchers.h1476 using RawU = typename std::decay<U>::type;
4060 using RawArgsTuple = typename std::decay<ArgsTuple>::type;
5021 internal::FieldsAreMatcher<typename std::decay<M>::type...> FieldsAre(
5023 return internal::FieldsAreMatcher<typename std::decay<M>::type...>(
5098 std::tuple<typename std::decay<const Args&>::type...>>
5101 std::tuple<typename std::decay<const Args&>::type...>>(
5107 std::tuple<typename std::decay<const Args&>::type...>>
5110 std::tuple<typename std::decay<const Args&>::type...>>(
5116 internal::AllOfMatcher<typename std::decay<const Args&>::type...> AllOf(
5118 return internal::AllOfMatcher<typename std::decay<const Args&>::type...>(
[all …]
H A Dgmock-more-actions.h649 internal::InvokeArgumentAction<index, typename std::decay<Params>::type...>
651 return {internal::FlatTuple<typename std::decay<Params>::type...>( in InvokeArgument()
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dbackground_thread_externs.h16 arena_decay_t *decay, size_t npages_new);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTransformTypeTraits.def16 TRANSFORM_TYPE_TRAIT_DEF(Decay, decay)
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dexecution_defs.h
H A Dparallel_backend_tbb.h
/freebsd/sys/netinet/tcp_stacks/
H A Drack_bbr_common.c934 ctf_decay_count(uint32_t count, uint32_t decay) in ctf_decay_count() argument
943 if (decay > 1000) { in ctf_decay_count()
948 decay_per = decay; in ctf_decay_count()
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Dvctrl.txt28 - min-slew-down-rate : Describes how slowly the regulator voltage will decay
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.h126 GtestGreaterThanMatcher<typename std::decay<T>::type> GtestGreaterThan( in GtestGreaterThan()
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Diterator56 #include <__type_traits/decay.h>
H A Dpropagate_const113 #include <__type_traits/decay.h>
/freebsd/contrib/jemalloc/
H A DChangeLog108 - Avoid forced decay on thread termination when using background threads.
110 - Disable muzzy decay by default. (@djwatson, @interwq)
119 - Properly trigger decay on tcache destroy. (@interwq, @amosbird)
123 - Fix a side effect caused by extent_max_active_fit combined with decay-based
221 - Make decay to always purge one more extent than before, because in
222 practice large extents are usually the ones that cross the decay threshold.
238 - Fix an extent coalesce + decay race by taking both coalescing extents off
240 - Fix potentially unbound increase during decay, caused by one thread keep
266 - Update decay->nunpurged before purging, in order to avoid potential update
313 - Implement two-phase decay of unused dirty pages. Pages transition from
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dtype_traits165 template <class T> struct decay;
226 using decay_t = typename decay<T>::type; // C++14
433 #include <__type_traits/decay.h>
H A Dfuture312 future<typename result_of<typename decay<F>::type(typename decay<Args>::type...)>::type>
316 future<typename result_of<typename decay<F>::type(typename decay<Args>::type...)>::type>
H A Dany92 #include <__type_traits/decay.h>
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def112 /// CK_ArrayToPointerDecay - Array to pointer decay.
117 /// CK_FunctionToPointerDecay - Function to pointer decay.
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.cppm
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-matchers.h446 using MM = typename std::decay<M>::type;
/freebsd/contrib/file/magic/Magdir/
H A Dgames97 0 string 5\x0athe_Crypt_of_Decay Quake I save: e2m3 The crypt of decay (dopefish lives!)
/freebsd/lib/libc++/
H A DMakefile1231 TTR_HEADERS+= decay.h

12