Changeset 103025 in vbox for trunk/include
- Timestamp:
- Jan 24, 2024 2:21:13 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 161260
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm-mem.h
r103017 r103025 132 132 DECLINLINE(void) ASMMemFill32(volatile void RT_FAR *pv, size_t cb, uint32_t u32) RT_NOTHROW_DEF 133 133 { 134 Assert(!(cb & 3)); 135 Assert(cb > 0); 134 136 # if RT_INLINE_ASM_USES_INTRIN 135 137 # ifdef RT_ARCH_AMD64 -
trunk/include/iprt/asm.h
r103006 r103025 6226 6226 #endif 6227 6227 6228 /** @todo Move ASMByteSwapU16, ASMByteSwapU32 and ASMByteSwapU64 in their own 6229 * header as it's a common reason for including asm.h. */ 6230 6228 6231 6229 6232 /** … … 6349 6352 6350 6353 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 * 6352 6360 * @{ 6353 6361 */ … … 7460 7468 #endif 7461 7469 7470 /** @} */ 7471 7472 7473 /** @defgroup grp_inline_bits Bit Operations 7474 * @{ 7475 */ 7462 7476 7463 7477 /**
Note:
See TracChangeset
for help on using the changeset viewer.