Searched refs:total_weight (Results 1 - 11 of 11) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | vf_nlmeans.c | 56 float *total_weight; // total weight for every pixel member 58 int linesize; // sum and total_weight linesize 271 s->total_weight = av_malloc_array(s->linesize, inlink->h * sizeof(*s->total_weight)); in config_input() 273 if (!s->total_weight || !s->sum) in config_input() 309 float *total_weight = s->total_weight + y*s->linesize; in nlmeans_slice() local 316 dsp->compute_weights_line(iia, iib, iid, iie, src, total_weight, sum, in nlmeans_slice() 326 float *total_weight, float *sum, ptrdiff_t linesize, in weight_averages() 332 total_weight[ in weight_averages() 324 weight_averages(uint8_t *dst, ptrdiff_t dst_linesize, const uint8_t *src, ptrdiff_t src_linesize, float *total_weight, float *sum, ptrdiff_t linesize, int w, int h) weight_averages() argument [all...] |
H A D | vf_nlmeans_init.h | 79 float *total_weight, in compute_weights_line_c() 122 total_weight[x] += weight; in compute_weights_line_c() 74 compute_weights_line_c(const uint32_t *const iia, const uint32_t *const iib, const uint32_t *const iid, const uint32_t *const iie, const uint8_t *const src, float *total_weight, float *sum, const float *const weight_lut, int max_meaningful_diff, int startx, int endx) compute_weights_line_c() argument
|
H A D | vf_nlmeans.h | 35 float *total_weight,
|
H A D | af_dynaudnorm.c | 249 double total_weight = 0.0; in init_gaussian_filter() local 263 total_weight += s->weights[i]; in init_gaussian_filter() 267 adjust = 1.0 / total_weight; in init_gaussian_filter()
|
H A D | af_loudnorm.c | 135 double total_weight = 0.0; in init_gaussian_filter() local 147 total_weight += s->weights[i]; in init_gaussian_filter() 150 adjust = 1.0 / total_weight; in init_gaussian_filter()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | acs.c | 616 double total_weight; in acs_find_ideal_chan() local 673 total_weight = 1; in acs_find_ideal_chan() 689 total_weight += 1; in acs_find_ideal_chan() 708 total_weight += ACS_ADJ_WEIGHT; in acs_find_ideal_chan() 716 total_weight += ACS_NEXT_ADJ_WEIGHT; in acs_find_ideal_chan() 724 total_weight += ACS_ADJ_WEIGHT; in acs_find_ideal_chan() 732 total_weight += ACS_NEXT_ADJ_WEIGHT; in acs_find_ideal_chan() 737 factor /= total_weight; in acs_find_ideal_chan()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | acs.c | 661 double total_weight; in acs_find_ideal_chan_mode() local 726 total_weight = 1; in acs_find_ideal_chan_mode() 742 total_weight += 1; in acs_find_ideal_chan_mode() 761 total_weight += ACS_ADJ_WEIGHT; in acs_find_ideal_chan_mode() 769 total_weight += ACS_NEXT_ADJ_WEIGHT; in acs_find_ideal_chan_mode() 777 total_weight += ACS_ADJ_WEIGHT; in acs_find_ideal_chan_mode() 785 total_weight += ACS_NEXT_ADJ_WEIGHT; in acs_find_ideal_chan_mode() 790 factor /= total_weight; in acs_find_ideal_chan_mode()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mss3.c | 43 unsigned total_freq, total_weight; member 130 m->total_weight = 2; in model2_reset() 147 m->total_weight += m->upd_val; in model2_update() 148 if (m->total_weight > 0x2000) { in model2_update() 149 m->total_weight = (m->total_weight + 1) >> 1; in model2_update() 151 if (m->total_weight == m->zero_weight) in model2_update() 152 m->total_weight = m->zero_weight + 1; in model2_update() 157 scale = 0x80000000u / m->total_weight; in model2_update() 159 m->total_freq = m->total_weight * scal in model2_update() [all...] |
/third_party/protobuf/benchmarks/util/ |
H A D | result_parser.py | 181 total_weight = 0 184 total_weight += measurement["weight"] 186 avg_time = total_value * 1.0 / total_weight
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | analysis_enc.c | 164 int total_weight; in AssignSegments() local 188 total_weight = 0; in AssignSegments() 195 total_weight += accum[n]; in AssignSegments() 198 weighted_average = (weighted_average + total_weight / 2) / total_weight; in AssignSegments()
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_nlmeans_init.c | 28 float *total_weight,
|
Completed in 10 milliseconds