Changeset 85075 in vbox for trunk/src/VBox/Runtime/common/string/memset.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/memset.cpp
r82968 r85075 50 50 #endif 51 51 { 52 registerunion52 union 53 53 { 54 54 uint8_t *pu8; … … 59 59 60 60 /* 32-bit word moves. */ 61 registeruint32_t u32 = ch | (ch << 8);61 uint32_t u32 = ch | (ch << 8); 62 62 u32 |= u32 << 16; 63 registersize_t c = cb >> 2;63 size_t c = cb >> 2; 64 64 while (c-- > 0) 65 65 *u.pu32++ = u32;
Note:
See TracChangeset
for help on using the changeset viewer.