Home
last modified time | relevance | path

Searched refs:size_t (Results 1 – 25 of 165) sorted by relevance

1234567

/NW4C-2.0.3/include/nw/demo/
Ddemo_HioPacketChannel.h40 static const size_t BUFFER_SIZE;
165 size_t SendPacket(
167 size_t headerLength,
169 size_t dataLength
192 size_t* headerWrittenSize,
193 size_t* dataWrittenSize,
195 size_t headerLength,
197 size_t dataLength,
244 static const size_t BUFFER_SIZE;
264 size_t SendPacket(const void* ,size_t ,const void* ,size_t ) { return 0; } in SendPacket() argument
[all …]
Ddemo_Memory.h34 const size_t DEMO_MEMORY_SIZE = 0x1000000;
37 const size_t DEMO_PARTICLE_MEMORY_SIZE = 0x100000;
49 void InitializeDemoAllocator(DemoAllocator* allocator, size_t size, bit32 option = 0 );
81 void* Alloc(size_t size, u8 alignment = 4);
126 void Initialize(uptr startAddress, size_t size, bit32 option = 0);
150 virtual void* Alloc(size_t size, u8 alignment) in Alloc()
208 size_t GetFreeSize();
215 size_t GetTotalSize();
224 size_t GetMemoryBlockSize(void* address);
241 void SetBreakAlloc(int address, size_t size) in SetBreakAlloc()
[all …]
Ddemo_CommandListSwapper.h49 size_t commandListCount; //!< 生成するコマンドリストの数です。
50 size_t bufferSize; //!< 1つのコマンドリストのバッファサイズです。
51 size_t requestCount; //!< 1つのコマンドリクエストの上限数です。
52 size_t reusableBufferSize; //!< 1つの再利用コマンドリストのコマンドバッファのサイズを表します。
53 size_t reusableRequestCount; //!< 1つの再利用コマンドリストのコマンドリクエストの上限数です。
54 size_t maxGpuProfilingEntryCount; //!< GPU プロファイルエントリの上限数です。
196 size_t GetListCount() const { return this->m_CommandLists.size(); } in GetListCount()
/NW4C-2.0.3/include/nw/snd/
Dsnd_SoundArchiveLoader.h138 size_t loadBlockSize = 0
171 size_t loadBlockSize = 0
257 size_t loadBlockSize );
262 size_t loadBlockSize,
268 size_t loadBlockSize );
273 size_t loadBlockSize );
277 size_t loadBlockSize );
282 size_t loadBlockSize );
286 size_t loadBlockSize );
291 size_t loadBlockSize );
[all …]
Dsnd_StreamBufferPool.h29 void Initialize( void* pBuffer, size_t size, int blockCount );
35 size_t GetBlockSize() const { return m_BlockSize; } in GetBlockSize()
42 size_t m_BufferSize; //< バッファの全体サイズ
43 size_t m_BlockSize; //< 1 ブロックあたりのバイト数
Dsnd_SoundHeap.h117 size_t size
144 virtual void* Alloc( size_t size );
169 size_t size,
265 size_t GetSize() const in GetSize()
278 size_t GetFreeSize() const in GetFreeSize()
Dsnd_HioSoundArchive.h124 size_t GetHeaderSize() const { return m_ArchiveReader.GetInfoBlockSize(); } in GetHeaderSize()
144 bool LoadHeader( void* buffer, size_t size );
159 size_t GetLabelStringDataSize() const { return m_ArchiveReader.GetStringBlockSize(); } in GetLabelStringDataSize()
184 bool LoadLabelStringData( void* buffer, size_t size );
188 virtual size_t detail_GetRequiredStreamBufferSize() const;
Dsnd_SoundSystem.h130 size_t soundThreadStackSize;
138 size_t soundThreadCommandBufferSize;
149 size_t taskThreadStackSize;
157 size_t taskThreadCommandBufferSize;
266 size_t workMemSize
289 static size_t GetRequiredMemSize( const SoundSystemParam& param );
293 static size_t detail_GetRequiredDriverCommandManagerMemSize( const SoundSystemParam& param );
299 size_t workMemSize );
Dsnd_PlayerHeap.h52 bool Create( void* startAddress, size_t size );
56 virtual void* Alloc( size_t size );
65 size_t GetFreeSize() const;
Dsnd_Sound3DManager.h189 size_t GetRequiredMemSize( const SoundArchive* archive );
215 size_t size
457 virtual void* detail_AllocAmbientArg( size_t argSize );
473 size_t m_SoundParamPoolBufferSize;
Dsnd_FxDelay.h222 size_t GetRequiredMemSize();
245 bool AssignWorkBuffer( uptr buffer, size_t size );
277 size_t m_BufferSize; ///< バッファサイズ
/NW4C-2.0.3/include/nw/os/
Dos_Memory.h44 MemCpy(void* dstp, const void* srcp, size_t size) in MemCpy()
76 virtual void* Alloc(size_t size, u8 alignment) = 0;
92 void* Alloc(size_t size) { return this->Alloc( size, DEFAULT_ALIGNMENT ); } in Alloc()
95 void* AllocAndClear(size_t size, u8 data, u8 alignment = DEFAULT_ALIGNMENT)
223 const size_t memorySize = sizeof(TObject); in AllocateAndFill()
245 AllocateAndFillN(os::IAllocator* allocator, size_t size, u8 value) in AllocateAndFillN()
294 AllocateAndCopyString(const TChar* str, os::IAllocator* allocator, size_t maxSize) in AllocateAndCopyString()
298 size_t length = std::char_traits<TChar>::length(str); in AllocateAndCopyString()
301 size_t bufferSize = length + 1; in AllocateAndCopyString()
406 static const size_t MAX_ALIGNMENT = IAllocator::CACHE_LINE_ALIGNMENT;
[all …]
/NW4C-2.0.3/include/nw/ut/
Dut_Inlines.h68 NW_INLINE size_t
71 std::size_t destCount, in strncpy_t()
73 std::size_t srcCount) in strncpy_t()
75 size_t length = 0; in strncpy_t()
108 NW_INLINE size_t
111 std::size_t destCount, in strcpy()
130 NW_INLINE size_t
133 std::size_t destCount, in wcsncpy()
153 NW_INLINE size_t
156 std::size_t destCount, in strncpy()
[all …]
/NW4C-2.0.3/sources/libraries/demo/
Ddemo_Memory.cpp51 size_t offset = nw::ut::GetOffsetFromPtr( memory, top ); in AlignMemory_()
60 InitializeDemoAllocator( DemoAllocator* allocator, size_t size, bit32 option /* = 0 */ ) in InitializeDemoAllocator()
87 const size_t DEMO_MAIN_MEMORY_SIZE = 0x2000000; // 32MB in InitializeDemoMemory()
114 Alloc(size_t size, u8 alignment) in Alloc()
146 DemoAllocator::Initialize(uptr startAddress, size_t size, bit32 option) in Initialize()
160 size_t
167 size_t
174 size_t
189 FrameHeapAllocator::Initialize(uptr startAddress, size_t size, bit32 option) in Initialize()
Ddemo_HioPacketChannel.cpp27 const size_t HioPacketChannel::BUFFER_SIZE = 1024;
113 size_t
116 size_t headerLength, in SendPacket()
118 size_t dataLength in SendPacket()
122 size_t writtenSize; in SendPacket()
123 size_t totalSize = 0; in SendPacket()
187 size_t* headerWrittenSize, in ReceivePacket()
188 size_t* dataWrittenSize, in ReceivePacket()
190 size_t headerLength, in ReceivePacket()
192 size_t dataLength, in ReceivePacket()
/NW4C-2.0.3/include/nw/gfx/
Dgfx_SceneBuilder.h150 size_t GetMemorySize(
151 size_t alignment = os::IAllocator::DEFAULT_ALIGNMENT
169 size_t GetDeviceMemorySize(
170 size_t alignment = os::IAllocator::DEFAULT_ALIGNMENT
188 size_t GetMemorySizeTree(
189 size_t alignment = os::IAllocator::DEFAULT_ALIGNMENT
207 size_t GetDeviceMemorySizeTree(
208 size_t alignment = os::IAllocator::DEFAULT_ALIGNMENT
Dgfx_FragmentLight.h139 size_t GetMemorySize(size_t alignment = os::IAllocator::DEFAULT_ALIGNMENT) const;
165 static size_t GetMemorySize(
168 size_t alignment = os::IAllocator::DEFAULT_ALIGNMENT
206 static size_t GetMemorySizeForCreateClone(
209 size_t alignment = os::IAllocator::DEFAULT_ALIGNMENT
/NW4C-2.0.3/sources/libraries/snd/
Dsnd_Sound3DManager.cpp69 size_t Sound3DManager::GetRequiredMemSize( const SoundArchive* arc ) in GetRequiredMemSize()
83 return static_cast<size_t>( numSounds ) * sizeof( Sound3DParam ); in GetRequiredMemSize()
100 size_t size in Initialize()
111 size_t memSize = GetRequiredMemSize( arc ); in Initialize()
133 size_t memSize = GetRequiredMemSize( arc ); in InitializeWithMoreSoundArchive()
255 void* Sound3DManager::detail_AllocAmbientArg( size_t argSize ) in detail_AllocAmbientArg()
Dsnd_FxReverb.cpp226 bool FxReverb::AssignWorkBuffer( uptr buffer, size_t size ) in AssignWorkBuffer()
245 size_t FxReverb::GetRequiredMemSize() in GetRequiredMemSize()
247 const size_t bufSizeForEarlyReflection = sizeof(s32) in GetRequiredMemSize()
249 const size_t bufSizeForPreDelay = sizeof(s32) in GetRequiredMemSize()
251 const size_t bufSizeForFilterComp0 = sizeof(s32) * m_FilterSize.m_Comb0; in GetRequiredMemSize()
252 const size_t bufSizeForFilterComp1 = sizeof(s32) * m_FilterSize.m_Comb1; in GetRequiredMemSize()
253 const size_t bufSizeForFilterAllPass = sizeof(s32) * m_FilterSize.m_AllPass; in GetRequiredMemSize()
255 size_t result = ( in GetRequiredMemSize()
271 const size_t bufSizeForEarlyReflection = sizeof(s32) in AllocBuffer()
273 const size_t bufSizeForPreDelay = sizeof(s32) in AllocBuffer()
[all …]
Dsnd_PlayerHeap.cpp70 bool PlayerHeap::Create( void* startAddress, size_t size ) in Create()
110 void* PlayerHeap::Alloc( size_t size ) in Alloc()
157 size_t PlayerHeap::GetFreeSize() const in GetFreeSize()
159 size_t offset = ut::GetOffsetFromPtr( m_pAllocAddress, m_pEndAddress ); in GetFreeSize()
/NW4C-2.0.3/demos/snd/simple/sources/
DSimpleApp.cpp54 size_t workMemSize = nw::snd::SoundSystem::GetRequiredMemSize( param ); in InitializeSoundSystem()
71 size_t infoBlockSize = m_Archive.GetHeaderSize(); in InitializeSoundSystem()
81 size_t setupSize = m_DataManager.GetRequiredMemSize( &m_Archive ); in InitializeSoundSystem()
88 size_t setupSize = m_ArchivePlayer.GetRequiredMemSize( &m_Archive ); in InitializeSoundSystem()
90 size_t setupStrmBufferSize = in InitializeSoundSystem()
/NW4C-2.0.3/demos/snd/originalSoundHeap/sources/
DOriginalSoundHeapApp.h31 virtual void* Alloc( size_t size );
35 bool Create( void* startAddress, size_t size );
47 size_t m_BufferSize;
/NW4C-2.0.3/include/nw/font/
Dfont_TextWriterBase.h432 std::size_t size in SetBuffer()
455 std::size_t size in SetBuffer()
481 static std::size_t GetBufferSize() in GetBufferSize()
492 std::size_t count, in VSNPrintf()
506 std::size_t count, in VSNPrintf()
638 static std::size_t s_FormatBufferSize; //!< sprintfバッファのサイズ
/NW4C-2.0.3/demos/snd/effect/sources/
Dmain.cpp125 size_t workMemSize = nw::snd::SoundSystem::GetRequiredMemSize( param ); in InitializeSoundSystem()
142 size_t infoBlockSize = m_Archive.GetHeaderSize(); in InitializeSoundSystem()
152 size_t setupSize = m_DataManager.GetRequiredMemSize( &m_Archive ); in InitializeSoundSystem()
159 size_t setupSize = m_ArchivePlayer.GetRequiredMemSize( &m_Archive ); in InitializeSoundSystem()
161 size_t setupStrmBufferSize = in InitializeSoundSystem()
328 size_t reverbBufferSize = m_NwFxReverb.GetRequiredMemSize(); in InitializeEffect()
348 size_t delayBufferSize = m_NwFxDelay.GetRequiredMemSize(); in InitializeEffect()
373 size_t reverbBufferSize = m_NnFxReverb.GetRequiredMemSize(); in InitializeEffect()
393 size_t delayBufferSize = m_NnFxDelay.GetRequiredMemSize(); in InitializeEffect()
/NW4C-2.0.3/include/nw/dev/
Ddev_Screenshot.h119 size_t maxLength);
152 size_t maxLength, in Screenshot()
169 size_t m_Length;
170 size_t m_MaxLength;
283 …static Screenshot* Create(DisplayDescription, nw::os::IAllocator*, void*, void*, size_t) { return …

1234567