Home
last modified time | relevance | path

Searched refs:corr (Results 1 – 25 of 31) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
Ddcaadpcm.c40 static inline int64_t apply_filter(const int16_t a[DCA_ADPCM_COEFFS], const int64_t corr[15], const… in apply_filter()
45 err = corr[0]; in apply_filter()
47 tmp += MUL64(a[0], corr[1]); in apply_filter()
48 tmp += MUL64(a[1], corr[2]); in apply_filter()
49 tmp += MUL64(a[2], corr[3]); in apply_filter()
50 tmp += MUL64(a[3], corr[4]); in apply_filter()
58 tmp += MUL64(corr[5], aa[0]); in apply_filter()
59 tmp += MUL64(corr[6], aa[1]); in apply_filter()
60 tmp += MUL64(corr[7], aa[2]); in apply_filter()
61 tmp += MUL64(corr[8], aa[3]); in apply_filter()
[all …]
Daacenc_ltp.c80 float corr, s0 = 0.0f, s1 = 0.0f; in get_lag() local
87 corr = s1 > 0.0f ? s0/sqrt(s1) : 0.0f; in get_lag()
88 if (corr > max_corr) { in get_lag()
89 max_corr = corr; in get_lag()
91 max_ratio = corr/(2048-start); in get_lag()
Dqpeg.c159 int corr, val; in qpeg_decode_inter() local
167 corr = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_inter()
169 val = corr >> 4; in qpeg_decode_inter()
174 val = corr & 0xF; in qpeg_decode_inter()
Divi.c979 idx1 = band->corr[i * 2]; in decode_band()
980 idx2 = band->corr[i * 2 + 1]; in decode_band()
1039 idx1 = band->corr[i*2]; in decode_band()
1040 idx2 = band->corr[i*2+1]; in decode_band()
Divi.h172 uint8_t corr[61*2]; ///< rvmap correction pairs member
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_nir_lower_tex.cpp41 nir_ssa_def *corr = nullptr; in lower_coord_shift_normalized() local
45 corr = nir_vec3(b, nir_channel(b, corr2, 0), nir_channel(b, corr2, 1), in lower_coord_shift_normalized()
49 corr = nir_fadd(b, in lower_coord_shift_normalized()
55 nir_src_for_ssa(corr)); in lower_coord_shift_normalized()
63 nir_ssa_def *corr = nullptr; in lower_coord_shift_unnormalized() local
67 corr = nir_vec3(b, nir_channel(b, corr2, 0), nir_channel(b, corr2, 1), in lower_coord_shift_unnormalized()
70 corr = nir_fadd(b, tex->src[coord_index].src.ssa, in lower_coord_shift_unnormalized()
74 nir_src_for_ssa(corr)); in lower_coord_shift_unnormalized()
/third_party/icu/tools/unicode/c/genprops/
Dnamespropsbuilder.cpp321 const char *corr=uprv_strstr(props.nameAlias, "correction="); in setProps() local
322 if(corr!=NULL) { in setProps()
323 corr+=11; // skip "correction=" in setProps()
324 const char *limit=uprv_strchr(corr, ','); in setProps()
326 buffer.append(corr, limit-corr, errorCode); in setProps()
328 lengths[3]=(int16_t)(limit-corr); in setProps()
330 names[3]=corr; in setProps()
331 lengths[3]=(int16_t)uprv_strlen(corr); in setProps()
/third_party/gstreamer/gstplugins_good/gst/audiofx/
Dgstscaletempo.c137 g##type corr = 0; \
141 corr += *ppc++ * *ps++; \
143 if (corr > best_corr) { \
144 best_corr = corr; \
178 gint64 corr = 0; in best_overlap_offset_s16() local
185 corr += ppc[i + 0] * ps[i + 0]; in best_overlap_offset_s16()
186 corr += ppc[i + 1] * ps[i + 1]; in best_overlap_offset_s16()
187 corr += ppc[i + 2] * ps[i + 2]; in best_overlap_offset_s16()
188 corr += ppc[i + 3] * ps[i + 3]; in best_overlap_offset_s16()
191 if (corr > best_corr) { in best_overlap_offset_s16()
[all …]
/third_party/gstreamer/gstplugins_good/ext/taglib/
Dgstid3v2mux.cc233 } corr[] = { in add_count_or_num_tag() local
242 for (idx = 0; idx < G_N_ELEMENTS (corr); ++idx) { in add_count_or_num_tag()
243 if (strcmp (corr[idx].gst_tag, tag) == 0) in add_count_or_num_tag()
247 g_assert (idx < G_N_ELEMENTS (corr)); in add_count_or_num_tag()
250 if (corr[idx].corr_num == NULL) { in add_count_or_num_tag()
259 if (gst_tag_list_get_uint_index (list, corr[idx].corr_count, 0, &count)) in add_count_or_num_tag()
270 } else if (corr[idx].corr_count == NULL) { in add_count_or_num_tag()
274 if (gst_tag_list_get_uint_index (list, corr[idx].corr_num, 0, &count)) { in add_count_or_num_tag()
275 GST_DEBUG ("%s handled with %s, skipping", tag, corr[idx].corr_num); in add_count_or_num_tag()
/third_party/gstreamer/gstplugins_bad/gst/id3tag/
Did3tag.c607 } corr[] = { in add_count_or_num_tag() local
616 for (idx = 0; idx < G_N_ELEMENTS (corr); ++idx) { in add_count_or_num_tag()
617 if (strcmp (corr[idx].gst_tag, tag) == 0) in add_count_or_num_tag()
621 g_assert (idx < G_N_ELEMENTS (corr)); in add_count_or_num_tag()
624 if (corr[idx].corr_num == NULL) { in add_count_or_num_tag()
632 if (gst_tag_list_get_uint_index (list, corr[idx].corr_count, 0, &count)) in add_count_or_num_tag()
642 } else if (corr[idx].corr_count == NULL) { in add_count_or_num_tag()
646 if (gst_tag_list_get_uint_index (list, corr[idx].corr_num, 0, &count)) { in add_count_or_num_tag()
647 GST_DEBUG ("%s handled with %s, skipping", tag, corr[idx].corr_num); in add_count_or_num_tag()
/third_party/tzdata/
Dlocaltime.c558 int_fast32_t corr = detzcode(p + stored); in tzloadbody() local
572 || (prevcorr < corr in tzloadbody()
573 ? corr == prevcorr + 1 in tzloadbody()
574 : (corr == prevcorr in tzloadbody()
575 || corr == prevcorr - 1)))) in tzloadbody()
578 prevcorr = corr; in tzloadbody()
582 sp->lsis[leapcnt].ls_corr = corr; in tzloadbody()
1720 register int_fast32_t corr; in timesub() local
1730 corr = 0; in timesub()
1735 corr = lp->ls_corr; in timesub()
[all …]
Dzic.c409 static zic_t corr[TZ_MAX_LEAPS]; variable
1991 && ((corr[r.leapbase - 1] < corr[r.leapbase]) in limitrange()
1992 != (0 < corr[r.leapbase]))) { in limitrange()
2101 if (ats[i] > trans[j] - corr[j]) { in writezone()
2102 ats[i] = tadd(ats[i], corr[j]); in writezone()
2147 && corr[r->leapbase] != 1 && corr[r->leapbase] != -1) { in writezone()
2394 puttzcode(corr[i], fp); in writezone()
2403 puttzcode(thisleaplim ? corr[thisleaplim - 1] : 0, fp); in writezone()
3168 memmove(&corr[i + 1], &corr[i], (leapcnt - i) * sizeof *corr); in leapadd()
3171 corr[i] = correction; in leapadd()
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/
Djcdctmgr.c416 UDCTELEM recip, corr; in quantize() local
423 corr = divisors[i + DCTSIZE2 * 1]; in quantize()
428 product = (UDCTELEM2)(temp + corr) * recip; in quantize()
433 product = (UDCTELEM2)(temp + corr) * recip; in quantize()
/third_party/libjpeg-turbo/
Djcdctmgr.c416 UDCTELEM recip, corr; in quantize() local
423 corr = divisors[i + DCTSIZE2 * 1]; in quantize()
428 product = (UDCTELEM2)(temp + corr) * recip; in quantize()
433 product = (UDCTELEM2)(temp + corr) * recip; in quantize()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djcdctmgr.c416 UDCTELEM recip, corr; in quantize() local
423 corr = divisors[i + DCTSIZE2 * 1]; in quantize()
428 product = (UDCTELEM2)(temp + corr) * recip; in quantize()
433 product = (UDCTELEM2)(temp + corr) * recip; in quantize()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-resampler.c214 gdouble corr; in resampler_calculate_taps() local
221 corr = (max_taps == 1 ? 0.0 : 0.5); in resampler_calculate_taps()
240 x = ox * (gdouble) in_size - corr; in resampler_calculate_taps()
/third_party/flutter/skia/third_party/externals/harfbuzz/test/api/
Dtest-ot-math.c341 hb_position_t corr; in get_glyph_assembly_italics_correction() local
345 &corr); in get_glyph_assembly_italics_correction()
346 return corr; in get_glyph_assembly_italics_correction()
/third_party/skia/third_party/externals/harfbuzz/test/api/
Dtest-ot-math.c341 hb_position_t corr; in get_glyph_assembly_italics_correction() local
345 &corr); in get_glyph_assembly_italics_correction()
346 return corr; in get_glyph_assembly_italics_correction()
/third_party/harfbuzz/test/api/
Dtest-ot-math.c341 hb_position_t corr; in get_glyph_assembly_italics_correction() local
345 &corr); in get_glyph_assembly_italics_correction()
346 return corr; in get_glyph_assembly_italics_correction()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dzic.c413 static zic_t corr[TZ_MAX_LEAPS]; variable
1662 if (ats[i] > trans[j] - corr[j]) { in writezone()
1663 ats[i] = tadd(ats[i], corr[j]); in writezone()
1927 puttzcode(corr[i], fp); in writezone()
2803 corr[j] = corr[j - 1]; in leapadd()
2807 corr[i] = positive ? 1 : -count; in leapadd()
2824 last = corr[i] += last; in adjleap()
Dlocaltime.c1427 register int_fast64_t corr; in timesub() local
1431 corr = 0; in timesub()
1450 corr = lp->ls_corr; in timesub()
1490 rem += offset - corr; in timesub()
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/
Dzic.c413 static zic_t corr[TZ_MAX_LEAPS]; variable
1662 if (ats[i] > trans[j] - corr[j]) { in writezone()
1663 ats[i] = tadd(ats[i], corr[j]); in writezone()
1927 puttzcode(corr[i], fp); in writezone()
2803 corr[j] = corr[j - 1]; in leapadd()
2807 corr[i] = positive ? 1 : -count; in leapadd()
2824 last = corr[i] += last; in adjleap()
Dlocaltime.c1427 register int_fast64_t corr; in timesub() local
1431 corr = 0; in timesub()
1450 corr = lp->ls_corr; in timesub()
1490 rem += offset - corr; in timesub()
/third_party/icu/icu4c/source/tools/tzcode/
Dzic.c413 static zic_t corr[TZ_MAX_LEAPS]; variable
1662 if (ats[i] > trans[j] - corr[j]) { in writezone()
1663 ats[i] = tadd(ats[i], corr[j]); in writezone()
1927 puttzcode(corr[i], fp); in writezone()
2803 corr[j] = corr[j - 1]; in leapadd()
2807 corr[i] = positive ? 1 : -count; in leapadd()
2824 last = corr[i] += last; in adjleap()
Dlocaltime.c1427 register int_fast64_t corr; in timesub() local
1431 corr = 0; in timesub()
1450 corr = lp->ls_corr; in timesub()
1490 rem += offset - corr; in timesub()

12