Searched refs:log_max (Results 1 – 5 of 5) sorted by relevance
/external/e2fsprogs/lib/ext2fs/ |
D | progress.c | 64 progress->log_max = int_log10(max); in ext2fs_numeric_progress_init() 88 printf("%*llu/%*llu", progress->log_max, val, in ext2fs_numeric_progress_update() 89 progress->log_max, progress->max); in ext2fs_numeric_progress_update() 90 fprintf(stdout, "%.*s", (2*progress->log_max)+1, backspaces); in ext2fs_numeric_progress_update() 99 fprintf(stdout, "%.*s", (2*progress->log_max)+1, spaces); in ext2fs_numeric_progress_close() 100 fprintf(stdout, "%.*s", (2*progress->log_max)+1, backspaces); in ext2fs_numeric_progress_close()
|
D | ext2fsP.h | 128 int log_max; member
|
/external/webrtc/modules/audio_processing/agc2/rnn_vad/ |
D | spectral_features_internal.cc | 131 float log_max = kLogOneByHundred; in ComputeSmoothedLogMagnitudeSpectrum() local 133 const auto smooth = [&log_max, &follow](float x) { in ComputeSmoothedLogMagnitudeSpectrum() 134 x = std::max(log_max - 7.f, std::max(follow - 1.5f, x)); in ComputeSmoothedLogMagnitudeSpectrum() 135 log_max = std::max(log_max, x); in ComputeSmoothedLogMagnitudeSpectrum()
|
/external/iproute2/lib/ |
D | bpf.c | 1154 const size_t log_max = UINT_MAX >> 8; in bpf_log_realloc() local 1160 } else if (log_size < log_max) { in bpf_log_realloc() 1162 if (log_size > log_max) in bpf_log_realloc() 1163 log_size = log_max; in bpf_log_realloc()
|
/external/libchrome/base/metrics/ |
D | histogram.cc | 333 double log_max = log(static_cast<double>(maximum)); in InitializeBucketRanges() local 344 log_ratio = (log_max - log_current) / (bucket_count - bucket_index); in InitializeBucketRanges()
|