VirtualBox

Changeset 103025 in vbox for trunk/include


Ignore:
Timestamp:
Jan 24, 2024 2:21:13 PM (16 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
161260
Message:

*: Replaced some ASMMemZero32 uses with RT_BZERO. bugref:10588

Location:
trunk/include/iprt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/asm-mem.h

    r103017 r103025  
    132132DECLINLINE(void) ASMMemFill32(volatile void RT_FAR *pv, size_t cb, uint32_t u32) RT_NOTHROW_DEF
    133133{
     134    Assert(!(cb & 3));
     135    Assert(cb > 0);
    134136# if RT_INLINE_ASM_USES_INTRIN
    135137#  ifdef RT_ARCH_AMD64
  • trunk/include/iprt/asm.h

    r103006 r103025  
    62266226#endif
    62276227
     6228/** @todo Move ASMByteSwapU16, ASMByteSwapU32 and ASMByteSwapU64 in their own
     6229 *        header as it's a common reason for including asm.h. */
     6230
    62286231
    62296232/**
     
    63496352
    63506353
    6351 /** @defgroup grp_inline_bits   Bit Operations
     6354/** @defgroup grp_inline_bits   Bitmap Operations
     6355 *
     6356 * @todo Move these into a separate header, with standard IPRT prefix
     6357 *       (RTBitmapXxx).  Move the more complex (searched) stuff into C source
     6358 *       files.
     6359 *
    63526360 * @{
    63536361 */
     
    74607468#endif
    74617469
     7470/** @} */
     7471
     7472
     7473/** @defgroup grp_inline_bits   Bit Operations
     7474 * @{
     7475 */
    74627476
    74637477/**
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette