Home
last modified time | relevance | path

Searched refs:dshift (Results 1 – 23 of 23) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dtakdsp.c61 static void decorrelate_sf(int32_t *p1, int32_t *p2, int length, int dshift, int dfactor) in decorrelate_sf() argument
68 b = (unsigned)(dfactor * (b >> dshift) + 128 >> 8) << dshift; in decorrelate_sf()
Dtakdec.c391 int dshift, size, filter_quant, filter_order; in decode_subframe() local
425 dshift = get_bits_esc4(gb); in decode_subframe()
476 s->residues[i] = *decoded++ >> dshift; in decode_subframe()
495 v = (av_clip_intp2(v >> filter_quant, 13) * (1 << dshift)) - (unsigned)*decoded; in decode_subframe()
497 s->residues[filter_order + i] = v >> dshift; in decode_subframe()
565 int dshift, dfactor; in decorrelate() local
583 dshift = get_bits_esc4(gb); in decorrelate()
585 s->tdsp.decorrelate_sf(p1, p2, length, dshift, dfactor); in decorrelate()
596 dshift = get_bits_esc4(gb); in decorrelate()
630 s->residues[i] = *p2++ >> dshift; in decorrelate()
[all …]
Dtakdsp.h28 void (*decorrelate_sf)(int32_t *p1, int32_t *p2, int length, int dshift, int dfactor);
Dclearvideo.c132 #define DCT_TEMPLATE(blk, step, bias, shift, dshift, OP) \ argument
139 const int t6 = ((blk[0 * step] + blk[4 * step]) * (1 << dshift)) + bias; \
140 const int t7 = ((blk[0 * step] - blk[4 * step]) * (1 << dshift)) + bias; \
/third_party/skia/third_party/externals/libpng/
Dpngrutil.c3704 unsigned int sshift, dshift; in png_do_read_interlace() local
3716 dshift = ((final_width + 7) & 0x07); in png_do_read_interlace()
3726 dshift = 7 - ((final_width + 7) & 0x07); in png_do_read_interlace()
3737 unsigned int tmp = *dp & (0x7f7f >> (7 - dshift)); in png_do_read_interlace()
3738 tmp |= (unsigned int)(v << dshift); in png_do_read_interlace()
3741 if (dshift == s_end) in png_do_read_interlace()
3743 dshift = s_start; in png_do_read_interlace()
3748 dshift = (unsigned int)((int)dshift + s_inc); in png_do_read_interlace()
3767 unsigned int sshift, dshift; in png_do_read_interlace() local
3777 dshift = (((final_width + 3) & 0x03) << 1); in png_do_read_interlace()
[all …]
/third_party/flutter/skia/third_party/externals/libpng/
Dpngrutil.c3704 unsigned int sshift, dshift; in png_do_read_interlace() local
3716 dshift = ((final_width + 7) & 0x07); in png_do_read_interlace()
3726 dshift = 7 - ((final_width + 7) & 0x07); in png_do_read_interlace()
3737 unsigned int tmp = *dp & (0x7f7f >> (7 - dshift)); in png_do_read_interlace()
3738 tmp |= (unsigned int)(v << dshift); in png_do_read_interlace()
3741 if (dshift == s_end) in png_do_read_interlace()
3743 dshift = s_start; in png_do_read_interlace()
3748 dshift = (unsigned int)((int)dshift + s_inc); in png_do_read_interlace()
3767 unsigned int sshift, dshift; in png_do_read_interlace() local
3777 dshift = (((final_width + 3) & 0x03) << 1); in png_do_read_interlace()
[all …]
/third_party/libpng/
Dpngrutil.c3704 unsigned int sshift, dshift; in png_do_read_interlace() local
3716 dshift = ((final_width + 7) & 0x07); in png_do_read_interlace()
3726 dshift = 7 - ((final_width + 7) & 0x07); in png_do_read_interlace()
3737 unsigned int tmp = *dp & (0x7f7f >> (7 - dshift)); in png_do_read_interlace()
3738 tmp |= (unsigned int)(v << dshift); in png_do_read_interlace()
3741 if (dshift == s_end) in png_do_read_interlace()
3743 dshift = s_start; in png_do_read_interlace()
3748 dshift = (unsigned int)((int)dshift + s_inc); in png_do_read_interlace()
3767 unsigned int sshift, dshift; in png_do_read_interlace() local
3777 dshift = (((final_width + 3) & 0x03) << 1); in png_do_read_interlace()
[all …]
/third_party/ffmpeg/libavcodec/x86/
Dtakdsp_init.c28 void ff_tak_decorrelate_sf_sse4(int32_t *p1, int32_t *p2, int length, int dshift, int dfactor);
Dtakdsp.asm93 cglobal tak_decorrelate_sf, 3, 3, 5, p1, p2, length, dshift, dfactor
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
Dfd5_blitter.c196 unsigned sshift, dshift; in emit_blit_buffer() local
231 dshift = dbox->x & 0x3f; in emit_blit_buffer()
295 OUT_RING(ring, CP_BLIT_3_DST_X1(dshift) | CP_BLIT_3_DST_Y1(0)); in emit_blit_buffer()
296 OUT_RING(ring, CP_BLIT_4_DST_X2(dshift + w - 1) | CP_BLIT_4_DST_Y2(0)); in emit_blit_buffer()
/third_party/skia/src/core/
DSkAnalyticEdge.cpp463 const int dshift = fCubicDShift; in updateCubic() local
469 newx = oldx + (fCEdge.fCDx >> dshift); in updateCubic()
473 newy = oldy + (fCEdge.fCDy >> dshift); in updateCubic()
DSkEdge.cpp466 const int dshift = fCubicDShift; in updateCubic() local
473 newx = oldx + (fCDx >> dshift); in updateCubic()
477 newy = oldy + (fCDy >> dshift); in updateCubic()
/third_party/flutter/skia/src/core/
DSkAnalyticEdge.cpp463 const int dshift = fCubicDShift; in updateCubic() local
469 newx = oldx + (fCEdge.fCDx >> dshift); in updateCubic()
473 newy = oldy + (fCEdge.fCDy >> dshift); in updateCubic()
DSkEdge.cpp466 const int dshift = fCubicDShift; in updateCubic() local
473 newx = oldx + (fCDx >> dshift); in updateCubic()
477 newy = oldy + (fCDy >> dshift); in updateCubic()
/third_party/mindspore/tests/vm_impl/
Dnn_ops_vm_impl.py216 dx, dscale, dshift = vm.batch_norm_grad(dy, x, scale, save_mean, save_inv_variance)
217 return (Tensor(dx), Tensor(dscale), Tensor(dshift))
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DVTimeZone.java1741 int dshift = 0; in toWallTimeRule() local
1743 dshift = -1; in toWallTimeRule()
1746 dshift = 1; in toWallTimeRule()
1755 if (dshift != 0) { in toWallTimeRule()
1769 dom += dshift; in toWallTimeRule()
1781 dow += dshift; in toWallTimeRule()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DVTimeZone.java1712 int dshift = 0; in toWallTimeRule() local
1714 dshift = -1; in toWallTimeRule()
1717 dshift = 1; in toWallTimeRule()
1726 if (dshift != 0) { in toWallTimeRule()
1740 dom += dshift; in toWallTimeRule()
1752 dow += dshift; in toWallTimeRule()
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/
Dfd6_blitter.c307 unsigned sshift, dshift; in emit_blit_buffer() local
347 dshift = dbox->x & 0x3f; in emit_blit_buffer()
407 OUT_RING(ring, A6XX_GRAS_2D_DST_TL_X(dshift) | A6XX_GRAS_2D_DST_TL_Y(0)); in emit_blit_buffer()
408 OUT_RING(ring, A6XX_GRAS_2D_DST_BR_X(dshift + w - 1) | in emit_blit_buffer()
/third_party/skia/third_party/externals/icu/source/i18n/
Dvtzone.cpp823 int32_t dshift = 0; in toWallTimeRule() local
825 dshift = -1; in toWallTimeRule()
828 dshift = 1; in toWallTimeRule()
837 if (dshift != 0) { in toWallTimeRule()
850 dom += dshift; in toWallTimeRule()
862 dow += dshift; in toWallTimeRule()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dvtzone.cpp819 int32_t dshift = 0; in toWallTimeRule() local
821 dshift = -1; in toWallTimeRule()
824 dshift = 1; in toWallTimeRule()
833 if (dshift != 0) { in toWallTimeRule()
846 dom += dshift; in toWallTimeRule()
858 dow += dshift; in toWallTimeRule()
/third_party/node/deps/icu-small/source/i18n/
Dvtzone.cpp823 int32_t dshift = 0; in toWallTimeRule() local
825 dshift = -1; in toWallTimeRule()
828 dshift = 1; in toWallTimeRule()
837 if (dshift != 0) { in toWallTimeRule()
850 dom += dshift; in toWallTimeRule()
862 dow += dshift; in toWallTimeRule()
/third_party/icu/icu4c/source/i18n/
Dvtzone.cpp823 int32_t dshift = 0; in toWallTimeRule() local
825 dshift = -1; in toWallTimeRule()
828 dshift = 1; in toWallTimeRule()
837 if (dshift != 0) { in toWallTimeRule()
850 dom += dshift; in toWallTimeRule()
862 dow += dshift; in toWallTimeRule()
/third_party/python/Python/
Ddtoa.c1150 dshift(Bigint *b, int p2) in dshift() function
1353 i = dshift(d, d2); in bigcomp()
2657 i = dshift(S, s2); in _Py_dg_dtoa()