Searched refs:weightA (Results 1 – 9 of 9) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | wavpackenc.c | 557 dpp->weightA = restore_weight(store_weight(dpp->weightA)); in decorr_mono() 571 left -= APPLY_WEIGHT(dpp->weightA, sam_A); in decorr_mono() 572 UPDATE_WEIGHT(dpp->weightA, dpp->delta, sam_A, left); in decorr_mono() 573 dpp->sumA += dpp->weightA; in decorr_mono() 587 left -= APPLY_WEIGHT(dpp->weightA, sam_A); in decorr_mono() 588 UPDATE_WEIGHT(dpp->weightA, dpp->delta, sam_A, left); in decorr_mono() 589 dpp->sumA += dpp->weightA; in decorr_mono() 706 dppi->weightA = dp.weightA; in decorr_mono_buffer() 713 dppi->weightA = dp.weightA = dp.sumA / nb_samples; in decorr_mono_buffer() 1137 dpp->weightA = restore_weight(store_weight(dpp->weightA)); in decorr_stereo() [all …]
|
D | wavpack.c | 817 L2 = L + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10); in wv_unpack_stereo() 820 L2 = L + (unsigned)((int)(s->decorr[i].weightA * (unsigned)A + 512) >> 10); in wv_unpack_stereo() 824 s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta; in wv_unpack_stereo() 831 … L2 = L + ((s->decorr[i].weightA * (int64_t)s->decorr[i].samplesA[0] + 512) >> 10); in wv_unpack_stereo() 833 … L2 = L + (unsigned)((int)(s->decorr[i].weightA * (unsigned)s->decorr[i].samplesA[0] + 512) >> 10); in wv_unpack_stereo() 834 … UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, s->decorr[i].samplesA[0], L); in wv_unpack_stereo() 857 L2 = L + ((s->decorr[i].weightA * (int64_t)R2 + 512) >> 10); in wv_unpack_stereo() 859 L2 = L + (unsigned)((int)(s->decorr[i].weightA * (unsigned)R2 + 512) >> 10); in wv_unpack_stereo() 860 UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, R2, L); in wv_unpack_stereo() 937 S = T + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10); in wv_unpack_mono() [all …]
|
D | wavpack.h | 88 int weightA; member
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | HuffmanEncoder.java | 148 int weightA = tree[a].weight; in updateWeight() local 150 if (tree[b].weight == weightA) { in updateWeight() 153 } while (tree[b].weight == weightA); in updateWeight() 160 weightA++; in updateWeight() 161 tree[a].weight = weightA; in updateWeight()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | HuffmanEncoder.java | 148 int weightA = tree[a].weight; in updateWeight() local 150 if (tree[b].weight == weightA) { in updateWeight() 153 } while (tree[b].weight == weightA); in updateWeight() 160 weightA++; in updateWeight() 161 tree[a].weight = weightA; in updateWeight()
|
/third_party/python/Modules/clinic/ |
D | audioop.c.h | 975 int weightA, int weightB); 987 int weightA = 1; in audioop_ratecv() local 1020 weightA = _PyLong_AsInt(args[6]); in audioop_ratecv() 1021 if (weightA == -1 && PyErr_Occurred()) { in audioop_ratecv() 1032 …audioop_ratecv_impl(module, &fragment, width, nchannels, inrate, outrate, state, weightA, weightB); in audioop_ratecv()
|
/third_party/python/Modules/ |
D | audioop.c | 1318 int weightA, int weightB) in audioop_ratecv_impl() argument 1343 if (weightA < 1 || weightB < 0) { in audioop_ratecv_impl() 1364 d = gcd(weightA, weightB); in audioop_ratecv_impl() 1365 weightA /= d; in audioop_ratecv_impl() 1477 ((double)weightA * (double)cur_i[chan] + in audioop_ratecv_impl() 1479 ((double)weightA + (double)weightB)); in audioop_ratecv_impl()
|
/third_party/python/Doc/library/ |
D | audioop.rst | 195 .. function:: ratecv(fragment, width, nchannels, inrate, outrate, state[, weightA[, weightB]]) 203 The *weightA* and *weightB* arguments are parameters for a simple digital filter
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/ |
D | vktYCbCrUtil.cpp | 1495 const tcu::Interval weightA (filteringFormat.roundOut((ndx % 2) == 0 ? (1.0 - a) : a, false)); in linearInterpolate() local 1497 const tcu::Interval weight (filteringFormat.roundOut(weightA * weightB, false)); in linearInterpolate()
|