Changeset 29273 in vbox
- Timestamp:
- May 9, 2010 10:10:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm.h
r29266 r29273 2640 2640 * @todo Fix name, it is a predicate function but it's not returning boolean! 2641 2641 */ 2642 #if RT_INLINE_ASM_EXTERNAL && !RT_INLINE_ASM_USES_INTRIN2643 DECLASM(void *) ASMMemIsAll8(void const *pv, size_t cb, uint8_t u8);2644 #else2645 2642 DECLINLINE(void *) ASMMemIsAll8(void const *pv, size_t cb, uint8_t u8) 2646 2643 { … … 2652 2649 return NULL; 2653 2650 } 2654 #endif2655 2651 2656 2652 … … 2669 2665 * @todo Fix name, it is a predicate function but it's not returning boolean! 2670 2666 */ 2671 #if RT_INLINE_ASM_EXTERNAL && !RT_INLINE_ASM_USES_INTRIN2672 DECLASM(uint32_t *) ASMMemIsAllU32(void const *pv, size_t cb, uint32_t u32);2673 #else2674 2667 DECLINLINE(uint32_t *) ASMMemIsAllU32(void const *pv, size_t cb, uint32_t u32) 2675 2668 { … … 2681 2674 return NULL; 2682 2675 } 2683 #endif2684 2676 2685 2677
Note:
See TracChangeset
for help on using the changeset viewer.