- Timestamp:
- Jul 22, 2016 4:32:54 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r62355 r62463 250 250 251 251 #define AC97_PORT2IDX(a_idx) ( ((a_idx) >> 4) & 3 ) 252 252 253 253 254 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r62437 r62463 876 876 #endif 877 877 878 878 879 /********************************************************************************************************************************* 879 880 * Internal Functions * … … 967 968 static void hdaTimerMaybeStop(PHDASTATE pThis); 968 969 #endif 970 969 971 970 972 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio/DevIchHdaCommon.h
- Property svn:executable deleted
-
Property svn:eol-style
set to
native
-
trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp
r61609 r62463 64 64 #include "VBoxDD.h" 65 65 66 66 67 /********************************************************************************************************************************* 67 68 * Defines * … … 71 72 #define PDMIHOSTAUDIO_2_DRVHOSTALSAAUDIO(pInterface) \ 72 73 ( (PDRVHOSTALSAAUDIO)((uintptr_t)pInterface - RT_OFFSETOF(DRVHOSTALSAAUDIO, IHostAudio)) ) 74 73 75 74 76 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r61723 r62463 181 181 } DSOUNDDEV, *PDSOUNDDEV; 182 182 183 183 184 /********************************************************************************************************************************* 184 185 * Defines * … … 191 192 #define PDMIHOSTAUDIO_2_DRVHOSTDSOUND(pInterface) \ 192 193 ( (PDRVHOSTDSOUND)((uintptr_t)pInterface - RT_OFFSETOF(DRVHOSTDSOUND, IHostAudio)) ) 194 193 195 194 196 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio/DrvHostOSSAudio.cpp
r61609 r62463 35 35 #include "VBoxDD.h" 36 36 37 37 38 /********************************************************************************************************************************* 38 39 * Defines * … … 48 49 #define PDMIHOSTAUDIO_2_DRVHOSTOSSAUDIO(pInterface) \ 49 50 ( (PDRVHOSTOSSAUDIO)((uintptr_t)pInterface - RT_OFFSETOF(DRVHOSTOSSAUDIO, IHostAudio)) ) 51 50 52 51 53 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
r61609 r62463 16 16 */ 17 17 18 18 19 /********************************************************************************************************************************* 19 20 * Header Files * … … 41 42 #include "VBoxDD.h" 42 43 44 43 45 /********************************************************************************************************************************* 44 46 * Defines * … … 62 64 #define PDMIHOSTAUDIO_2_DRVHOSTPULSEAUDIO(pInterface) \ 63 65 ( (PDRVHOSTPULSEAUDIO)((uintptr_t)pInterface - RT_OFFSETOF(DRVHOSTPULSEAUDIO, IHostAudio)) ) 66 64 67 65 68 /********************************************************************************************************************************* … … 154 157 char *pszDefaultSource; 155 158 } PULSEAUDIOENUMCBCTX, *PPULSEAUDIOENUMCBCTX; 159 156 160 157 161 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio_old/DevIchAc97.cpp
r61413 r62463 229 229 230 230 #define AC97_PORT2IDX(a_idx) ( ((a_idx) >> 4) & 3 ) 231 231 232 232 233 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio_old/DevIchHda.cpp
r61413 r62463 770 770 #endif 771 771 772 772 773 /********************************************************************************************************************************* 773 774 * Internal Functions * -
trunk/src/VBox/Devices/BiosCommonCode/biosorg_check.sed
r60433 r62463 41 41 42 42 43 # Loop for comparing the two addresses. The one in the pattern buffer (left) must be 43 # Loop for comparing the two addresses. The one in the pattern buffer (left) must be 44 44 # smaller or equal to the one in in the pattern buffer (BIOSORG address). 45 45 :compare_loop … … 168 168 169 169 170 # Next round of the loop. 170 # Next round of the loop. 171 171 # 1. Drop the leading digit of the max address (BIOSORG). 172 172 # 2. Check if we've reached end of the address. If so, check that we've reached the space in the actual address. -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-cocoa.m
r57790 r62463 290 290 291 291 /* 292 * Get notifications when we're moved or resized and when we're moved 293 * to a different screen or GPU or when the GL context simply needs updating. 292 * Get notifications when we're moved or resized and when we're moved 293 * to a different screen or GPU or when the GL context simply needs updating. 294 294 */ 295 295 if (pParentView) … … 472 472 /** 473 473 * This is called when the bounds change. 474 * 474 * 475 475 * We indicate that the FIFO thread must update the GL context. 476 476 */ … … 483 483 /** 484 484 * This is called when the frame changes size or position. 485 * 485 * 486 486 * We indicate that the FIFO thread must update the GL context. 487 487 */ … … 492 492 } 493 493 494 /** 495 * This is called when moved to different screen/GPU or/and when the GL context 494 /** 495 * This is called when moved to different screen/GPU or/and when the GL context 496 496 * needs updating. 497 * 497 * 498 498 * We indicate that the FIFO thread must update the GL context. 499 499 */ -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r59741 r62463 6172 6172 Log(("ShaderSetPositionTransformed: (%d,%d)\n", pContext->state.RectViewPort.w, pContext->state.RectViewPort.h)); 6173 6173 case SVGA3D_DECLUSAGE_POSITION: 6174 ShaderSetPositionTransformed(pContext->pShaderContext, pContext->state.RectViewPort.w, pContext->state.RectViewPort.h, 6174 ShaderSetPositionTransformed(pContext->pShaderContext, pContext->state.RectViewPort.w, pContext->state.RectViewPort.h, 6175 6175 pVertexDecl[iVertex].identity.usage == SVGA3D_DECLUSAGE_POSITIONT); 6176 6176 break; -
trunk/src/VBox/Devices/Graphics/VBoxSVGA3D.def
r59741 r62463 38 38 ShaderSetPositionTransformed 39 39 40 -
trunk/src/VBox/Devices/Network/slirp/hostres.c
r61801 r62463 901 901 CHECKED( append_u16(res, RT_H2N_U16_C(sizeof(addr))) ); 902 902 CHECKED( append_u32(res, addr.s_addr) ); 903 903 904 904 APPEND_EPILOGUE(); 905 905 } … … 1021 1021 ++s; 1022 1022 } 1023 1023 1024 1024 poff = wr; 1025 1025 -
trunk/src/VBox/Devices/Network/slirp/resolv_conf_parser.c
r61802 r62463 245 245 { 246 246 LogRel(("NAT: resolv.conf: bad nameserver address %s\n", tok)); 247 continue; 247 continue; 248 248 } 249 249 -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r60404 r62463 88 88 * is to ignore flushes, i.e. true. */ 89 89 #define VBOX_IGNORE_FLUSH 90 90 91 91 92 /********************************************************************************************************************************* … … 2487 2488 } 2488 2489 2490 2489 2491 /********************************************************************************************************************************* 2490 2492 * Async Media interface methods * … … 2721 2723 return VINF_SUCCESS; 2722 2724 } 2725 2723 2726 2724 2727 /********************************************************************************************************************************* … … 3857 3860 return VDTYPE_HDD; 3858 3861 } 3862 3859 3863 3860 3864 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Storage/IOBufMgmt.cpp
r59452 r62463 46 46 47 47 /** 48 * A 48 * A 49 49 */ 50 50 typedef struct IOBUFMGRBIN -
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r62001 r62463 106 106 #define VBOX_WITH_OHCI_PHYS_READ_CACHE 107 107 //#define VBOX_WITH_OHCI_PHYS_READ_STATS 108 108 109 109 110 /********************************************************************************************************************************* … … 1346 1347 p->ed.cMinReadsPerPage = RT_MIN(p->ed.cMinReadsPerPage, p->ed.cReadsLastPage); 1347 1348 p->ed.cMaxReadsPerPage = RT_MAX(p->ed.cMaxReadsPerPage, p->ed.cReadsLastPage);; 1348 1349 1349 1350 p->td.cMinReadsPerPage = RT_MIN(p->td.cMinReadsPerPage, p->td.cReadsLastPage); 1350 1351 p->td.cMaxReadsPerPage = RT_MAX(p->td.cMaxReadsPerPage, p->td.cReadsLastPage);; 1351 1352 1352 1353 p->all.cMinReadsPerPage = RT_MIN(p->all.cMinReadsPerPage, p->all.cReadsLastPage); 1353 1354 p->all.cMaxReadsPerPage = RT_MAX(p->all.cMaxReadsPerPage, p->all.cReadsLastPage);; -
trunk/src/VBox/Devices/USB/VUSBBufferedPipe.cpp
r59776 r62463 511 511 * Create a ring buffer which can hold twice the amount of data 512 512 * for the required latency so we can fill the buffer with new data 513 * while the old one is still being used 513 * while the old one is still being used 514 514 */ 515 515 rc = RTCircBufCreate(&pThis->pRingBufData, 2 * pThis->cbRingBufData); … … 582 582 } 583 583 584 -
trunk/src/VBox/Devices/USB/VUSBSniffer.cpp
r59686 r62463 35 35 * Defined Constants And Macros * 36 36 *********************************************************************************************************************************/ 37 37 38 38 39 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBSnifferUsbMon.cpp
r59700 r62463 34 34 * Defined Constants And Macros * 35 35 *********************************************************************************************************************************/ 36 36 37 37 38 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBSnifferVmx.cpp
r59633 r62463 34 34 * Defined Constants And Macros * 35 35 *********************************************************************************************************************************/ 36 36 37 37 38 /********************************************************************************************************************************* … … 83 84 "Dec" 84 85 }; 86 85 87 86 88 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBUrbPool.cpp
r59775 r62463 28 28 #include "VUSBInternal.h" 29 29 30 30 31 /********************************************************************************************************************************* 31 32 * Defined Constants And Macros * … … 37 38 /** Convert from an URB to the URB header. */ 38 39 #define VUSBURBPOOL_URB_2_URBHDR(a_pUrb) RT_FROM_MEMBER(a_pUrb, VUSBURBHDR, Urb); 40 39 41 40 42 /********************************************************************************************************************************* … … 67 69 AssertCompileSizeAlignment(VUSBURBHDR, 8); 68 70 71 69 72 /********************************************************************************************************************************* 70 73 * Static Variables * 71 74 *********************************************************************************************************************************/ 75 72 76 73 77 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/USB/VUSBUrbTrace.cpp
r59738 r62463 40 40 * Global Variables * 41 41 *********************************************************************************************************************************/ 42 42 43 43 44 /*********************************************************************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.