Searched defs:bitmap (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/ |
H A D | JvmThreadInstanceEntryImpl.java | 81 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/windows/native/sun/java2d/windows/ |
H A D | GDIWindowSurfaceData.h | 168 HBITMAP bitmap; // REMIND: store in TLS member in struct:_GDIWinSDOps 176 // actually should copy the bitmap
|
/openjdk7/jdk/src/solaris/native/sun/xawt/ |
H A D | XlibWrapper.c | 2223 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/solaris/classes/sun/awt/X11/ |
H A D | XlibWrapper.java | 558 /** 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/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psParallelCompact.cpp | 799 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...] |
Completed in 63 milliseconds