Searched refs:pRow (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DFourByteAbgr.h134 #define CopyFourByteAbgrToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
136 jint a = (pRow)[4*(x)+0]; \
138 jint b = (pRow)[4*(x)+1]; \
139 jint g = (pRow)[4*(x)+2]; \
140 jint r = (pRow)[4*(x)+3]; \
H A DFourByteAbgrPre.h178 #define CopyFourByteAbgrPreToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
179 (pRGB)[i] = (((pRow)[4*(x)+0] << 24) | \
180 ((pRow)[4*(x)+1] << 0) | \
181 ((pRow)[4*(x)+2] << 8) | \
182 ((pRow)[4*(x)+3] << 16))
H A DByteIndexed.h101 #define CopyByteIndexedBmToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
103 jint argb = PREFIX ## Lut[pRow[x]]; \
181 #define CopyByteIndexedToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
183 jint argb = PREFIX ## Lut[pRow[x]]; \
H A DMaskFill.c613 void *pRow; local
617 pRow = PtrCoord(pDst, x-moff, pRasInfo->pixelStride, 0, 0);
618 (*pPrim->funcs.maskfill)(pRow,
631 pRow = PtrCoord(pDst, x, pRasInfo->pixelStride, 0, 0);
632 (*pPrim->funcs.maskfill)(pRow,
653 void *pRow = PtrCoord(pDst, x-moff, pRasInfo->pixelStride, 0, 0); local
654 (*pPrim->funcs.maskfill)(pRow,
868 void *pRow; local
872 pRow = PtrCoord(pDst, x-moff, pRasInfo->pixelStride, 0, 0);
873 (*pPrim->funcs.maskfill)(pRow,
910 void *pRow = PtrCoord(pDst, x-moff, pRasInfo->pixelStride, 0, 0); local
918 void *pRow = PtrCoord(pDst, x, pRasInfo->pixelStride, 0, 0); local
[all...]
H A DLoopMacros.h2018 SRC ## DataType *pRow = PtrAddBytes(pBase, WholeOfLong(ylong) * scan); \
2020 SrcRead, pRow, WholeOfLong(xlong)); \
2052 SRC ## DataType *pRow; \
2066 pRow = PtrAddBytes(pSrcInfo->rasBase, (ywhole + cy) * scan); \
2067 Copy ## SRC ## ToIntArgbPre(pRGB, 0, SrcRead, pRow, xwhole); \
2068 Copy ## SRC ## ToIntArgbPre(pRGB, 1, SrcRead, pRow, xwhole+xdelta); \
2069 pRow = PtrAddBytes(pRow, ydelta); \
2070 Copy ## SRC ## ToIntArgbPre(pRGB, 2, SrcRead, pRow, xwhole); \
2071 Copy ## SRC ## ToIntArgbPre(pRGB, 3, SrcRead, pRow, xwhol
[all...]
H A DByteGray.h122 #define CopyByteGrayToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
123 LoadByteGrayTo1IntArgb(pRow, PREFIX, x, pRGB[i])
H A DIndex12Gray.h125 #define CopyIndex12GrayToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
126 (pRGB)[i] = PREFIX ## Lut[(pRow)[x] & 0xfff]
H A DIndex8Gray.h125 #define CopyIndex8GrayToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
126 (pRGB)[i] = PREFIX ## Lut[pRow[x]]
H A DIntBgr.h111 #define CopyIntBgrToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
112 LoadIntBgrTo1IntArgb(pRow, PREFIX, x, (pRGB)[i])
H A DIntRgb.h99 #define CopyIntRgbToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
100 LoadIntRgbTo1IntArgb(pRow, PREFIX, x, (pRGB)[i])
H A DIntRgbx.h102 #define CopyIntRgbxToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
103 (pRGB)[i] = (((pRow)[x] >> 8) | 0xff000000)
H A DThreeByteBgr.h124 #define CopyThreeByteBgrToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
125 LoadThreeByteBgrTo1IntArgb(pRow, PREFIX, x, (pRGB)[i])
H A DIntArgb.h103 #define CopyIntArgbToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
105 jint argb = (pRow)[x]; \
H A DIntArgbBm.h124 #define CopyIntArgbBmToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
126 jint argb = (pRow)[x]; \
H A DIntArgbPre.h149 #define CopyIntArgbPreToIntArgbPre(pRGB, i, PREFIX, pRow, x) \
150 (pRGB)[i] = (pRow)[x]

Completed in 49 milliseconds