Home
last modified time | relevance | path

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

/NW4C-2.0.3/include/nw/
Dtypes.h52 typedef __w64 unsigned long IntPtr; typedef
55 typedef unsigned long IntPtr;
61 #define NW_ANY_TO_PTR_VALUE(ptr) reinterpret_cast<nw::IntPtr>(reinterpret_cast<const void*>(ptr))
/NW4C-2.0.3/include/nw/ut/
Dut_Inlines.h495 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundUp()
496 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp()
505 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundUp()
506 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp()
533 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundDown()
534 IntPtr rounded = value & ~(base - 1); in RoundDown()
543 IntPtr value = reinterpret_cast<IntPtr>(x); in RoundDown()
544 IntPtr rounded = value & ~(base - 1); in RoundDown()
767 NW_INLINE IntPtr
770 return reinterpret_cast<IntPtr>( ptr ); in GetIntPtr()
Dut_LinkList.h821 return reinterpret_cast<Node*>(reinterpret_cast<IntPtr>(p) + TNOffset); in GetNodeFromPointer()
826 return reinterpret_cast<const Node*>(reinterpret_cast<IntPtr>(p) + TNOffset); in GetNodeFromPointer()
839 return reinterpret_cast<pointer>(reinterpret_cast<IntPtr>(p) - TNOffset); in GetPointerFromNode()
844 return reinterpret_cast<const_pointer>( reinterpret_cast<IntPtr>(p) - TNOffset); in GetPointerFromNode()
/NW4C-2.0.3/sources/libraries/snd/
Dsnd_FrameHeap.cpp211 …NW_ASSERTMSG( ( reinterpret_cast<IntPtr>(buffer) & 0x1f ) == 0, "FrameHeap::Alloc: Internal Error"… in Alloc()