Changeset 85075 in vbox for trunk/src/VBox/Runtime/common/string/memcpy.cpp
- Timestamp:
- Jul 6, 2020 5:17:30 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138979
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/memcpy.cpp
r82968 r85075 50 50 #endif 51 51 { 52 registerunion52 union 53 53 { 54 54 uint8_t *pu8; … … 58 58 uTrg.pv = pvDst; 59 59 60 registerunion60 union 61 61 { 62 62 uint8_t const *pu8; … … 67 67 68 68 /* 32-bit word moves. */ 69 registersize_t c = cb >> 2;69 size_t c = cb >> 2; 70 70 while (c-- > 0) 71 71 *uTrg.pu32++ = *uSrc.pu32++;
Note:
See TracChangeset
for help on using the changeset viewer.