Home
last modified time | relevance | path

Searched refs:address (Results 1 – 16 of 16) sorted by relevance

/CTR-SDK-4.2.8-20130828/sources/libraries/fnd/detail/
Dfnd_DetailHeapCommonImpl.h197 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.8-20130828/sources/libraries/dbg/
Ddbg_Dump.cpp35 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.8-20130828/include/nn/dsp/CTR/Common/
Ddsp_Types.h47 #define NN_DSP_ADDR_TO_ARM(address) (u32)((address) << 1) argument
48 #define NN_DSP_ADDR_TO_DSP(address) (u16)((u32)(address) >> 1) argument
Ddsp_Common.h106 DSPAddr address; // Starting address of the buffer member
/CTR-SDK-4.2.8-20130828/tools/CommandLineTools/ctr_GxCommandAnalyzer/
Dabstruct.csv39 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 …]
Ddetail.csv903 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.8-20130828/include/nn/fnd/
Dfnd_Allocator.h90 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.8-20130828/sources/libraries/gr/CTR/
Dgr_Utility.cpp32 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.8-20130828/include/nn/gr/CTR/
Dgr_Utility.h46 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.8-20130828/sources/libraries/os/
Dos_ManagedThread.cpp334 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.8-20130828/include/nn/socket/
Dsocket_Types.h78 InAddr address; member
/CTR-SDK-4.2.8-20130828/include/nn/mic/CTR/
Dmic_Api.h102 Result SetBuffer( void* address, size_t size );
/CTR-SDK-4.2.8-20130828/include/nn/dsp/CTR/MPCore/
Ddsp_Api.h168 nn::Result GetPhysicalAddress(uptr address, uptr * pPhysicalAddress);
/CTR-SDK-4.2.8-20130828/include/nn/net/osl/
Dosl_Mbuf.h350 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.8-20130828/include/
Dzlib.h81 typedef void (*free_func) OF((voidpf opaque, voidpf address));
/CTR-SDK-4.2.8-20130828/include/nn/os/
Dos_ManagedThread.h677 static ManagedThread* FindByStackAddress(uptr address);