/openjdk7/jdk/src/share/native/sun/awt/splashscreen/ |
H A D | splashscreen_gfx_impl.c | 203 initRect(ImageRect * pRect, int x, int y, int width, int height, int jump, argument 208 pRect->pBits = pBits; 209 INCPN(byte_t, pRect->pBits, y * stride + x * depthBytes); 210 pRect->numLines = height; 211 pRect->numSamples = width; 212 pRect->stride = stride * jump; 213 pRect->depthBytes = depthBytes; 214 pRect->format = format; 215 pRect->row = y; 216 pRect [all...] |
H A D | splashscreen_gfx.h | 126 void initRect(ImageRect * pRect, int x, int y, int width, int height, int jump,
|
/openjdk7/jdk/src/share/native/sun/java2d/pipe/ |
H A D | Region.h | 211 RECT_T ** pRect, unsigned int initialBufferSize);
|
H A D | Region.c | 233 * The *pRect must point to a buffer of initialBufferSize 236 * and its pointer is being stored at the *pRect. Using 244 RECT_T ** pRect, unsigned int initialBufferSize) 255 RECT_SET(**pRect, x1, y1, x2 - x1, y2 - y1); 265 *pRect = (RECT_T *) SAFE_SIZE_ARRAY_ALLOC(malloc, numrects, sizeof(RECT_T)); 266 if (*pRect == NULL) { 274 RECT_SET((*pRect)[i], span.x1, span.y1, span.x2 - span.x1, span.y2 - span.y1); 242 RegionToYXBandedRectangles(JNIEnv *env, jint x1, jint y1, jint x2, jint y2, jobject region, RECT_T ** pRect, unsigned int initialBufferSize) argument
|
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/ |
H A D | XRBackendNative.c | 615 XRectangle *pRect = rects; local 619 &pRect, 256); 623 XSetClipRectangles(awt_display, (GC) jlong_to_ptr(dst), 0, 0, pRect, numrects, YXBanded); local 626 XRenderSetPictureClipRectangles (awt_display, (Picture) dst, 0, 0, pRect, numrects); 629 if (pRect != rects) { 630 free(pRect);
|
H A D | X11SurfaceData.c | 1711 XRectangle *pRect = rects; local 1717 &pRect, 256); 1719 XSetClipRectangles(awt_display, (GC) xgc, 0, 0, pRect, numrects, YXBanded); 1721 if (pRect != rects) { 1722 free(pRect);
|
/openjdk7/jdk/src/solaris/native/sun/xawt/ |
H A D | XlibWrapper.c | 2166 XRectangle *pRect = rects; local 2169 &pRect, 256); 2172 ShapeClip, 0, 0, pRect, numrects, ShapeSet, YXBanded); 2174 ShapeBounding, 0, 0, pRect, numrects, ShapeSet, YXBanded); 2176 if (pRect != rects) { 2177 free(pRect); 2229 RECT_T * pRect; local 2248 pRect = (RECT_T *)SAFE_SIZE_ARRAY_ALLOC(malloc, worstBufferSize, sizeof(RECT_T)); 2249 if (!pRect) { 2257 (unsigned char *)(values + 2), pRect); [all...] |
/openjdk7/jdk/src/windows/native/sun/java2d/windows/ |
H A D | GDIWindowSurfaceData.cpp | 1070 RECT *pRect = (RECT *) &(((RGNDATA *)lpRgnData)->Buffer); local 1072 pRect->left = span.x1 - leftInset; 1073 pRect->top = span.y1 - topInset; 1074 pRect->right = span.x2 - leftInset; 1075 pRect->bottom = span.y2 - topInset; 1076 pRect++;
|
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | ThemeReader.cpp | 84 int iPartId, int iStateId, const RECT *pRect, const RECT *pClipRect); 90 DWORD dwTextFlags, DWORD dwTextFlags2, const RECT *pRect);
|
H A D | awt_Component.cpp | 6142 RECT_T *pRect = rects; local 6145 region, &pRect, sizeof(rects)/sizeof(rects[0])); 6146 if (!pRect) { 6154 memcpy((BYTE*)pRgnData + sizeof(RGNDATAHEADER), pRect, sizeof(RECT_T) * numrects); 6155 if (pRect != rects) { 6156 free(pRect); 6158 pRect = NULL;
|