| /openjdk7/hotspot/src/share/vm/memory/ |
| H A D | freeList.cpp | 73 void FreeList<Chunk>::reset(size_t hint) { argument 77 set_hint(hint);
|
| H A D | freeList.hpp | 94 // Reset the head, tail, hint, and count of a free list. 95 void reset(size_t hint); 158 size_t hint() const { function in class:VALUE_OBJ_CLASS_SPEC 163 assert(v == 0 || _size < v, "Bad hint"); _hint = v;
|
| H A D | binaryTreeDictionary.cpp | 416 // populated, get a chunk associated with the hint for this 419 /* Use the hint to find a size with a surplus, and reset the hint. */ 421 while (hintTL->hint() != 0) { 422 assert(hintTL->hint() == 0 || hintTL->hint() > hintTL->size(), 423 "hint points in the wrong direction"); 424 hintTL = find_list(hintTL->hint()); 428 // No useful hint. Set the hint t 1122 size_t hint; member in class:setTreeHintsClosure [all...] |
| /openjdk7/jdk/src/share/classes/sun/java2d/loops/ |
| H A D | TransformBlit.java | 105 AffineTransform at, int hint, 148 AffineTransform at, int hint, 153 target.Transform(src, dst, comp, clip, at, hint, 103 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int srcx, int srcy, int dstx, int dsty, int width, int height) argument 146 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int srcx, int srcy, int dstx, int dsty, int width, int height) argument
|
| /openjdk7/jdk/src/share/classes/java/util/ |
| H A D | ComparableTimSort.java | 465 * @param hint the index at which to begin the search, 0 <= hint < n. 466 * The closer hint is to the result, the faster this method will run. 474 int base, int len, int hint) { 475 assert len > 0 && hint >= 0 && hint < len; 479 if (key.compareTo(a[base + hint]) > 0) { 480 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs] 481 int maxOfs = len - hint; 473 gallopLeft(Comparable<Object> key, Object[] a, int base, int len, int hint) argument 543 gallopRight(Comparable<Object> key, Object[] a, int base, int len, int hint) argument [all...] |
| H A D | TimSort.java | 497 * @param hint the index at which to begin the search, 0 <= hint < n. 498 * The closer hint is to the result, the faster this method will run. 506 private static <T> int gallopLeft(T key, T[] a, int base, int len, int hint, argument 508 assert len > 0 && hint >= 0 && hint < len; 511 if (c.compare(key, a[base + hint]) > 0) { 512 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs] 513 int maxOfs = len - hint; 576 gallopRight(T key, T[] a, int base, int len, int hint, Comparator<? super T> c) argument [all...] |
| /openjdk7/jdk/src/share/classes/com/sun/script/javascript/ |
| H A D | JSAdapter.java | 245 public Object getDefaultValue(Class hint) { argument 246 return getAdaptee().getDefaultValue(hint);
|
| /openjdk7/jdk/src/solaris/classes/sun/java2d/xr/ |
| H A D | XRPMBlitLoops.java | 265 public void Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform xform, int hint, int srcx, int srcy, argument 270 int filter = XRUtils.ATransOpToXRQuality(hint); 390 public void Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform xform, int hint, int sx, int sy, int dstx, argument 396 pmToSurfaceBlit.Transform(vImgSurface, dst, comp, clip, xform, hint, 0, 0, dstx, dsty, w, h);
|
| /openjdk7/jdk/src/share/classes/java/awt/geom/ |
| H A D | CubicCurve2D.java | 1306 private static double bisectRootWithHint(double[] eqn, double x0, double xe, double hint) { argument 1307 double delta1 = Math.min(abs(hint - x0) / 64, 0.0625); 1308 double delta2 = Math.min(abs(hint - xe) / 64, 0.0625); 1309 double x02 = hint - delta1; 1310 double xe2 = hint + delta2; 1321 x02 = hint - delta1; 1322 xe2 = hint + delta2;
|
| /openjdk7/hotspot/src/share/vm/ci/ |
| H A D | ciMethodData.hpp | 156 // Cached hint for data_before() 212 // hint accessors 222 int hint = hint_di(); local 223 if (data_layout_at(hint)->bci() <= bci) 224 return data_at(hint);
|
| /openjdk7/jdk/src/windows/classes/sun/java2d/d3d/ |
| H A D | D3DBlitLoops.java | 192 int hint, int srctype) 196 (hint << OFFSET_HINT ) | 230 AffineTransform xform, int hint, 263 hint, srctype); 294 AffineTransform xform, int hint, 333 hint, 0 /*unused*/); 414 AffineTransform at, int hint, 420 comp, clip, at, hint, 484 AffineTransform at, int hint, 489 comp, clip, at, hint, 190 createPackedParams(boolean isoblit, boolean texture, boolean rtt, boolean xform, int hint, int srctype) argument 228 Blit(SurfaceData srcData, SurfaceData dstData, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, int srctype, boolean texture) argument 291 IsoBlit(SurfaceData srcData, SurfaceData dstData, BufferedImage srcImg, BufferedImageOp biop, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, boolean texture) argument 412 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument 482 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument 603 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument 695 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument 832 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument [all...] |
| /openjdk7/jdk/src/share/classes/sun/java2d/opengl/ |
| H A D | OGLBlitLoops.java | 203 int hint, int srctype) 207 (hint << OFFSET_HINT ) | 241 AffineTransform xform, int hint, 275 hint, srctype); 298 AffineTransform xform, int hint, 346 hint, 0 /*unused*/); 425 AffineTransform at, int hint, 431 comp, clip, at, hint, 495 AffineTransform at, int hint, 500 comp, clip, at, hint, 201 createPackedParams(boolean isoblit, boolean texture, boolean rtt, boolean xform, int hint, int srctype) argument 239 Blit(SurfaceData srcData, SurfaceData dstData, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, int srctype, boolean texture) argument 295 IsoBlit(SurfaceData srcData, SurfaceData dstData, BufferedImage srcImg, BufferedImageOp biop, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, boolean texture) argument 423 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument 493 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument 614 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument 706 Transform(SurfaceData src, SurfaceData dst, Composite comp, Region clip, AffineTransform at, int hint, int sx, int sy, int dx, int dy, int w, int h) argument [all...] |
| /openjdk7/jdk/src/share/native/sun/java2d/opengl/ |
| H A D | OGLBlitLoops.c | 101 * method applied is determined by the hint parameter (can be GL_NEAREST or 107 jboolean rtt, jint hint, 151 OGLSD_UPDATE_TEXTURE_FILTER(srcOps, hint); 260 jboolean swsurface, jint hint, 268 GLint glhint = (hint == OGLSD_XFORM_BILINEAR) ? GL_LINEAR : GL_NEAREST; 446 jboolean xform, jint hint, 499 J2dTraceLn2(J2D_TRACE_VERBOSE, " texture=%d hint=%d", texture, hint); 506 GLint glhint = (hint == OGLSD_XFORM_BILINEAR) ? GL_LINEAR : 546 JNI_FALSE, hint, 105 OGLBlitTextureToSurface(OGLContext *oglc, OGLSDOps *srcOps, OGLSDOps *dstOps, jboolean rtt, jint hint, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument 258 OGLBlitToSurfaceViaTexture(OGLContext *oglc, SurfaceDataRasInfo *srcInfo, OGLPixelFormat *pf, OGLSDOps *srcOps, jboolean swsurface, jint hint, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument 444 OGLBlitLoops_IsoBlit(JNIEnv *env, OGLContext *oglc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jboolean texture, jboolean rtt, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument 565 OGLBlitLoops_Blit(JNIEnv *env, OGLContext *oglc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jint srctype, jboolean texture, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument [all...] |
| H A D | OGLPaints.c | 240 GLint hint = (filter ? GL_LINEAR : GL_NEAREST); local 280 OGLSD_UPDATE_TEXTURE_FILTER(srcOps, hint);
|
| H A D | OGLRenderQueue.c | 294 jint hint = EXTRACT_BYTE(packedParams, OFFSET_HINT); local 305 xform, hint, texture, rtt, 311 xform, hint, srctype, texture,
|
| /openjdk7/jdk/src/windows/native/sun/java2d/d3d/ |
| H A D | D3DBlitLoops.cpp | 332 D3DTEXTUREFILTERTYPE hint, 394 return pd3dDevice->StretchRect(pSrc, &srcRect, pDst, &dstRect, hint); 399 * hint. See detailed explanation below. 402 D3DDrawTextureWithHint(D3DContext *d3dc, D3DTEXTUREFILTERTYPE hint, argument 411 if (hint == D3DTEXF_LINEAR && 471 * - the hint is D3DTEXF_POINT or 491 * method applied is determined by the hint parameter. 496 jboolean rtt, D3DTEXTUREFILTERTYPE hint, 521 pd3dDevice->SetSamplerState(0, D3DSAMP_MAGFILTER, hint); 522 pd3dDevice->SetSamplerState(0, D3DSAMP_MINFILTER, hint); 331 D3DBlitSurfaceToSurface(D3DContext *d3dc, D3DSDOps *srcOps, D3DSDOps *dstOps, D3DTEXTUREFILTERTYPE hint, jint sx1, jint sy1, jint sx2, jint sy2, jint dx1, jint dy1, jint dx2, jint dy2) argument 494 D3DBlitTextureToSurface(D3DContext *d3dc, D3DSDOps *srcOps, D3DSDOps *dstOps, jboolean rtt, D3DTEXTUREFILTERTYPE hint, jint sx1, jint sy1, jint sx2, jint sy2, float dx1, float dy1, float dx2, float dy2) argument 560 D3DBlitToSurfaceViaTexture(D3DContext *d3dc, SurfaceDataRasInfo *srcInfo, int srctype, D3DSDOps *srcOps, jboolean swsurface, jint hint, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument 689 D3DBlitLoops_IsoBlit(JNIEnv *env, D3DContext *d3dc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jboolean texture, jboolean rtt, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument 799 D3DBlitLoops_Blit(JNIEnv *env, D3DContext *d3dc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jint srctype, jboolean texture, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument [all...] |
| H A D | D3DRenderQueue.cpp | 430 jint hint = EXTRACT_BYTE(packedParams, OFFSET_HINT); local 441 xform, hint, texture, rtt, 448 xform, hint, srctype, texture,
|
| /openjdk7/jdk/src/share/native/sun/awt/medialib/ |
| H A D | awt_ImagingLib.c | 257 mlibHintS_t hint; local 348 FALSE, &hint); 358 hint.cvtSrcToDefault, hint.addAlpha) < 0) { 366 hint.cvtToDst, FALSE) < 0) { 754 mlibHintS_t hint; local 832 FALSE, &hint); 842 hint.cvtSrcToDefault, hint.addAlpha) < 0) { 849 hint 1283 mlibHintS_t hint; local [all...] |
| /openjdk7/jdk/src/share/demo/jfc/Font2DTest/ |
| H A D | FontPanel.java | 524 * graphics anti-aliasing hint if the text anti-aliasing hint 1263 private Object hint; field in class:FontPanel.FMValues 1269 hint = o; 1277 return hint; 1297 public static int getHintVal(Object hint) { argument 1300 if (valArray[i].getHint() == hint) { 1319 private Object hint; field in class:FontPanel.AAValues 1325 hint = o; 1333 return hint; 1361 getHintVal(Object hint) argument [all...] |
| /openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
| H A D | compactibleFreeListSpace.cpp | 253 assert(_indexedFreeList[i].hint() == IndexSetSize, "reset check failed"); 265 assert(_indexedFreeList[i].hint() == IndexSetSize, "reset check failed"); 1866 /* A hint is the next larger size that has a surplus. 1872 size_t hint = _indexedFreeList[start].hint(); local 1873 while (hint < IndexSetSize) { 1874 assert(hint % MinObjAlignment == 0, "hint should be aligned"); 1875 FreeList<FreeChunk> *fl = &_indexedFreeList[hint]; 1877 // Found a list with surplus, reset original hint [all...] |