Home
last modified time | relevance | path

Searched defs:size (Results 1 – 25 of 142) sorted by relevance

123456

/NW4C-2.0.3/include/nw/snd/
Dsnd_InstancePool.h66 u32 Create( void* buffer, size_t size ) in Create()
88 void Destroy( void* buffer, unsigned long size ) { DestroyImpl( buffer, size ); } in Destroy()
143 u32 Create( void* buffer, unsigned long size ) in Create()
165 void Destroy( void* buffer, unsigned long size ) { DestroyImpl( buffer, size ); } in Destroy()
/NW4C-2.0.3/include/nw/demo/
Ddemo_Memory.h150 virtual void* Alloc(size_t size, u8 alignment) in Alloc()
241 void SetBreakAlloc(int address, size_t size) in SetBreakAlloc()
263 void SetBreakFree(int address, size_t size) in SetBreakFree()
353 virtual void* Alloc(size_t size, u8 alignment) in Alloc()
/NW4C-2.0.3/sources/libraries/snd/
Dsnd_SoundHeap.cpp71 size_t size in Create()
108 void* SoundHeap::Alloc( size_t size ) in Alloc()
134 size_t size, in Alloc()
193 void SoundHeap::DisposeCallbackFunc( void* mem, unsigned long size, void* arg ) in DisposeCallbackFunc()
Dsnd_MmlSequenceTrackAllocator.cpp71 unsigned long MmlSequenceTrackAllocator::Create( void* buffer, unsigned long size ) in Create()
76 void MmlSequenceTrackAllocator::Destroy( void* buffer, unsigned long size ) in Destroy()
Dsnd_MemorySoundArchive.cpp158 io::FileStream* MemorySoundArchive::OpenStream( void* buffer, int size, u32 begin, u32 length ) in OpenStream()
169 int size, in OpenExtStream()
191 MemorySoundArchive::MemoryFileStream::MemoryFileStream( const void* buffer, u32 size ) in MemoryFileStream()
Dsnd_HioSoundArchive.cpp96 int size, in OpenStream()
108 int size, in OpenExtStream()
145 bool HioSoundArchive::LoadHeader( void* buffer, size_t size ) in LoadHeader()
341 bool HioSoundArchive::LoadLabelStringData( void* buffer, size_t size ) in LoadLabelStringData()
378 HioSoundArchive::HioFileStream::HioFileStream( const char* path, u32 offset, u32 size ) in HioFileStream()
393 nn::hio::HostFile* openedFile, u32 offset, u32 size ) in HioFileStream()
Dsnd_MidiSequenceTrackAllocator.cpp110 unsigned long MidiSequenceTrackAllocator::Create( void* buffer, unsigned long size ) in Create()
125 void MidiSequenceTrackAllocator::Destroy( void* buffer, unsigned long size ) in Destroy()
Dsnd_RomSoundArchive.cpp156 RomSoundArchive::OpenStream( void* buffer, int size, u32 begin, u32 length ) in OpenStream()
174 int size, in OpenExtStream()
241 bool RomSoundArchive::LoadHeader( void* buffer, unsigned long size ) in LoadHeader()
464 bool RomSoundArchive::LoadLabelStringData( void* buffer, unsigned long size ) in LoadLabelStringData()
604 RomSoundArchive::RomFileStream::RomFileStream( const char* path, u32 offset, u32 size ) in RomFileStream()
621 const nn::fs::File* fileInfo, u32 offset, u32 size ) in RomFileStream()
636 nn::fs::FileReader* fileReader, u32 offset, u32 size ) in RomFileStream()
Dsnd_PlayerHeap.cpp70 bool PlayerHeap::Create( void* startAddress, size_t size ) in Create()
110 void* PlayerHeap::Alloc( size_t size ) in Alloc()
Dsnd_InstancePool.cpp39 u32 PoolImpl::CreateImpl( void* buffer, size_t size, u32 objSize ) in CreateImpl()
67 void PoolImpl::DestroyImpl( void* buffer, unsigned long size ) in DestroyImpl()
Dsnd_ThreadStack.cpp26 void ThreadStack::Initialize( uptr ptr, size_t size ) in Initialize()
/NW4C-2.0.3/include/nw/gfx/
Dgfx_MemoryUtil.h31 #define DECL_SUB(size) \ argument
58 FastWordCopy(u32* dst, u32* src, u32 size) in FastWordCopy()
Dgfx_AnimAdder.h75 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeInternal() local
179 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeForInitialize() local
Dgfx_MaterialActivator.h79 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeInternal() local
/NW4C-2.0.3/sources/libraries/demo/
Ddemo_Memory.cpp60 InitializeDemoAllocator( DemoAllocator* allocator, size_t size, bit32 option /* = 0 */ ) in InitializeDemoAllocator()
114 Alloc(size_t size, u8 alignment) in Alloc()
146 DemoAllocator::Initialize(uptr startAddress, size_t size, bit32 option) in Initialize()
189 FrameHeapAllocator::Initialize(uptr startAddress, size_t size, bit32 option) in Initialize()
Ddemo_SimpleApp.cpp161 SimpleApp::Allocate(size_t size, u8 alignment) in Allocate()
168 SimpleApp::AllocateDeviceMemory(size_t size, u8 alignment) in AllocateDeviceMemory()
/NW4C-2.0.3/sources/libraries/ut/
Dut_FrameHeap.cpp45 FrameHeap* FrameHeap::Create( void* startAddress, u32 size, u16 optFlag ) in Create()
109 void* FrameHeap::Alloc( u32 size, int alignment ) in Alloc()
156 void* FrameHeap::AllocFromHead( u32 size, int alignment ) in AllocFromHead()
189 void* FrameHeap::AllocFromTail( u32 size, int alignment ) in AllocFromTail()
/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_ResourceAccessor.cpp41 u32 size = 0; in LoadTexture() local
62 u32 size = 0; in LoadFont() local
/NW4C-2.0.3/sources/libraries/gfx/res/
Dgfx_ResVertex.cpp43 u32 size = resStream.GetStreamCount(); in BufferData() local
220 u32 size = this->GetStreamCount(); in Setup() local
268 u32 size = this->GetStreamCount(); in Setup() local
/NW4C-2.0.3/include/nw/os/
Dos_Memory.h44 MemCpy(void* dstp, const void* srcp, size_t size) in MemCpy()
92 void* Alloc(size_t size) { return this->Alloc( size, DEFAULT_ALIGNMENT ); } in Alloc()
245 AllocateAndFillN(os::IAllocator* allocator, size_t size, u8 value) in AllocateAndFillN()
431 void Add(size_t size, size_t immediateAlignment) in Add()
/NW4C-2.0.3/sources/libraries/gfx/
Dgfx_ParticleCollection.cpp47 const int size = (capacity + internal::PARTICLE_SIMD_WIDTH_MAX) * sizeof(T) + 8; in ParticleStreamCreateSize() local
65 const int size = (capacity + internal::PARTICLE_SIMD_WIDTH_MAX) * sizeof(T) + 8; in ParticleStreamCreate() local
90 const int size = sizeof(T); in ParticleParameterAttributeCreateSize() local
106 const int size = sizeof(T); in ParticleParameterAttributeCreate() local
127 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeInternal() local
300 os::MemorySizeCalculator& size = *pSize; in GetDeviceMemorySizeInternal() local
Dgfx_MemoryUtil.cpp95 #define DECL_SUB(size) \ argument
Dgfx_ParticleModel.cpp67 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeInternal() local
109 os::MemorySizeCalculator& size = *pSize; in GetDeviceMemorySizeInternal() local
252 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeForInitialize() local
Dgfx_ShaderBinaryInfo.cpp83 s32 size = 0; in GetCommonCommandSize() local
99 s32 size = 0; in GetShaderProgramCommandSize() local
123 s32 size = 0; in GetProgramCommandSize() local
143 s32 size = 0; in GetSwizzleCommandSize() local
168 s32 size = 0; in GetConstRegCommandSize() local
223 s32 size = 0; in GetOutAttrCommandSize() local
/NW4C-2.0.3/include/nw/lyt/
Dlyt_Bounding.h69 Bounding(const Size& size) in Bounding()

123456