Searched refs:dshift (Results 1 – 12 of 12) sorted by relevance
/external/libpng/ |
D | pngrutil.c | 3684 unsigned int sshift, dshift; in png_do_read_interlace() local 3696 dshift = ((final_width + 7) & 0x07); in png_do_read_interlace() 3706 dshift = 7 - ((final_width + 7) & 0x07); in png_do_read_interlace() 3717 unsigned int tmp = *dp & (0x7f7f >> (7 - dshift)); in png_do_read_interlace() 3718 tmp |= (unsigned int)(v << dshift); in png_do_read_interlace() 3721 if (dshift == s_end) in png_do_read_interlace() 3723 dshift = s_start; in png_do_read_interlace() 3728 dshift = (unsigned int)((int)dshift + s_inc); in png_do_read_interlace() 3747 unsigned int sshift, dshift; in png_do_read_interlace() local 3757 dshift = (((final_width + 3) & 0x03) << 1); in png_do_read_interlace() [all …]
|
/external/pdfium/third_party/libpng16/ |
D | pngrutil.c | 3561 int sshift, dshift; in png_do_read_interlace() local 3572 dshift = (int)((final_width + 7) & 0x07); in png_do_read_interlace() 3582 dshift = 7 - (int)((final_width + 7) & 0x07); in png_do_read_interlace() 3593 unsigned int tmp = *dp & (0x7f7f >> (7 - dshift)); in png_do_read_interlace() 3594 tmp |= v << dshift; in png_do_read_interlace() 3597 if (dshift == s_end) in png_do_read_interlace() 3599 dshift = s_start; in png_do_read_interlace() 3604 dshift += s_inc; in png_do_read_interlace() 3623 int sshift, dshift; in png_do_read_interlace() local 3632 dshift = (int)(((final_width + 3) & 0x03) << 1); in png_do_read_interlace() [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_blitter.c | 212 unsigned sshift, dshift; in emit_blit_buffer() local 247 dshift = dbox->x & 0x3f; in emit_blit_buffer() 311 OUT_RING(ring, CP_BLIT_3_DST_X1(dshift) | CP_BLIT_3_DST_Y1(0)); in emit_blit_buffer() 312 OUT_RING(ring, CP_BLIT_4_DST_X2(dshift+w-1) | CP_BLIT_4_DST_Y2(0)); in emit_blit_buffer()
|
/external/skia/src/core/ |
D | SkAnalyticEdge.cpp | 463 const int dshift = fCubicDShift; in updateCubic() local 469 newx = oldx + (fCEdge.fCDx >> dshift); in updateCubic() 473 newy = oldy + (fCEdge.fCDy >> dshift); in updateCubic()
|
D | SkEdge.cpp | 466 const int dshift = fCubicDShift; in updateCubic() local 473 newx = oldx + (fCDx >> dshift); in updateCubic() 477 newy = oldy + (fCDy >> dshift); in updateCubic()
|
/external/skqp/src/core/ |
D | SkAnalyticEdge.cpp | 463 const int dshift = fCubicDShift; in updateCubic() local 469 newx = oldx + (fCEdge.fCDx >> dshift); in updateCubic() 473 newy = oldy + (fCEdge.fCDy >> dshift); in updateCubic()
|
D | SkEdge.cpp | 466 const int dshift = fCubicDShift; in updateCubic() local 473 newx = oldx + (fCDx >> dshift); in updateCubic() 477 newy = oldy + (fCDy >> dshift); in updateCubic()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | VTimeZone.java | 1712 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()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | VTimeZone.java | 1743 int dshift = 0; in toWallTimeRule() local 1745 dshift = -1; in toWallTimeRule() 1748 dshift = 1; in toWallTimeRule() 1757 if (dshift != 0) { in toWallTimeRule() 1771 dom += dshift; in toWallTimeRule() 1783 dow += dshift; in toWallTimeRule()
|
/external/icu/icu4c/source/i18n/ |
D | vtzone.cpp | 819 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()
|
/external/python/cpython3/Python/ |
D | dtoa.c | 1146 dshift(Bigint *b, int p2) in dshift() function 1349 i = dshift(d, d2); in bigcomp() 2674 i = dshift(S, s2); in _Py_dg_dtoa()
|
/external/python/cpython2/Python/ |
D | dtoa.c | 1220 dshift(Bigint *b, int p2) in dshift() function 1452 i = dshift(d, d2); in bigcomp() 2747 i = dshift(S, s2); in _Py_dg_dtoa()
|