/aosp_15_r20/external/jemalloc_new/src/ |
H A D | arena.c | 433 arena_decay_ms_read(arena_decay_t *decay) { in arena_decay_ms_read() 438 arena_decay_ms_write(arena_decay_t *decay, ssize_t decay_ms) { in arena_decay_ms_write() 443 arena_decay_deadline_init(arena_decay_t *decay) { in arena_decay_deadline_init() 460 arena_decay_deadline_reached(const arena_decay_t *decay, const nstime_t *time) { in arena_decay_deadline_reached() 465 arena_decay_backlog_npages_limit(const arena_decay_t *decay) { in arena_decay_backlog_npages_limit() 485 arena_decay_backlog_update_last(arena_decay_t *decay, size_t current_npages) { in arena_decay_backlog_update_last() 505 arena_decay_backlog_update(arena_decay_t *decay, uint64_t nadvance_u64, in arena_decay_backlog_update() 527 arena_decay_try_purge(tsdn_t *tsdn, arena_t *arena, arena_decay_t *decay, in arena_decay_try_purge() 538 arena_decay_epoch_advance_helper(arena_decay_t *decay, const nstime_t *time, in arena_decay_epoch_advance_helper() 562 arena_decay_epoch_advance(tsdn_t *tsdn, arena_t *arena, arena_decay_t *decay, in arena_decay_epoch_advance() [all …]
|
/aosp_15_r20/external/libopus/celt/ |
H A D | laplace.c | 44 static unsigned ec_laplace_get_freq1(unsigned fs0, int decay) in ec_laplace_get_freq1() 51 void ec_laplace_encode(ec_enc *enc, int *value, unsigned fs, int decay) in ec_laplace_encode() 94 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay) in ec_laplace_decode() 136 void ec_laplace_encode_p0(ec_enc *enc, int value, opus_uint16 p0, opus_uint16 decay) in ec_laplace_encode_p0() 164 int ec_laplace_decode_p0(ec_dec *dec, opus_uint16 p0, opus_uint16 decay) in ec_laplace_decode_p0()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/training/ |
H A D | moving_averages.py | 33 def assign_moving_average(variable, value, decay, zero_debias=True, name=None): argument 115 decay, argument 192 def _zero_debias(strategy, unbiased_var, value, decay): argument 451 decay, argument
|
H A D | rmsprop_test.py | 57 def _rmsprop_update_numpy(self, var, g, mg, rms, mom, lr, decay, momentum, argument 71 lr, decay, momentum, epsilon, centered): argument 468 decay = lambda: 0.9 function
|
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/ |
H A D | optimizer_v1.py | 175 def __init__(self, lr=0.01, momentum=0., decay=0., nesterov=False, **kwargs): argument 246 def __init__(self, lr=0.001, rho=0.9, epsilon=None, decay=0., **kwargs): argument 323 def __init__(self, lr=0.01, epsilon=None, decay=0., **kwargs): argument 404 def __init__(self, lr=1.0, rho=0.95, epsilon=None, decay=0., **kwargs): argument 489 decay=0., argument 593 decay=0., argument
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/ |
D | decay.hpp | 32 struct decay struct 35 typedef typename remove_reference<T>::type Ty; 37 …boost::detail::decay_imp<Ty, boost::is_array<Ty>::value, boost::is_function<Ty>::value>::type type;
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/core/ |
D | value.hpp | 118 struct decay struct 120 typedef T type; 123 struct decay<T[N]> : decay<T const *> {}; struct
|
/aosp_15_r20/external/libopus/dnn/training_tf2/ |
H A D | train_rdovae.py | 83 decay = 0 variable 87 decay = 2.5e-5 variable 93 decay = args.decay variable
|
H A D | train_lpcnet.py | 115 decay = 0 variable 119 decay = 5e-5 variable 125 decay = args.decay variable
|
H A D | train_plc.py | 85 decay = 0 variable 89 decay = 2.5e-5 variable 95 decay = args.decay variable
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/ |
D | decay.h | 33 struct decay { struct 34 using type _LIBCPP_NODEBUG = __decay_t<_Tp>; argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/ |
D | decay.h | 33 struct decay { struct 34 using type _LIBCPP_NODEBUG = __decay_t<_Tp>; argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/ |
D | decay.h | 33 struct decay { struct 34 using type _LIBCPP_NODEBUG = __decay_t<_Tp>; argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/ |
D | decay.h | 33 struct decay { struct 34 using type _LIBCPP_NODEBUG = __decay_t<_Tp>; argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/ |
D | decay.h | 33 struct decay { struct 34 using type _LIBCPP_NODEBUG = __decay_t<_Tp>; argument
|
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/ |
H A D | decay.h | 33 struct decay { struct 34 using type _LIBCPP_NODEBUG = __decay_t<_Tp>; argument
|
/aosp_15_r20/external/libopus/celt/tests/ |
H A D | test_unit_laplace.c | 45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() 59 int val[10000], decay[10000]; in main() local
|
/aosp_15_r20/external/pytorch/torch/optim/ |
H A D | swa_utils.py | 34 def get_ema_multi_avg_fn(decay=0.999): argument 83 def get_ema_avg_fn(decay=0.999): argument
|
/aosp_15_r20/external/tensorflow/tensorflow/core/common_runtime/ |
H A D | quantize_training.cc | 367 Node* decay, Node* update_variable, in MakeExponentialMovingAverage() 418 Status MakeInitializedEMAVariable(Graph* graph, const string& name, Node* decay, in MakeInitializedEMAVariable() 469 Node* decay; in MakeEMAMinMaxVars() local
|
H A D | quantize_training_test.cc | 437 const float decay = 0.999; in TEST_F() local 531 const float decay = 0.999; in TEST_F() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/load/ |
D | peak_ewma.rs | 229 fn decay(&mut self, decay_ns: f64) -> f64 { in decay() method 269 let decay = (-elapsed / decay_ns).exp(); in update() localVariable
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
H A D | training_ops.cc | 1004 xla::XlaOp decay = xla::Sign(grad) * xla::Sign(m) * sign_decay; in Compile() local 1050 xla::XlaOp ComputeGradientScale(xla::XlaOp alpha, xla::XlaOp decay) override { in ComputeGradientScale() 1070 xla::XlaOp ComputeGradientScale(xla::XlaOp alpha, xla::XlaOp decay) override { in ComputeGradientScale()
|
/aosp_15_r20/external/oboe/apps/OboeTester/app/src/main/cpp/analyzer/ |
H A D | PeakDetector.h | 58 void setDecay(double decay) { in setDecay()
|
/aosp_15_r20/cts/apps/CtsVerifier/jni/audio_loopback/analyzer/ |
H A D | PeakDetector.h | 58 void setDecay(double decay) { in setDecay()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.functions/ |
H A D | bug_81590.compile.pass.cpp | 23 constexpr const std::variant<X*>& decay() const noexcept { return *this; } in decay() function
|