Searched refs:mx (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/test/javax/management/Introspector/
H A DChangingNotifsTest.java63 for (boolean mx : new boolean[] {false, true})
64 test(mbs, name, mx);
70 private static void test(MBeanServer mbs, ObjectName name, boolean mx) argument
72 Object mbean = mx ? new EmptyMX() : new Empty();
73 String what = mx ? "MXBean" : "Standard MBean";
80 if (immutable != mx) {
82 mx);
88 if (unchanged != mx) {
/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanPreRegisterTest.java68 for (boolean mx : new boolean[] {false, true})
70 test(mx, wrapped);
76 private static void test(boolean mx, boolean wrapped) throws Exception { argument
79 Base mbean = mx ? new EmptyMX() : new Empty();
80 Object reg = wrapped ? new StandardMBean(mbean, null, mx) : mbean;
84 (mx ? "MXBean" : "Standard MBean") +
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DStroker.java164 float omx, float omy, float mx, float my,
168 if ((omx == 0 && omy == 0) || (mx == 0 && my == 0)) {
172 float domx = omx - mx;
182 mx = -mx;
185 drawRoundJoin(x, y, omx, omy, mx, my, rev);
190 float mx, float my,
193 // The sign of the dot product of mx,my and omx,omy is equal to the
195 // (ext is the angle between omx,omy and mx,my).
196 double cosext = omx * mx
163 drawRoundJoin(float x, float y, float omx, float omy, float mx, float my, boolean rev, float threshold) argument
188 drawRoundJoin(float cx, float cy, float omx, float omy, float mx, float my, boolean rev) argument
240 drawBezApproxForArc(final float cx, final float cy, final float omx, final float omy, final float mx, final float my, boolean rev) argument
270 drawRoundCap(float cx, float cy, float mx, float my) argument
310 drawMiter(final float pdx, final float pdy, final float x0, final float y0, final float dx, final float dy, float omx, float omy, float mx, float my, boolean rev) argument
495 drawJoin(float pdx, float pdy, float x0, float y0, float dx, float dy, float omx, float omy, float mx, float my) argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.hpp239 static int mutex_lock(mutex_t *mx) { return _mutex_lock(mx); } argument
240 static int mutex_trylock(mutex_t *mx) { return _mutex_trylock(mx); } argument
241 static int mutex_unlock(mutex_t *mx) { return _mutex_unlock(mx); } argument
242 static int mutex_init(mutex_t *mx) { return _mutex_init(mx, os::Solaris::mutex_scope(), NULL); } argument
243 static int mutex_destroy(mutex_t *mx) { return _mutex_destroy(mx); } argument
253 cond_timedwait(cond_t *cv, mutex_t *mx, timestruc_t *abst) argument
255 cond_wait(cond_t *cv, mutex_t *mx) argument
[all...]
H A Dos_solaris.cpp237 static int lwp_mutex_init(mutex_t *mx, int scope, void *arg) { memset(mx, 0, sizeof(mutex_t)); return 0; } argument
238 static int lwp_mutex_destroy(mutex_t *mx) { return 0; } argument
246 static int pthread_mutex_default_init(mutex_t *mx, int scope, void *arg) { memset(mx, 0, sizeof(mutex_t)); return 0; } argument
/openjdk7/jdk/src/share/classes/sun/dc/
H A DDuctusRenderingEngine.java182 float mx = 0.0f;
195 consumer.beginSubpath(mx, my);
257 mx = point[0];
259 consumer.beginSubpath(mx, my);
435 float mx = 0.0f;
447 r.beginSubpath(mx, my);
510 mx = point[0];
512 r.beginSubpath(mx, my);
724 float mx = 0.0f;
734 consumer.beginSubpath(mx, m
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DStrikeMetrics.java95 float lx, float ly, float mx, float my) {
104 maxAdvanceX = mx;
94 StrikeMetrics(float ax, float ay, float dx, float dy, float bx, float by, float lx, float ly, float mx, float my) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions_gcc.hpp217 typedef int (*int_fnP_cond_tP_mutex_tP_timestruc_tP)(cond_t *cv, mutex_t *mx, timestruc_t *abst);
218 typedef int (*int_fnP_cond_tP_mutex_tP)(cond_t *cv, mutex_t *mx);
H A DglobalDefinitions_sparcWorks.hpp231 typedef int (*int_fnP_cond_tP_mutex_tP_timestruc_tP)(cond_t *cv, mutex_t *mx, timestruc_t *abst);
232 typedef int (*int_fnP_cond_tP_mutex_tP)(cond_t *cv, mutex_t *mx);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderer.c175 jint mx, my; local
191 mx = xPoints[0];
199 isEmpty = isEmpty && (x == mx && y == my);
207 (xPoints[nPoints-1] != mx ||
216 j2d_glVertex2f((GLfloat)(mx + transX) + 0.5f,
225 mx = xPoints[nPoints-1] + transX;
227 j2d_glVertex2i(mx, my);
228 j2d_glVertex2i(mx+1, my+1);
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIRenderer.cpp79 jint mx = xpoints[0]; local
81 BOOL isclosed = (xpoints[npoints-1] == mx && ypoints[npoints-1] == my);
93 isempty = isempty && (x == mx && y == my);
734 int mx = 0, my = 0, x1 = 0, y1 = 0; local
749 mx = x1 = transX + (int) floor(coords[index++]);
763 isapoint = isapoint && (x1 == mx && y1 == my);
782 isapoint = isapoint && (x1 == mx && y1 == my);
799 isapoint = isapoint && (x1 == mx && y1 == my);
807 if (x1 != mx || y1 != my) {
808 x1 = mx;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodings.java169 final int mx = s.length();
170 char[] chars = new char[mx];
171 for (int i=0; i < mx; i++) {
/openjdk7/jdk/src/solaris/native/sun/font/
H A DX11FontScaler.c318 jfloat j0=0, j1=1, ay=j0, dy=j0, mx=j0; local
332 mx = (jfloat)AWTCharAdvance(AWTFontMaxBounds(xFont));
344 j0, ay, j0, dy, j1, j0, j0, j1, mx, j0);
346 /* ay, dy, mx, (float)context->scale); */
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DLocalVirtualMachine.java139 } catch (MonitorException mx) {
140 throw new InternalError(mx.getMessage());
/openjdk7/jdk/src/macosx/native/sun/font/
H A DAWTStrike.m384 jfloat ay=0.0, dy=0.0, mx=0.0, ly=0.0;
399 mx = [awtfont->fFont maximumAdvancement].width;
415 0.0, 0.0, ly, mx, 0.0);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DVertexCacher.cpp311 jfloat mx = (jfloat)xPoints[0]; local
339 isEmpty = isEmpty && (x == mx && y == my);
353 ADD_LINE_SEG_XYC(mx + transX, my + transY, color);
361 mx = xPoints[nPoints-1] + transX +SP_FF4;
363 ADD_LINE_SEG_XYC(mx, my, color);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.m313 // find the original line function y = mx + c
977 CGFloat mx = 0.0f, my = 0.0f, x1 = 0.0f, y1 = 0.0f, cpx1 = 0.0f, cpy1 = 0.0f, cpx2 = 0.0f, cpy2 = 0.0f;
980 mx = (CGFloat)coords[index++] + offsetX;
982 CGContextMoveToPoint(cgRef, mx, my);
996 //fprintf(stderr, " forced CGContextMoveToPoint (%f, %f)\n", mx, my);
997 CGContextMoveToPoint(cgRef, mx, my); // force new subpath
1005 mx = x1 = (CGFloat)coords[index++] + offsetX;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java726 XmlMixed mx = null;
746 case 9: checkConflict(mx, ann); mx = (XmlMixed) ann; break;
780 if(r1!=null || r2!=null || xae!=null || mx!=null || ov != null) {
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java160 int mx, my, x1, y1;
166 mx = x1 = xPoints[off] + transx;
177 if (close && (x1 != mx || y1 != my)) {
179 x1, y1, mx, my);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.cpp1005 const int mx = MonitorBound ; local
1006 if (mx > 0 && (MonitorPopulation-MonitorFreeCount) > mx) {
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c442 jfloat ax, ay, dx, dy, bx, by, lx, ly, mx, my; local
511 mx = (jfloat) FT26Dot6ToFloat(
520 ax, ay, dx, dy, bx, by, lx, ly, mx, my);
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DREADME290 E1zlXQCaWXT3/ZMbqYZV4+mx+RUl8spUCb1tda25jnTg3mTOzB1iztm4gy903EMd
/openjdk7/hotspot/src/share/vm/memory/
H A DreferenceProcessor.cpp1304 RememberKlassesChecker mx(must_remember_klasses);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp4624 DEBUG_ONLY(RememberKlassesChecker mx(should_unload_classes());)
4795 DEBUG_ONLY(RememberKlassesChecker mx(should_unload_classes());)
4883 DEBUG_ONLY(RememberKlassesChecker mx(should_unload_classes());)

Completed in 335 milliseconds