Searched refs:cx (Results 51 - 72 of 72) sorted by relevance

123

/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_64.s146 movw -2(%rdi,%r8,1),%cx # copy trailing word
147 movw %cx,-2(%rsi,%r8,1)
238 movw -2(%rdi,%r8,2),%cx # copy trailing word
239 movw %cx,-2(%rsi,%r8,2)
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_64.s138 movw -2(%rdi,%r8,1),%cx # copy trailing word
139 movw %cx,-2(%rsi,%r8,1)
230 movw -2(%rdi,%r8,2),%cx # copy trailing word
231 movw %cx,-2(%rsi,%r8,2)
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DLoopMacros.h2035 jint cx, cy, cw, ch; \
2038 cx = pSrcInfo->bounds.x1; \
2039 cw = pSrcInfo->bounds.x2-cx; \
2065 xwhole += cx; \
2087 jint cx, cy, cw, ch; \
2090 cx = pSrcInfo->bounds.x1; \
2091 cw = pSrcInfo->bounds.x2-cx; \
2123 xwhole += cx; \
H A DProcessPath.c1033 jint cx = (jint)((-3*coords[0] + 3*coords[2])*(CUB_C_MDP_MULT)); local
1042 jint dpx = ax + (bx>>1) + cx;
1309 double cx = -coords[0] + coords[2]; local
1311 SOLVEQUADINRANGE(ax,bx,cx,params,cnt);
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DRenderer.java187 float dx = c.bx / countsq + c.cx / count;
222 dx = c.ax / (1 << (3 * countlg)) + c.bx / (1 << (2 * countlg)) + c.cx / (1 << countlg);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Button.cpp230 int x = (rect.left + rect.right-size.cx) / 2 + adjust;
H A Dawt_List.cpp380 if ( size.cx > m_nMaxWidth )
381 m_nMaxWidth = size.cx;
H A Dawt_Component.cpp1435 ((windowMoveLockPosCX != lpPosInfo->cx) ||
1440 windowMoveLockPosCX = lpPosInfo->cx;
4314 (GetRTL()) ? rect.right - size.cx - 1
4583 RECT eraseR = { 0, 0, size.cx, size.cy };
4594 //XXX: might be optimized to use one loop (cy*cx -> 0)
4596 for (int j = 0; j < size.cx; j++ ) {
4615 HBITMAP hBitmap = BitmapUtil::CreateARGBBitmap(size.cx, size.cy, &bitmapBits);
4621 VERIFY(::SetWindowOrgEx(hMemoryDC, loc.cx, loc.cy, NULL));
4640 bmi.bmiHeader.biWidth = size.cx;
4646 jobject localPixelArray = env->NewIntArray(size.cx * siz
[all...]
H A DThemeReader.cpp764 jobject dimObj = env->NewObject(dimClassID, dimMID, size.cx, size.cy);
H A Dawt_DnDDS.cpp111 sdi.sizeDragImage.cx = imageWidth;
H A Dawt_PrintJob.cpp2226 return ok ? size.cx : 0;
H A Dawt_Window.cpp2699 size.cx = width;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java2418 int cx, cy, cw, ch;
2450 cx = insets.left + totalTabWidth + contentInsets.left;
2455 cx = insets.left + contentInsets.left;
2460 cx = insets.left + contentInsets.left;
2466 cx = insets.left + contentInsets.left;
2497 child.setBounds(cx, cy, cw, ch);
2954 int cx, cy, cw, ch; // content area bounds
2969 cx = tx + tw + contentInsets.left;
2984 cx = insets.left + contentInsets.left;
2999 cx
[all...]
H A DBasicSliderUI.java990 int cx = (trackBounds.width / 2) - 2;
993 g.translate(trackBounds.x + cx, trackBounds.y);
1004 g.translate(-(trackBounds.x + cx), -trackBounds.y);
H A DBasicListUI.java211 int cx = rowBounds.x;
222 cx += (cw - w);
227 rendererPane.paintComponent(g, rendererComponent, list, cx, cy, cw, ch, true);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java2261 int cx, cy, cw, ch;
2292 cx = insets.left + totalTabWidth + contentInsets.left;
2297 cx = insets.left + contentInsets.left;
2302 cx = insets.left + contentInsets.left;
2308 cx = insets.left + contentInsets.left;
2331 child.setBounds(cx, cy, cw, ch);
2782 int cx, cy, cw, ch; // content area bounds
2797 cx = tx + tw + contentInsets.left;
2810 cx = insets.left + contentInsets.left;
2823 cx
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c2613 int cx; local
2618 while ((cx = *str) != 0 &&
2619 (s_mp_tovalue(cx, radix) < 0) &&
2620 cx != '-' &&
2621 cx != '+') {
2625 if (cx == '-') {
2628 } else if (cx == '+') {
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java495 int cx = charIndices[i];
497 ltr = ltr && (cx == i);
498 rtl = rtl && (cx == --rtlix);
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp963 Node* cx = phase->transform( new (phase->C) ConvI2LNode(x, TypeLong::make(rxlo, rxhi, widen)) ); local
966 case Op_AddI: return new (phase->C) AddLNode(cx, cy);
967 case Op_SubI: return new (phase->C) SubLNode(cx, cy);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java4392 int cx, cy, cw, ch;
4394 cx = child.getX();
4399 if (x >= cx && (x + width) <= (cx + cw) &&
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c258 size.cx = splash->width;
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java1025 int cx = (int)((-3*coords[0] + 3*coords[2])*(CUB_C_MDP_MULT));
1034 int dpx = ax + (bx>>1) + cx;

Completed in 244 milliseconds

123