| /CTR-SDK-4.2.5/sources/libraries/fnd/detail/ |
| D | fnd_DetailHeapCommonImpl.h | 197 void* address, in FillAllocMemory() argument 204 MI_CpuFill32(address, 0, size); in FillAllocMemory() 211 MI_CpuFill32(address, GetFillValForHeap(NN_OS_HEAP_FILL_ALLOC), size); in FillAllocMemory() 218 #define FillFreeMemory(pHeapHd, address, size) ((void) 0) argument 223 void* address, in FillFreeMemory() argument 229 MI_CpuFill32(address, GetFillValForHeap(NN_OS_HEAP_FILL_FREE), size); in FillFreeMemory() 235 #define FillNoUseMemory(pHeapHd, address, size) ((void) 0) argument 240 void* address, in FillNoUseMemory() argument 246 MI_CpuFill32(address, GetFillValForHeap(NN_OS_HEAP_FILL_NOUSE), size); in FillNoUseMemory()
|
| /CTR-SDK-4.2.5/sources/libraries/dbg/ |
| D | dbg_Dump.cpp | 35 uptr address; in DumpMemory() local 39 address = reinterpret_cast<uptr>(p); in DumpMemory() 43 address = 0; in DumpMemory() 58 for(memPos = 0; size > 0; address += 0x10) in DumpMemory() 61 bufPos += nstd::TSPrintf(buffer, "%08x: ", address & static_cast<uptr>(~0xf)); in DumpMemory() 67 for(; (address & 0xf) != col; ++col) in DumpMemory()
|
| /CTR-SDK-4.2.5/include/nn/dsp/CTR/Common/ |
| D | dsp_Types.h | 47 #define NN_DSP_ADDR_TO_ARM(address) (u32)((address) << 1) argument 48 #define NN_DSP_ADDR_TO_DSP(address) (u16)((u32)(address) >> 1) argument
|
| D | dsp_Common.h | 106 DSPAddr address; // Starting address of the buffer member
|
| /CTR-SDK-4.2.5/tools/CommandLineTools/ctr_GxCommandAnalyzer/ |
| D | abstruct.csv | 39 0x085,Texture 0 data address (TEXTURE_2D or CUBE_MAP_POSITIVE_X) 40 0x086,Texture 0 data address (CUBEMAP_NEGATIVE_X) 41 0x087,Texture 0 data address (CUBEMAP_POSITIVE_Y) 42 0x088,Texture 0 data address (CUBEMAP_NEGATIVE_Y) 43 0x089,Texture 0 data address (CUBEMAP_POSITIVE_Z) 44 0x08a,Texture 0 data address (CUBEMAP_NEGATIVE_Z) 52 0x095,Texture 1 data address (TEXTURE_2D) 58 0x09d,Texture 2 data address (TEXTURE_2D) 137 0x11c,Depth buffer byte address 138 0x11d,Color buffer byte address [all …]
|
| D | detail.csv | 903 0x85,[27:0],"Texture address secured with glTexImage2D, glCompressedTexImage2D, and glCopyTexImage2… 904 GL_TEXTURE_2D(address)" 906 0x86,[21:0],"Texture address secured with glTexImage2D, glCompressedTexImage2D, and glCopyTexImage2… 907 GL_TEXTURE_CUBE_MAP_NEGATIVE_X(address) 910 0x87,[21:0],"Texture address secured with glTexImage2D, glCompressedTexImage2D, and glCopyTexImage2… 911 GL_TEXTURE_CUBE_MAP_POSITIVE_Y(address) 914 0x88,[21:0],"Texture address secured with glTexImage2D, glCompressedTexImage2D, and glCopyTexImage2… 915 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y(address) 918 0x89,[21:0],"Texture address secured with glTexImage2D, glCompressedTexImage2D, and glCopyTexImage2… 919 GL_TEXTURE_CUBE_MAP_POSITIVE_Z(address) [all …]
|
| /CTR-SDK-4.2.5/include/nn/fnd/ |
| D | fnd_Allocator.h | 90 pointer address(reference& x) const { return &x; } in address() function 91 const_pointer address(const_reference& x) const { return &x; } in address() function 120 pointer address(reference& x) const { return &x; } in address() function 121 const_pointer address(const_reference& x) const { return &x; } in address() function
|
| /CTR-SDK-4.2.5/sources/libraries/gr/CTR/ |
| D | gr_Utility.cpp | 32 CommandBufferJumpHelper::CommandBufferJumpHelper(bit32* address) in CommandBufferJumpHelper() argument 33 : m_CurrentPtr(address) in CommandBufferJumpHelper() 34 , m_StartPtr(address) in CommandBufferJumpHelper() 35 , m_ReturnPtr(address) in CommandBufferJumpHelper()
|
| /CTR-SDK-4.2.5/include/nn/gr/CTR/ |
| D | gr_Utility.h | 46 CommandBufferJumpHelper(bit32* address); 83 void Put(bit32* address) { in Put() argument 84 … NN_MIN_ASSERT(reinterpret_cast<u32*>(address), reinterpret_cast<u32*>(m_CurrentPtr)); in Put() 85 m_CurrentPtr = address; in Put() 93 void Put(uptr address) in Put() argument 95 … NN_MIN_ASSERT(reinterpret_cast<u32*>(address), reinterpret_cast<u32*>(m_CurrentPtr)); in Put() 96 m_CurrentPtr = reinterpret_cast<bit32*>(address); in Put()
|
| /CTR-SDK-4.2.5/sources/libraries/os/ |
| D | os_ManagedThread.cpp | 334 ManagedThread* ManagedThread::FindByStackAddress(uptr address) in FindByStackAddress() argument 343 Finder(uptr address) : m_Address(address), m_pFound(NULL) {} in FindByStackAddress() argument 356 } finder(address); in FindByStackAddress()
|
| /CTR-SDK-4.2.5/include/nn/socket/ |
| D | socket_Types.h | 78 InAddr address; member
|
| /CTR-SDK-4.2.5/include/nn/mic/CTR/ |
| D | mic_Api.h | 102 Result SetBuffer( void* address, size_t size );
|
| /CTR-SDK-4.2.5/include/nn/dsp/CTR/MPCore/ |
| D | dsp_Api.h | 168 nn::Result GetPhysicalAddress(uptr address, uptr * pPhysicalAddress);
|
| /CTR-SDK-4.2.5/include/nn/net/osl/ |
| D | osl_Mbuf.h | 350 static bool IsAligned(uptr address, u8 align, s8 offset) in IsAligned() argument 353 return ((address + offset) & (align - 1)) == 0; in IsAligned()
|
| /CTR-SDK-4.2.5/include/ |
| D | zlib.h | 81 typedef void (*free_func) OF((voidpf opaque, voidpf address));
|
| /CTR-SDK-4.2.5/include/nn/os/ |
| D | os_ManagedThread.h | 677 static ManagedThread* FindByStackAddress(uptr address);
|