| /NW4C-1.3.3/sources/libraries/snd/ |
| D | snd_PlayerHeapDataManager.cpp | 47 m_FileAddress[i].address = NULL; in Initialize() 64 SoundArchive::FileId fileId, const void* address ) in SetFileAddress() argument 66 return SetFileAddressToTable( fileId, address ); in SetFileAddress() 82 m_FileAddress[i].address = NULL; in InvalidateData() 87 SoundArchive::FileId fileId, const void* address ) in SetFileAddressToTable() argument 94 const void* prev = m_FileAddress[i].address; in SetFileAddressToTable() 95 m_FileAddress[i].address = address; in SetFileAddressToTable() 106 m_FileAddress[i].address = address; in SetFileAddressToTable() 122 return m_FileAddress[i].address; in GetFileAddressFromTable()
|
| D | snd_SoundDataManager.cpp | 120 m_pFileTable->item[ i ].address = NULL; in CreateFileAddressTable() 144 const void* addr = m_pFileTable->item[ i ].address; in InvalidateData() 147 m_pFileTable->item[ i ].address = NULL; in InvalidateData() 210 const void* address ) in SetFileAddressToTable() argument 223 const void* preAddress = m_pFileTable->item[ fileId ].address; in SetFileAddressToTable() 224 m_pFileTable->item[ fileId ].address = address; in SetFileAddressToTable() 251 return m_pFileTable->item[ fileId ].address; in GetFileAddressFromTable() 265 SoundDataManager::SetFileAddress( SoundArchive::FileId fileId, const void* address ) in SetFileAddress() argument 267 return SetFileAddressToTable( fileId, address ); in SetFileAddress() 272 u32 SoundDataManager::detail_GetFileIdFromTable( const void* address ) const in detail_GetFileIdFromTable() [all …]
|
| D | snd_WaveSound.cpp | 241 sound->Prepare( wsd->address, sound->m_StartInfo ); in NotifyAsyncLoadFinishedFunc() 260 if ( ( m_LoadInfoWsd.address == NULL ) && in Execute() 274 m_LoadInfoWsd.address = m_pDataManager->detail_GetFileAddressByItemId( soundId ); in Execute() 279 m_LoadInfoWsd.address, m_Index, *m_pSoundArchive, *m_pSoundDataManager ); in Execute() 284 m_LoadInfoWsd.address, m_Index, m_pAllocator ) ) in Execute()
|
| D | snd_SequenceSound.cpp | 133 command->bankFiles[0] = banks[0].address; in SetBankData() 134 command->bankFiles[1] = banks[1].address; in SetBankData() 135 command->bankFiles[2] = banks[2].address; in SetBankData() 136 command->bankFiles[3] = banks[3].address; in SetBankData() 189 SequenceSoundFileReader reader( seq->address ); in NotifyAsyncLoadFinishedFunc() 830 if ( ( m_LoadInfoSeq.address == NULL ) && in Execute() 844 m_LoadInfoSeq.address = m_pDataManager->detail_GetFileAddressByItemId( soundId ); in Execute() 849 if ( ( m_LoadInfoBanks[i].address == NULL ) && in Execute() 864 m_LoadInfoBanks[i].address = m_pDataManager->detail_GetFileAddressByItemId( bankId ); in Execute() 870 m_LoadInfoBanks[i].address, *m_pSoundArchive, *m_pSoundDataManager ); in Execute() [all …]
|
| D | snd_GroupFileReader.cpp | 117 out->address = groupItemInfo->GetFileLocation( m_pFileBlockBody ); in ReadGroupItemLocationInfo()
|
| D | snd_MmlParser.cpp | 682 callStack->address = trackParam.currentAddr; in CommandProc() 703 trackParam.currentAddr = callStack->address; in CommandProc() 715 callStack->address = trackParam.currentAddr; in CommandProc() 745 trackParam.currentAddr = callStack->address; in CommandProc()
|
| /NW4C-1.3.3/sources/libraries/gfx/res/ |
| D | gfx_ResVertex.cpp | 43 void* address = NULL; in BufferData() local 56 address = __dmpgl_allocator(area, NN_GX_MEM_VERTEXBUFFER, bufferID, size); in BufferData() 58 internal::nwgfxAddVramDmaCommand( resStream.GetStream(), address, size ); in BufferData() 60 resStream.SetLocationAddress( address ); in BufferData() 67 address = __dmpgl_allocator(NN_GX_MEM_FCRAM, NN_GX_MEM_VERTEXBUFFER, bufferID, size); in BufferData() 68 nw::os::MemCpy( address, resStream.GetStream(), size ); in BufferData() 69 nngxUpdateBuffer( address, size ); in BufferData() 71 resStream.SetLocationAddress( address ); in BufferData() 93 void* address = reinterpret_cast<void*>( resStream.GetLocationAddress() ); in DeleteBuffer() local 94 __dmpgl_deallocator( area, NN_GX_MEM_VERTEXBUFFER, bufferID, address ); in DeleteBuffer()
|
| D | gfx_ResShape.cpp | 72 void* address = NULL; in BufferData() local 85 address = __dmpgl_allocator(area, NN_GX_MEM_VERTEXBUFFER, bufferID, size); in BufferData() 87 internal::nwgfxAddVramDmaCommand( resStream.GetStream(), address, size ); in BufferData() 89 resStream.SetLocationAddress( address ); in BufferData() 96 address = __dmpgl_allocator(NN_GX_MEM_FCRAM, NN_GX_MEM_VERTEXBUFFER, bufferID, size); in BufferData() 97 nw::os::MemCpy( address, resStream.GetStream(), size ); in BufferData() 98 nngxUpdateBuffer( address, size ); in BufferData() 100 resStream.SetLocationAddress( address ); in BufferData() 128 void* address = reinterpret_cast<void*>( resStream.GetLocationAddress() ); in DeleteBuffer() local 129 __dmpgl_deallocator( area, NN_GX_MEM_VERTEXBUFFER, bufferID, address ); in DeleteBuffer()
|
| D | gfx_ResTexture.cpp | 78 void* address = NULL; in TexImage2D() local 95 address = __dmpgl_allocator(area, NN_GX_MEM_TEXTURE, texID, size); in TexImage2D() 99 nngxAddVramDmaCommand( resImage.GetImageData(), address, size ); in TexImage2D() 102 resImage.SetLocationAddress( address ); in TexImage2D() 109 address = __dmpgl_allocator(NN_GX_MEM_FCRAM, NN_GX_MEM_TEXTURE, texID, size); in TexImage2D() 112 nw::os::MemCpy( address, resImage.GetImageData(), size ); in TexImage2D() 113 nngxUpdateBuffer( address, size ); in TexImage2D() 116 resImage.SetLocationAddress( address ); in TexImage2D() 144 void* address = reinterpret_cast<void*>( resImage.GetLocationAddress() ); in DeleteImage2D() local 145 __dmpgl_deallocator( area, NN_GX_MEM_TEXTURE, texID, address ); in DeleteImage2D()
|
| /NW4C-1.3.3/sources/libraries/ut/ |
| D | ut_CmdCache.cpp | 31 u16 address; member 493 const u32 address = internal::GetBits(command[1], 0, 16); in DumpCommon() local 497 u32 addressEnd = address + 1; in DumpCommon() 500 addressEnd = address + dataCount + 1; in DumpCommon() 507 if ( address <= s_PicaRegMnemonic[i].address && in DumpCommon() 508 s_PicaRegMnemonic[i].address < addressEnd ) in DumpCommon() 512 s_PicaRegMnemonic[i].address, in DumpCommon() 519 NN_LOG("// (0x%03x) ???\n", address); in DumpCommon()
|
| D | ut_HeapBase.cpp | 371 void HeapBase::FillFreeMemory( void* address, u32 size ) in FillFreeMemory() argument 376 MI_CpuFill32( address, GetFillValue( HEAP_FILL_FREE ), size ); in FillFreeMemory() 378 std::memset(address, GetFillValue( HEAP_FILL_FREE ), size); in FillFreeMemory() 393 void HeapBase::FillNoUseMemory( void* address, u32 size ) in FillNoUseMemory() argument 398 MI_CpuFill32( address, GetFillValue( HEAP_FILL_NOUSE ), size ); in FillNoUseMemory() 400 std::memset(address, GetFillValue( HEAP_FILL_NOUSE ), size); in FillNoUseMemory() 415 void HeapBase::FillAllocMemory( void* address, u32 size ) in FillAllocMemory() argument 420 MI_CpuFill32( address, 0, size ); in FillAllocMemory() 422 std::memset(address, 0, size); in FillAllocMemory() 430 MI_CpuFill32( address, GetFillValue( HEAP_FILL_ALLOC ), size ); in FillAllocMemory() [all …]
|
| /NW4C-1.3.3/sources/libraries/demo/ |
| D | demo_Memory.cpp | 61 uptr address = reinterpret_cast<uptr>(memory); in InitializeDemoAllocator() local 62 allocator->Initialize(address, size, option); in InitializeDemoAllocator() 89 uptr address = nn::os::GetDeviceMemoryAddress(); in InitializeDemoMemory() local 93 (uint)address, in InitializeDemoMemory() 94 ((uint)address + DEMO_MAIN_MEMORY_SIZE)); in InitializeDemoMemory() 96 s_MainMemoryHeap.Initialize(address, DEMO_MAIN_MEMORY_SIZE, nn::os::ALLOCATE_OPTION_LINEAR); in InitializeDemoMemory() 173 DemoAllocator::GetMemoryBlockSize(void* address) in GetMemoryBlockSize() argument 175 return m_Heap.GetSizeOf(address); in GetMemoryBlockSize()
|
| /NW4C-1.3.3/sources/libraries/gfx/ |
| D | gfx_OffScreenBuffer.cpp | 63 u32 address = ResStaticCast<ResImageTexture>(resTexture).GetImage().GetImageAddress(); in OffScreenBuffer() local 64 m_BackBufferObject.SetColorAddress( address ); in OffScreenBuffer() 70 … u32 address = ResStaticCast<ResCubeTexture>(resTexture).GetImage( face ).GetImageAddress(); in OffScreenBuffer() local 72 m_BackBufferObject.SetColorAddress( address ); in OffScreenBuffer() 77 u32 address = ResStaticCast<ResShadowTexture>(resTexture).GetImage().GetImageAddress(); in OffScreenBuffer() local 78 m_BackBufferObject.SetColorAddress( address ); in OffScreenBuffer()
|
| /NW4C-1.3.3/include/nw/demo/ |
| D | demo_Memory.h | 219 size_t GetMemoryBlockSize(void* address); 236 void SetBreakAlloc(int address, size_t size) in SetBreakAlloc() argument 239 m_BreakAllocAddress = reinterpret_cast<void *>(address); in SetBreakAlloc() 242 NW_UNUSED_VARIABLE(address); in SetBreakAlloc() 258 void SetBreakFree(int address, size_t size) in SetBreakFree() argument 261 m_BreakFreeAddress = reinterpret_cast<void *>(address); in SetBreakFree() 264 NW_UNUSED_VARIABLE(address); in SetBreakFree()
|
| /NW4C-1.3.3/include/nw/gfx/res/ |
| D | gfx_ResTexture.h | 323 void SetLocationAddress(u32 address) { ref().m_LocationAddress = address; } in SetLocationAddress() argument 324 …void SetLocationAddress(const void* address) { ref().m_LocationAddress = reinterpret_cast<u32>(add… in SetLocationAddress() argument 398 void SetLocationAddress(u32 address) { this->GetImage().SetLocationAddress( address ); } in SetLocationAddress() argument 399 void SetLocationAddress(const void* address) { this->GetImage().SetLocationAddress( address ); } in SetLocationAddress() argument 657 …void SetLocationAddress( CubeFace face, u32 address) { this->GetImage( face ).SetLocationAddress( … in SetLocationAddress() argument 658 …etLocationAddress( CubeFace face, const void* address) { this->GetImage( face ).SetLocationAddress… in SetLocationAddress() argument 700 void SetLocationAddress(u32 address) { this->GetImage().SetLocationAddress( address ); } in SetLocationAddress() argument 701 void SetLocationAddress(const void* address) { this->GetImage().SetLocationAddress( address ); } in SetLocationAddress() argument
|
| D | gfx_ResVertex.h | 301 void SetLocationAddress(u32 address) { ref().m_LocationAddress = address; } in SetLocationAddress() argument 302 …void SetLocationAddress(const void* address) { ref().m_LocationAddress = reinterpret_cast<u32>(add… in SetLocationAddress() argument 532 void SetLocationAddress(u32 address) { ref().m_LocationAddress = address; } in SetLocationAddress() argument 533 …void SetLocationAddress(const void* address) { ref().m_LocationAddress = reinterpret_cast<u32>(add… in SetLocationAddress() argument
|
| /NW4C-1.3.3/include/nw/snd/ |
| D | snd_SoundDataManager.h | 173 const void* SetFileAddress( SoundArchive::FileId fileId, const void* address ); 180 u32 detail_GetFileIdFromTable( const void* address ) const; 193 SoundArchive::FileId fileId, const void* address ); 204 const void* address; member
|
| D | snd_PlayerHeapDataManager.h | 37 const void* SetFileAddress( SoundArchive::FileId fileId, const void* address ); 45 SoundArchive::FileId, const void* address ); 53 const void* address; member
|
| D | snd_SoundArchiveLoader.h | 33 const void* address; member 37 address( NULL ) in LoadItemInfo() 224 SoundArchive::FileId fileId, const void* address ) = 0;
|
| D | snd_GroupFileReader.h | 28 const void* address; // 非 NULL: 埋め込みアイテム。ロードされたアドレスを格納。 member
|
| /NW4C-1.3.3/include/nw/ut/ |
| D | ut_HeapBase.h | 124 void FillFreeMemory( void* address, u32 size ); 125 void FillNoUseMemory( void* address, u32 size ); 126 void FillAllocMemory( void* address, u32 size );
|
| D | ut_BinaryReader.h | 39 void SetCurrentAddress( void* address ) { m_CurrentAddress = address; } in SetCurrentAddress() argument
|
| /NW4C-1.3.3/sources/libraries/dev/ |
| D | dev_Screenshot.cpp | 170 GLint address; in Take() local 171 nngxGetDisplaybufferParameteri(NN_GX_DISPLAYBUFFER_ADDRESS, &address); in Take() 172 void* srcArea = reinterpret_cast<void*>(address); in Take()
|
| D | dev_DirectPrint.cpp | 891 GLint address = 0; in SetTargetActiveDisplayBuffer() local 892 nngxGetDisplaybufferParameteri(NN_GX_DISPLAYBUFFER_ADDRESS, &address); in SetTargetActiveDisplayBuffer() 893 NW_ASSERT(address != 0); in SetTargetActiveDisplayBuffer() 895 nngxGetDisplaybufferParameteri(NN_GX_DISPLAYBUFFER_FORMAT, &address); in SetTargetActiveDisplayBuffer() 897 nngxGetDisplaybufferParameteri(NN_GX_DISPLAYBUFFER_WIDTH, &address); in SetTargetActiveDisplayBuffer() 899 nngxGetDisplaybufferParameteri(NN_GX_DISPLAYBUFFER_HEIGHT, &address); in SetTargetActiveDisplayBuffer() 901 reinterpret_cast<void*>(address), in SetTargetActiveDisplayBuffer()
|
| /NW4C-1.3.3/include/nw/dev/ |
| D | dev_DirectPrint.h | 51 u8* address, in FrameBufferInfo() 55 : m_Address(address), in FrameBufferInfo()
|