Searched refs:hint (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/jdk/src/share/test/pack200/
H A Dpack.conf28 pack.deflate.hint=false
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java465 * @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 DTimSort.java497 * @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/hotspot/src/share/vm/utilities/
H A DbitMap.inline.hpp95 inline void BitMap::set_range(idx_t beg, idx_t end, RangeSizeHint hint) {
96 if (hint == small_range && end - beg == 1) {
99 if (hint == large_range) {
107 inline void BitMap::clear_range(idx_t beg, idx_t end, RangeSizeHint hint) {
108 if (hint == small_range && end - beg == 1) {
111 if (hint == large_range) {
119 inline void BitMap::par_set_range(idx_t beg, idx_t end, RangeSizeHint hint) {
120 if (hint == small_range && end - beg == 1) {
123 if (hint == large_range) {
148 inline void BitMap::par_clear_range(idx_t beg, idx_t end, RangeSizeHint hint) {
[all...]
H A DbitMap.hpp188 // Update a range of bits, using a hint about the size. Currently only
189 // inlines the predominant case of a 1-bit range. Works best when hint is a
191 void set_range(idx_t beg, idx_t end, RangeSizeHint hint);
192 void clear_range(idx_t beg, idx_t end, RangeSizeHint hint);
193 void par_set_range(idx_t beg, idx_t end, RangeSizeHint hint);
194 void par_clear_range (idx_t beg, idx_t end, RangeSizeHint hint);
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DExternalScriptable.java294 * Get the default value of the object with a given hint.
299 * A <code>hint</code> of null means "no hint".
303 * @param hint the type hint
323 String hint;
325 hint = "undefined";
327 hint = "string";
329 hint = "object";
331 hint
[all...]
H A DJSAdapter.java245 public Object getDefaultValue(Class hint) { argument
246 return getAdaptee().getDefaultValue(hint);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLBlitLoops.h42 jboolean xform, jint hint,
51 jboolean xform, jint hint,
H A DOGLBlitLoops.c101 * 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 DOGLPaints.c240 GLint hint = (filter ? GL_LINEAR : GL_NEAREST); local
280 OGLSD_UPDATE_TEXTURE_FILTER(srcOps, hint);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DTransformBlit.java105 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/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.h43 jboolean xform, jint hint,
68 jboolean xform, jint hint,
H A DD3DBlitLoops.cpp332 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...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt62 WM_TRANSIENT_FOR hint.
78 However, the value of WM_TRANSIENT_FOR hint and prevTransientFor
96 temporarily becomes a child of D1 (WM_TRANSIENT_FOR hint is
101 however the values of WM_TRANSIENT_FOR hint for them are
102 changed: hint value for F1 is set to None, and hint value for
106 values aren't changed again, but WM_TRANSIENT_FOR hint is:
110 When either F1 or F2 is restored, the value for its hint is
119 All the updates of the hint's value is performed in the
124 All the problems with WM_TRANSIENT_FOR hint an
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DBlitLoops.java192 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 DOGLBlitLoops.java203 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/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java241 // { modCount, hint, -1==beg[0], end[0]==beg[1], ..., length }
280 for (int hint = lengths[HINT];; hint = 0) {
281 for (int wh = hint; wh < lengths.length - END0; wh++) {
289 if (hint == 0) {
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.hpp156 // 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/solaris/classes/sun/font/
H A DFontConfigManager.java128 * The return value is a text aa rendering hint value.
135 int hint = getFontConfigAASettings(getFCLocaleStr(), fcFamily);
136 if (hint < 0) {
140 hint);
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.hpp94 // 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 DbinaryTreeDictionary.cpp416 // 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...]
H A DfreeList.cpp73 void FreeList<Chunk>::reset(size_t hint) { argument
77 set_hint(hint);
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java524 * 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/jdk/src/share/classes/java/awt/geom/
H A DCubicCurve2D.java1306 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/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRPMBlitLoops.java265 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);

Completed in 264 milliseconds

12