Searched defs:bytes_per_line (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/awt/
H A DmultiVis.c309 targetBytesPerLine = target_image->bytes_per_line;
404 int32_t bytes_per_line; local
409 bytes_per_line = width*depth/8;
411 bytes_per_line = width/8;
417 rem = (bytes_per_line*8)%bitmap_unit;
419 bytes_per_line += (rem/8 + 1);
425 bytes_per_line = ximage->bytes_per_line;
428 ximage->data = malloc(height*bytes_per_line);
430 ximage->data = malloc(height*bytes_per_line*dept
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1694 jint height, jint bitmap_pad, jint bytes_per_line)
1699 width, height, bitmap_pad, bytes_per_line));
1691 Java_sun_awt_X11_XlibWrapper_XCreateImage(JNIEnv *env, jclass clazz, jlong display, jlong visual_ptr, jint depth, jint format, jint offset, jlong data, jint width, jint height, jint bitmap_pad, jint bytes_per_line) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java473 int bytes_per_line);
471 XCreateImage(long display, long visual_ptr, int depth, int format, int offset, long data, int width, int height, int bitmap_pad, int bytes_per_line) argument

Completed in 35 milliseconds