Searched refs:bitmap (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceEntryImpl.java81 private static void setBit(byte[] bitmap, int index, byte state) { argument
82 bitmap[index] = (byte) (bitmap[index] | state);
84 public static void setNative(byte[] bitmap) { argument
85 setBit(bitmap,0,Byte0.inNative);
87 public static void setSuspended(byte[] bitmap) { argument
88 setBit(bitmap,0,Byte0.suspended);
90 public static void setState(byte[] bitmap, Thread.State state) { argument
93 setBit(bitmap,0,Byte0.blocked);
96 setBit(bitmap,
113 checkOther(byte[] bitmap) argument
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c536 coupled with request for bitmap and to large extend work can be reused
577 by avoiding bitmap generation and conversion from FT
578 bitmap format. */
728 /* if algorithmic styling is required then we do not request bitmap */
770 /* generate bitmap if it is not done yet
776 width = (UInt16) ftglyph->bitmap.width;
777 height = (UInt16) ftglyph->bitmap.rows;
793 if (ftglyph->bitmap.pixel_mode == FT_PIXEL_MODE_LCD) {
795 } else if (ftglyph->bitmap.pixel_mode == FT_PIXEL_MODE_LCD_V) {
827 if (ftglyph->bitmap
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIWindowSurfaceData.cpp450 wsdo->bitmap = NULL;
777 // Need to create bitmap if we don't have one already or
781 // the bitmap)
782 // REMIND: we should find some way to dynamically force bitmap
784 if (pixelStride == 1 || !wsdo->bitmap || (w > wsdo->bmWidth) ||
787 if (wsdo->bitmap) {
790 "GDIWinSD_GetRasInfo: recreating GDI bitmap");
796 ::DeleteObject(wsdo->bitmap);
797 wsdo->bitmap = 0;
830 wsdo->bitmap
[all...]
H A DGDIWindowSurfaceData.h168 HBITMAP bitmap; // REMIND: store in TLS member in struct:_GDIWinSDOps
176 // actually should copy the bitmap
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp799 const ParMarkBitMap* bitmap = PSParallelCompact::mark_bitmap(); local
800 const size_t live = bitmap->live_words_in_range(search_start, oop(addr));
979 // be set at the end of GC. The marking bitmap is cleared to top; nothing
1060 // Clear the marking bitmap, summary data and split info.
1062 // Update top(). Must be done after clearing the bitmap and summary data.
2144 // Reset the mark bitmap, summary data, and do other bookkeeping. Must be
3171 ParMarkBitMap* const bitmap = mark_bitmap(); local
3189 addr = bitmap->find_obj_beg(addr, src_region_end);
3204 addr = bitmap->find_obj_beg(addr, src_region_end);
3332 ParMarkBitMap* const bitmap local
3462 const ParMarkBitMap* const bitmap = mark_bitmap(); local
3497 ParMarkBitMap* const bitmap = mark_bitmap(); local
[all...]
H A DpsParallelCompact.hpp370 // "Blocks" allow shorter sections of the bitmap to be searched. Each Block
769 inline ParMarkBitMap* bitmap() const;
792 ParMarkBitMapClosure::ParMarkBitMapClosure(ParMarkBitMap* bitmap,
795 _bitmap(bitmap), _compaction_manager(cm)
808 inline ParMarkBitMap* ParMarkBitMapClosure::bitmap() const {
1030 // Clear the marking bitmap and summary data that cover the specified space.
1527 inline MoveAndUpdateClosure(ParMarkBitMap* bitmap, ParCompactionManager* cm,
1559 MoveAndUpdateClosure::MoveAndUpdateClosure(ParMarkBitMap* bitmap,
1564 ParMarkBitMapClosure(bitmap, cm, words), _start_array(start_array)
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java558 /** Each int in the bitmap array is one pixel with a 32-bit color:
562 int width, int height, int[] bitmap);
561 SetBitmapShape(long display, long window, int width, int height, int[] bitmap) argument
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c2223 jint width, jint height, jintArray bitmap)
2238 len = (*env)->GetArrayLength(env, bitmap);
2243 values = (*env)->GetIntArrayElements(env, bitmap, &isCopy);
2266 (*env)->ReleaseIntArrayElements(env, bitmap, values, JNI_ABORT);
2221 Java_sun_awt_X11_XlibWrapper_SetBitmapShape(JNIEnv *env, jclass clazz, jlong display, jlong window, jint width, jint height, jintArray bitmap) argument
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLFuncs.h52 typedef void (GLAPIENTRY *glBitmapType)(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp381 static void print_bitmap(BitMap& bitmap);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dgl.h1245 const GLubyte *bitmap );

Completed in 127 milliseconds