/reactos/drivers/network/tcpip/lwip/src/netif/ppp/polarssl/ |
H A D | des.c | 257 T = ((X >> 4) ^ Y) & 0x0F0F0F0F; Y ^= T; X ^= (T << 4); \ 258 T = ((X >> 16) ^ Y) & 0x0000FFFF; Y ^= T; X ^= (T << 16); \ 259 T = ((Y >> 2) ^ X) & 0x33333333; X ^= T; Y ^= (T << 2); \ 260 T = ((Y >> 8) ^ X) & 0x00FF00FF; X ^= T; Y ^= (T << 8); \ 261 Y = ((Y << 1) | (Y >> 31)) & 0xFFFFFFFF; \ 273 Y = ((Y << 31) | (Y >> 1)) & 0xFFFFFFFF; \ 311 T = ((Y >> 4) ^ X) & 0x0F0F0F0F; X ^= T; Y ^= (T << 4); in des_setkey() 312 T = ((Y ) ^ X) & 0x10101010; X ^= T; Y ^= (T ); in des_setkey() 319 Y = (RHs[ (Y >> 1) & 0xF] << 3) | (RHs[ (Y >> 9) & 0xF ] << 2) in des_setkey() 335 Y = ((Y << 1) | (Y >> 27)) & 0x0FFFFFFF; in des_setkey() [all …]
|
/reactos/dll/3rdparty/mbedtls/ |
H A D | des.c | 292 (Y) = (((Y) << 1) | ((Y) >> 31)) & 0xFFFFFFFF; \ 305 (Y) = (((Y) << 31) | ((Y) >> 1)) & 0xFFFFFFFF; \ 463 T = ((Y >> 4) ^ X) & 0x0F0F0F0F; X ^= T; Y ^= (T << 4); in mbedtls_des_setkey() 464 T = ((Y ) ^ X) & 0x10101010; X ^= T; Y ^= (T ); in mbedtls_des_setkey() 471 Y = (RHs[ (Y >> 1) & 0xF] << 3) | (RHs[ (Y >> 9) & 0xF ] << 2) in mbedtls_des_setkey() 487 Y = ((Y << 1) | (Y >> 27)) & 0x0FFFFFFF; in mbedtls_des_setkey() 492 Y = ((Y << 2) | (Y >> 26)) & 0x0FFFFFFF; in mbedtls_des_setkey() 670 DES_IP( X, Y ); in mbedtls_des_crypt_ecb() 678 DES_FP( Y, X ); in mbedtls_des_crypt_ecb() 757 DES_IP( X, Y ); in mbedtls_des3_crypt_ecb() [all …]
|
H A D | bignum.c | 224 if( X == Y ) in mbedtls_mpi_copy() 227 if( Y->n == 0 ) in mbedtls_mpi_copy() 238 X->s = Y->s; in mbedtls_mpi_copy() 364 mpi_safe_cond_assign( Y->n, X->p, Y->p, assign ); in mbedtls_mpi_safe_cond_assign() 388 if( X == Y ) in mbedtls_mpi_safe_cond_swap() 412 Y->s = mpi_safe_cond_select_sign( Y->s, s, swap ); in mbedtls_mpi_safe_cond_swap() 419 Y->p[i] = ( Y->p[i] & ~limb_mask ) | ( tmp & limb_mask ); in mbedtls_mpi_safe_cond_swap() 1284 mbedtls_mpi Y; in mbedtls_mpi_cmp_int() local 1290 Y.n = 1; in mbedtls_mpi_cmp_int() 1291 Y.p = p; in mbedtls_mpi_cmp_int() [all …]
|
/reactos/sdk/include/psdk/ |
H A D | gdiplustypes.h | 81 Y = pt.Y; in Point() 95 return Point(X + pt.X, Y + pt.Y); 101 return Point(X - pt.X, Y - pt.Y); 107 return (X == pt.X) && (Y == pt.Y); in Equals() 128 Y = pt.Y; in PointF() 142 return PointF(X + pt.X, Y + pt.Y); 148 return PointF(X - pt.X, Y - pt.Y); 302 rect->Y = Y; in GetBounds() 317 point->Y = Y; in GetLocation() 504 rect->Y = Y; in GetBounds() [all …]
|
/reactos/win32ss/user/winsrv/consrv/condrv/ |
H A D | text.c | 146 ASSERT(Y < Buff->ScreenBufferSize.Y); in ConioCoordToPointer() 326 for (Y = Region->Top; Y <= Region->Bottom; ++Y) in ConioFillRegion() 471 ScreenBuffer->ViewOrigin.Y = min(ScreenBuffer->ViewOrigin.Y, Size.Y - ScreenBuffer->ViewSize.Y); in ConioResizeBuffer() 525 for (Y = 0; Y < Buffer->ScreenBufferSize.Y; ++Y) in ConDrvChangeScreenBufferAttributes() 606 for (Y = CapturedReadRegion.Top; Y <= CapturedReadRegion.Bottom; ++Y) in ConDrvReadConsoleOutput() 855 for (Y = ReadCoord->Y; Y < Buffer->ScreenBufferSize.Y; ++Y) in IntReadConsoleOutputStringChars() 916 for (Y = ReadCoord->Y; Y < Buffer->ScreenBufferSize.Y; ++Y) in IntReadConsoleOutputStringAttributes() 1063 for (Y = WriteCoord->Y; Y < Buffer->ScreenBufferSize.Y; ++Y) in IntWriteConsoleOutputStringChars() 1133 for (Y = WriteCoord->Y; Y < Buffer->ScreenBufferSize.Y; ++Y) in IntWriteConsoleOutputStringAttribute() 1300 Y = WriteCoord->Y; in ConDrvFillConsoleOutput() [all …]
|
/reactos/base/applications/network/telnet/src/ |
H A D | tmouse.cpp | 43 if(end_coords->Y < start_coords->Y || in get_coords() 44 (end_coords->Y == start_coords->Y && end_coords->X < start_coords->X)) in get_coords() 76 (last_coords.Y - first_coords.Y) + (last_coords.X - first_coords.X), in move_mouse() 89 (last_coords.Y - first_coords.Y) + (last_coords.X - first_coords.X); in doClip() 99 for(int j = first_coords.Y; j <= last_coords.Y; j++) { in doClip() 104 coords.Y = j; in doClip() 107 if(j == first_coords.Y) { in doClip() 116 if(j == last_coords.Y) { in doClip() 126 if((j != last_coords.Y) && (first_coords.Y != last_coords.Y)) in doClip() 129 if(first_coords.Y != last_coords.Y) { in doClip() [all …]
|
/reactos/modules/rostests/apitests/kernel32/ |
H A D | ConsoleCP.c | 17 (c).X, (c).Y, __sbi.dwCursorPosition.X, __sbi.dwCursorPosition.Y); \ 268 c.Y = 0; in test_cp855() 279 c.Y = 0; in test_cp855() 324 c.Y = 0; in test_cp855() 337 c.Y = 0; in test_cp855() 376 c.Y = 0; in test_cp855() 386 c.Y = 0; in test_cp855() 394 c.Y = 0; in test_cp855() 402 c.Y = 0; in test_cp855() 486 c.Y = 0; in test_cp932() [all …]
|
H A D | SetConsoleWindowInfo.c | 20 if (Resolution.X != pcsbi->dwSize.X || Resolution.Y != pcsbi->dwSize.Y) in ResizeTextConsole() 57 ConRect.Bottom = min(pcsbi->dwCursorPosition.Y, Resolution.Y - 1); in ResizeTextConsole() 58 ConRect.Top = ConRect.Bottom - min(Resolution.Y, pcsbi->dwMaximumWindowSize.Y) + 1; in ResizeTextConsole() 134 Resolution.Y = 25; in START_TEST() 140 ConRect.Bottom = ConRect.Top + min(csbi.dwSize.Y, csbi.dwMaximumWindowSize.Y) - 1; in START_TEST() 154 ConRect.Bottom = csbi.dwSize.Y - 7; in START_TEST() 247 ConRect.Top = csbi.dwSize.Y - 5; in START_TEST() 289 Resolution.Y = 500; in START_TEST() 293 ok((csbi.dwMaximumWindowSize.X < Resolution.X) && (csbi.dwMaximumWindowSize.Y < Resolution.Y), in START_TEST() 295 csbi.dwMaximumWindowSize.X, csbi.dwMaximumWindowSize.Y, Resolution.X, Resolution.Y); in START_TEST() [all …]
|
/reactos/win32ss/user/winsrv/consrv/ |
H A D | popup.c | 62 for (coPos.Y = yTop; coPos.Y < yTop + Height; coPos.Y++) in DrawBox() 75 coPos.Y = yTop; in DrawBox() 87 coPos.Y = yTop; in DrawBox() 99 coPos.Y = yTop; in DrawBox() 110 for (coPos.Y = yTop + 1; coPos.Y < yTop + Height - 1; coPos.Y++) in DrawBox() 145 coPos.Y = yTop + Height - 1; in DrawBox() 157 coPos.Y = yTop + Height - 1; in DrawBox() 209 Popup->Origin.Y = yTop; in CreatePopupWindow() 211 Popup->Size.Y = Height; in CreatePopupWindow() 225 Region.Bottom = Popup->Origin.Y + Popup->Size.Y - 1; in CreatePopupWindow() [all …]
|
H A D | settings.c | 93 ConsoleInfo->WindowSize.Y != ActiveBuffer->OldViewSize.Y) in ConSrvApplyUserSettings() 99 … if (BufSize.X >= ActiveBuffer->OldViewSize.X && BufSize.Y >= ActiveBuffer->OldViewSize.Y) in ConSrvApplyUserSettings() 102 BufSize.Y != ActiveBuffer->OldScreenBufferSize.Y) in ConSrvApplyUserSettings() 119 ConsoleInfo->WindowSize.Y != ActiveBuffer->ViewSize.Y) in ConSrvApplyUserSettings() 127 BufSize.Y != ActiveBuffer->ScreenBufferSize.Y) in ConSrvApplyUserSettings() 157 ConsoleInfo->WindowSize.Y <= ActiveBuffer->ViewSize.Y) in ConSrvApplyUserSettings() 166 ConsoleInfo->WindowSize.Y <= ActiveBuffer->ViewSize.Y) in ConSrvApplyUserSettings()
|
/reactos/dll/opengl/mesa/ |
H A D | lines.c | 241 pby[count] = Y; \ in flat_ci_line() 268 pby[count] = Y; \ in flat_ci_z_line() 323 pby[count] = Y; \ in flat_rgba_z_line() 502 pby[count] = Y; pby[count+1] = Y+1; \ in general_smooth_ci_line() 508 pby[count] = Y; pby[count+1] = Y; \ in general_smooth_ci_line() 569 pby[count] = Y; pby[count+1] = Y+1; \ in general_flat_ci_line() 574 pby[count] = Y; pby[count+1] = Y; \ in general_flat_ci_line() 646 pby[count] = Y; pby[count+1] = Y+1; \ in general_smooth_rgba_line() 655 pby[count] = Y; pby[count+1] = Y; \ in general_smooth_rgba_line() 723 pby[count] = Y; pby[count+1] = Y+1; \ in general_flat_rgba_line() [all …]
|
H A D | clip.c | 347 Y(new) = Y(in) + t * (Y(out) - Y(in)); \ in gl_viewclip_line() 364 Y(new) = Y(in) + t * (Y(out) - Y(in)); \ in gl_viewclip_line() 377 dy = Y(out) - Y(in); \ in gl_viewclip_line() 381 Y(new) = Y(in) + t * dy; \ in gl_viewclip_line() 398 Y(new) = Y(in) + t * dy; \ in gl_viewclip_line() 415 Y(new) = Y(in) + t * (Y(out) - Y(in)); \ in gl_viewclip_line() 432 Y(new) = Y(in) + t * (Y(out) - Y(in)); \ in gl_viewclip_line() 573 Y(new) = Y(in) + t * (Y(out) - Y(in)); \ in gl_viewclip_polygon() 601 Y(new) = Y(in) + t * (Y(out) - Y(in)); \ in gl_viewclip_polygon() 686 Y(new) = Y(in) + t * (Y(out) - Y(in)); \ in gl_viewclip_polygon() [all …]
|
/reactos/dll/win32/gdiplus/ |
H A D | graphicspath.c | 136 mp[1].Y = (mp[0].Y + pt.Y) / 2.0; in flatten_bezier() 138 mp[4].Y = (end->pt.Y + y3) / 2.0; in flatten_bezier() 140 mp[3].Y = (mp[4].Y + pt.Y) / 2.0; in flatten_bezier() 143 mp[2].Y = (mp[1].Y + mp[3].Y) / 2.0; in flatten_bezier() 152 if(fabs(((pt.Y - pt_st.Y)*mp[2].X + (pt_st.X - pt.X)*mp[2].Y + in flatten_bezier() 396 pt[3*i+3].Y = pts[i+1].Y; in GdipAddPathClosedCurve2() 411 pt[0].Y = pts[1].Y; in GdipAddPathClosedCurve2() 416 pt[len_pt-1].Y = pt[0].Y; in GdipAddPathClosedCurve2() 503 pt[0].Y = points[0].Y; in GdipAddPathCurve2() 923 float y = rect->Y + (bounds->Y - rect->Y) * args->scale; in format_string_callback() [all …]
|
H A D | graphics.c | 2374 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+ in get_font_hfont() 2376 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+ in get_font_hfont() 3109 ptf[2].Y = ptf[2].Y + ptf[1].Y - ptf[0].Y; in GdipDrawImagePointsRect() 3120 ptf[1].Y = ptf[1].Y + ptf[2].Y - ptf[0].Y; in GdipDrawImagePointsRect() 3126 ptf[3].Y = ptf[2].Y + ptf[1].Y - ptf[0].Y; in GdipDrawImagePointsRect() 5468 args.rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+ in GdipMeasureCharacterRanges() 5591 args.rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+ in GdipMeasureString() 5762 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+ in GdipDrawString() 5764 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+ in GdipDrawString() 7116 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+ in GdipMeasureDriverString() [all …]
|
H A D | matrix.c | 97 m12 = (pt[1].Y - pt[0].Y) / rect->Width; in GdipCreateMatrix3() 98 m22 = (pt[2].Y - pt[0].Y) / rect->Height; in GdipCreateMatrix3() 99 dy = pt[0].Y - m12 * rect->X - m22 * rect->Y; in GdipCreateMatrix3() 114 rectF.Y = (REAL)rect->Y; in GdipCreateMatrix3I() 120 ptF[i].Y = (REAL)pt[i].Y; in GdipCreateMatrix3I() 377 y = pts[i].Y; in GdipTransformMatrixPoints() 403 ptsF[i].Y = (REAL)pts[i].Y; in GdipTransformMatrixPointsI() 411 pts[i].Y = gdip_round(ptsF[i].Y); in GdipTransformMatrixPointsI() 458 y = pts[i].Y; in GdipVectorTransformMatrixPoints() 484 ptsF[i].Y = (REAL)pts[i].Y; in GdipVectorTransformMatrixPointsI() [all …]
|
/reactos/modules/rostests/winetests/gdiplus/ |
H A D | graphics.c | 2375 rectf.Y == exp.Y && in test_GdipGetVisibleClipBounds_screen() 2385 exp.Y = clipr.Y = 12; in test_GdipGetVisibleClipBounds_screen() 2395 rectf.Y == exp.Y && in test_GdipGetVisibleClipBounds_screen() 2420 rectf.Y == exp.Y && in test_GdipGetVisibleClipBounds_screen() 2431 recti.Y == exp.Y && in test_GdipGetVisibleClipBounds_screen() 2479 exp.Y = clipr.Y = 8; in test_GdipGetVisibleClipBounds_window() 2489 rectf.Y == exp.Y && in test_GdipGetVisibleClipBounds_window() 2514 rectf.Y == exp.Y && in test_GdipGetVisibleClipBounds_window() 2525 recti.Y == exp.Y && in test_GdipGetVisibleClipBounds_window() 2541 exp.Y = window.Y * 2.0; in test_GdipGetVisibleClipBounds_window() [all …]
|
/reactos/base/setup/usetup/ |
H A D | consup.c | 234 coPos.Y = y; in CONSOLE_SetCursorXY() 245 coPos.Y = 0; in CONSOLE_ClearScreen() 285 for (coPos.Y = y; coPos.Y < y + row; coPos.Y++) in CONSOLE_InvertTextXY() 307 for (coPos.Y = y; coPos.Y < y + row; coPos.Y++) in CONSOLE_NormalTextXY() 329 coPos.Y = y; in CONSOLE_SetTextXY() 347 coPos.Y = y; in CONSOLE_ClearTextXY() 368 coPos.Y = y; in CONSOLE_SetInputTextXY() 408 coPos.Y = y; in CONSOLE_SetUnderlinedTextXY() 418 coPos.Y++; in CONSOLE_SetUnderlinedTextXY() 548 coPos.Y = y; in CONSOLE_SetInvertedTextXY() [all …]
|
H A D | progress.c | 57 coPos.Y = Bar->Top + 1; in DrawBorder() 66 coPos.Y = Bar->Top + 1; in DrawBorder() 75 coPos.Y = Bar->Top + 1; in DrawBorder() 86 coPos.Y = i; in DrawBorder() 103 coPos.Y = Bar->Bottom; in DrawBorder() 112 coPos.Y = Bar->Bottom; in DrawBorder() 121 coPos.Y = Bar->Bottom; in DrawBorder() 169 coPos.Y = i; in DrawThickBorder() 186 coPos.Y = Bar->Bottom; in DrawThickBorder() 254 for (coPos.Y = Bar->Top + 2; coPos.Y <= Bar->Bottom - 1; coPos.Y++) in DrawProgressBar() [all …]
|
/reactos/win32ss/user/winsrv/consrv/frontends/gui/ |
H A D | conwnd.c | 444 if (Buff->ScreenBufferSize.Y > Buff->ViewSize.Y) in ResizeConWnd() 620 OldFontSize.Y != FontData.Size.Y)) in InitFonts() 805 if (Begin->Y > End->Y || (Begin->Y == End->Y && Begin->X > End->X)) in GetSelectionBeginEnd() 808 End->Y = _InterlockedExchange16(&Begin->Y, End->Y); in GetSelectionBeginEnd() 831 if (Begin.Y == End.Y) in CreateSelectionRgn() 1370 (Buff->CursorPosition.Y >= (Buff->ViewOrigin.Y + Buff->ViewSize.Y))) in OnTimer() 1493 Maximum = Buff->ScreenBufferSize.Y - Buff->ViewSize.Y; in OnScroll() 1599 else if (Coord.Y >= Buffer->ScreenBufferSize.Y) in PointToCoord() 1600 Coord.Y = Buffer->ScreenBufferSize.Y - 1; in PointToCoord() 2181 … Buff->ViewSize.Y = (chary <= (DWORD)Buff->ScreenBufferSize.Y) ? chary : Buff->ScreenBufferSize.Y; in OnSize() [all …]
|
H A D | text.c | 161 Begin->X, Begin->Y, End->X, End->Y); in CopyLines() 166 if (Begin->Y > End->Y || (Begin->Y == End->Y && Begin->X > End->X)) return; in CopyLines() 169 if (End->Y == Begin->Y) // top == bottom in CopyLines() 177 if (End->Y >= Begin->Y + 2) in CopyLines() 179 NumChars += (End->Y - Begin->Y - 1) * Buffer->ScreenBufferSize.X; in CopyLines() 206 for (yPos = Begin->Y; (yPos <= (ULONG)End->Y) && (NumChars > 0); yPos++) in CopyLines() 208 xBeg = (yPos == Begin->Y ? Begin->X : 0); in CopyLines() 209 xEnd = (yPos == End->Y ? End->X : Buffer->ScreenBufferSize.X - 1); in CopyLines() 383 CursorY = Buffer->CursorPosition.Y; in GuiPaintCaret() 470 if (BottomLine >= (ULONG)Buffer->ScreenBufferSize.Y) in GuiPaintTextModeBuffer() [all …]
|
/reactos/subsystems/mvdm/ntvdm/console/ |
H A D | video.c | 151 VDMBufferSize.X = VDMBufferSize.Y = 0; in __RegisterConsoleVDM() 170 for (i = 0; i < VDMBufferSize.Y; i++) in __InvalidateConsoleDIBits() 248 if (Resolution->X != ConsoleInfo.dwSize.X || Resolution->Y != ConsoleInfo.dwSize.Y) in ResizeTextConsole() 271 ConRect.Bottom = max(ConsoleInfo.dwCursorPosition.Y, Resolution->Y - 1); in ResizeTextConsole() 377 ConRect.Bottom = TextResolution.Y; in AttachToConsoleInternal() 390 for (i = 0; i < TextResolution.Y; i++) in AttachToConsoleInternal() 466 CurrResolution.Y == ScreenEvent->dwSize.Y) in ScreenEventHandler() 484 UpdateRectangle.Bottom = CurrResolution.Y; in ScreenEventHandler() 502 if (TextResolution.Y == 0) TextResolution.Y = 25; in VgaAttachToConsole() 621 LONG Height = Resolution->Y; in VgaConsoleCreateGraphicsScreen() [all …]
|
/reactos/sdk/lib/3rdparty/stlport/test/unit/cppunit/ |
H A D | cppunit_mini.h | 149 # define CPPUNIT_TEST_BASE(X, Y) \ argument 152 bool shouldRun = shouldRunThis(in_name, className, #X, invert, Y, do_progress); \ 155 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \ 168 # define CPPUNIT_TEST_BASE(X, Y) \ argument 174 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \ 211 #define CPPUNIT_ASSERT_EQUAL(X, Y) \ argument 212 if ((X) != (Y)) { \ 213 Base::error("CPPUNIT_ASSERT_EQUAL", #X","#Y, __FILE__, __LINE__); \ 217 #define CPPUNIT_ASSERT_DOUBLES_EQUAL(X, Y, Z) \ argument 218 if (!equalDoubles((X), (Y), (Z))) { \ [all …]
|
/reactos/modules/rostests/winetests/kernel32/ |
H A D | console.c | 87 for (c.Y = 0; c.Y < sbSize.Y; c.Y++) in resetContent() 110 c.Y = sbSize.Y - 1; in testCursor() 121 c.Y = sbSize.Y; in testCursor() 509 for (c.Y = 0; c.Y < sbSize.Y; c.Y++) in testScroll() 516 tc.Y = c.Y - dst.Y; in testScroll() 544 for (c.Y = 0; c.Y < sbSize.Y; c.Y++) in testScroll() 551 tc.Y = c.Y - dst.Y; in testScroll() 580 for (c.Y = 0; c.Y < sbSize.Y; c.Y++) in testScroll() 587 tc.Y = c.Y - dst.Y; in testScroll() 622 for (c.Y = 0; c.Y < sbSize.Y; c.Y++) in testScroll() [all …]
|
/reactos/modules/rosapps/applications/sysutils/regexpl/ |
H A D | Console.cpp | 109 m_CursorPosition.Y++; in Write() 133 m_CursorPosition.Y++; in Write() 136 if (m_CursorPosition.Y == m_BufferSize.Y) in Write() 153 Dest.Y = 0; in Write() 155 m_CursorPosition.Y--; in Write() 311 CompletionPosition.Y = SHORT(CompletionPosition.Y - m_LinesScrolled); in ReadLine() 411 Cursor.Y = SHORT(Cursor.Y - m_LinesScrolled); in ReadLine() 656 NewCursorPosition.Y = m_CursorPosition.Y; in ReadLine() 663 NewCursorPosition.Y = SHORT(m_CursorPosition.Y-1); in ReadLine() 842 Cursor.Y = SHORT(Cursor.Y - m_LinesScrolled); in ReadLine() [all …]
|
/reactos/modules/rosapps/applications/notevil/ |
H A D | notevil.c | 78 wsprintf(buf, L"x=%02d y=%02d", c.X, c.Y); in WriteCoord() 107 xy.Y = ScreenBufferInfo.dwSize.Y / 2; in DisplayTitle() 129 xy.Y = ScreenBufferInfo.dwSize.Y / 2; in MainLoop() 158 if (xy.Y == 0) in MainLoop() 163 else if (xy.Y >= ScreenBufferInfo.dwSize.Y - 1) in MainLoop() 168 xy.Y += dir_y; in MainLoop() 193 … ScreenBufferInfo.dwSize.Y = ScreenBufferInfo.srWindow.Bottom - ScreenBufferInfo.srWindow.Top + 1; in wmain() 208 ScreenBufferInfo.dwSize.X * ScreenBufferInfo.dwSize.Y, in wmain()
|