Home
last modified time | relevance | path

Searched refs:IntPtr (Results 1 – 4 of 4) sorted by relevance

/NW4C-1.2.23/include/nw/
Dtypes.h50 typedef __w64 unsigned long IntPtr; typedef
53 typedef unsigned long IntPtr;
59 #define NW_ANY_TO_PTR_VALUE(ptr) reinterpret_cast<nw::IntPtr>(reinterpret_cast<const void*>(ptr))
/NW4C-1.2.23/include/nw/ut/
Dut_Inlines.h493 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundUp()
494 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp()
503 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundUp()
504 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp()
531 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundDown()
532 IntPtr rounded = value & ~(base - 1); in RoundDown()
541 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundDown()
542 IntPtr rounded = value & ~(base - 1); in RoundDown()
765 NW_INLINE IntPtr
768 return reinterpret_cast<IntPtr>( ptr ); in GetIntPtr()
Dut_LinkList.h818 return reinterpret_cast<Node*>(reinterpret_cast<IntPtr>(p) + TNOffset); in GetNodeFromPointer()
823 return reinterpret_cast<const Node*>(reinterpret_cast<IntPtr>(p) + TNOffset); in GetNodeFromPointer()
836 return reinterpret_cast<pointer>(reinterpret_cast<IntPtr>(p) - TNOffset); in GetPointerFromNode()
841 return reinterpret_cast<const_pointer>( reinterpret_cast<IntPtr>(p) - TNOffset); in GetPointerFromNode()
/NW4C-1.2.23/sources/libraries/snd/
Dsnd_FrameHeap.cpp197 …NW_ASSERTMSG( ( reinterpret_cast<IntPtr>(buffer) & 0x1f ) == 0, "FrameHeap::Alloc: Internal Error"… in Alloc()