Home
last modified time | relevance | path

Searched refs:size (Results 1 – 25 of 277) sorted by relevance

12345678910>>...12

/NW4C-1.3.3/sources/libraries/demo/
Ddemo_HioPacketChannel.cpp122 u32 size; in SendPacket() local
134 size = headerLength; in SendPacket()
135 result = m_Serial.Write(&writtenSize, &size, sizeof(size)); in SendPacket()
137 if ( result.IsFailure() || writtenSize != sizeof(size) ) in SendPacket()
156 size = dataLength; in SendPacket()
157 result = m_Serial.Write(&writtenSize, &size, sizeof(size)); in SendPacket()
159 if ( result.IsFailure() || writtenSize != sizeof(size) ) in SendPacket()
204 int size; in ReceivePacket() local
211 size = sizeof(s32); in ReceivePacket()
214 readSize = m_Serial.Read(intBuffer + totalReadSize, size, attr); in ReceivePacket()
[all …]
/NW4C-1.3.3/sources/libraries/gfx/
Dgfx_ShaderBinaryInfo.cpp81 s32 size = 0; in GetCommonCommandSize() local
84 size += sizeof(u32) * 2; in GetCommonCommandSize()
86 size += GetSwizzleCommandSize(); in GetCommonCommandSize()
87 size += GetProgramCommandSize(); in GetCommonCommandSize()
89 return size; in GetCommonCommandSize()
97 s32 size = 0; in GetShaderProgramCommandSize() local
99 size += 2 * sizeof(u32); // PutEnableMirroringShaderSetting の分 in GetShaderProgramCommandSize()
101 size += this->GetConstRegCommandSize( vertexIndex ); in GetShaderProgramCommandSize()
105 size += this->GetConstRegCommandSize( geometryIndex ); in GetShaderProgramCommandSize()
108 size += this->GetOutAttrCommandSize( vertexIndex, geometryIndex ); in GetShaderProgramCommandSize()
[all …]
Dgfx_FragmentLight.cpp66 os::MemorySizeCalculator size(alignment); in GetMemorySize() local
69 size += sizeof(ResFragmentLightData); in GetMemorySize()
70 size += sizeof(ResReferenceLookupTable); in GetMemorySize()
71 size += sizeof(ResLightingLookupTable); in GetMemorySize()
72 size += sizeof(ResReferenceLookupTable); in GetMemorySize()
74 size += sizeof(FragmentLight); in GetMemorySize()
78 &size, in GetMemorySize()
83 size += sizeof(ResFragmentLightData); in GetMemorySize()
88 return size.GetSizeWithPadding(alignment); in GetMemorySize()
287 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeInternal() local
[all …]
/NW4C-1.3.3/include/nw/demo/
Ddemo_Memory.h47 void InitializeDemoAllocator(DemoAllocator* allocator, size_t size, bit32 option = 0 );
79 void* Alloc(size_t size, u8 alignment = 4);
121 void Initialize(uptr startAddress, size_t size, bit32 option = 0);
145 virtual void* Alloc(size_t size, u8 alignment) in Alloc() argument
147 NW_ASSERT(size != 0); in Alloc()
149 void* memory = m_Heap.Allocate(size, alignment); in Alloc()
236 void SetBreakAlloc(int address, size_t size) in SetBreakAlloc() argument
240 m_BreakAllocSize = size; in SetBreakAlloc()
243 NW_UNUSED_VARIABLE(size); in SetBreakAlloc()
258 void SetBreakFree(int address, size_t size) in SetBreakFree() argument
[all …]
/NW4C-1.3.3/include/nw/snd/
Dsnd_InstancePool.h35 u32 CreateImpl( void* buffer, size_t size, u32 objSize );
36 void DestroyImpl( void* buffer, unsigned long size );
64 u32 Create( void* buffer, size_t size ) in Create() argument
71 return CreateImpl( buffer, size, objSize ); in Create()
86 void Destroy( void* buffer, unsigned long size ) { DestroyImpl( buffer, size ); } in Destroy() argument
141 u32 Create( void* buffer, unsigned long size ) in Create() argument
148 return CreateImpl( buffer, size, objSize ); in Create()
163 void Destroy( void* buffer, unsigned long size ) { DestroyImpl( buffer, size ); } in Destroy() argument
/NW4C-1.3.3/include/nw/gfx/
Dgfx_StandardSkeleton.h71 os::MemorySizeCalculator size(alignment);
73 GetMemorySizeInternal(&size, resource, maxCallbacks);
75 return size.GetSizeWithPadding(alignment);
85 os::MemorySizeCalculator& size = *pSize; in GetMemorySizeInternal() local
87 size += sizeof(StandardSkeleton); in GetMemorySizeInternal()
89size.Add(sizeof(Skeleton::TransformPose::Transform) * resource.GetBonesCount(), Skeleton::Transfor… in GetMemorySizeInternal()
90size.Add(sizeof(math::MTX34) * resource.GetBonesCount(), Skeleton::TransformPose::TransformArray::… in GetMemorySizeInternal()
91size.Add(sizeof(math::MTX34) * resource.GetBonesCount(), Skeleton::TransformPose::TransformArray::… in GetMemorySizeInternal()
93 size += sizeof(Skeleton::TransformPose::Transform) * resource.GetBonesCount(); in GetMemorySizeInternal()
94 size += sizeof(math::MTX34) * resource.GetBonesCount(); in GetMemorySizeInternal()
[all …]
Dgfx_SceneBuilder.h151 os::MemorySizeCalculator size(alignment);
153 BuildSceneObject(&size, NULL, NULL, m_Resource, NULL, NULL, false, true);
155 return size.GetSizeWithPadding(alignment);
170 os::MemorySizeCalculator size(alignment);
172 BuildSceneObject(NULL, &size, NULL, m_Resource, NULL, NULL, false, true);
174 return size.GetSizeWithPadding(alignment);
189 os::MemorySizeCalculator size(alignment);
191 BuildSceneObject(&size, NULL, NULL, m_Resource, NULL, NULL, true, true);
193 return size.GetSizeWithPadding(alignment);
208 os::MemorySizeCalculator size(alignment);
[all …]
Dgfx_MemoryUtil.h29 #define DECL_SUB(size) \ argument
30 asm u32* FastWordCopyAsm_##size(u32* /*dst*/, u32* /*src*/);
56 FastWordCopy(u32* dst, u32* src, u32 size) in FastWordCopy() argument
58 size /= 4; in FastWordCopy()
59 NW_ASSERT(size % 2 == 0); in FastWordCopy()
62 if (size == count) \ in FastWordCopy()
88 NW_LOG("Unsupported size : %d\n", size); in FastWordCopy()
Dgfx_CommandUtil.h61 static void* Allocate(s32 size) in Allocate() argument
64 return s_Allocator->Alloc(size, 4); in Allocate()
309 NWUseCmdlist(const T* buffer, int size) in NWUseCmdlist() argument
312 nngxAdd3DCommand( const_cast<GLvoid*>(buffer), GLsizei(size), GL_TRUE ); in NWUseCmdlist()
314 NW_ASSERT(size > 0); in NWUseCmdlist()
315 NW_ALIGN_ASSERT(size, 4); in NWUseCmdlist()
318 nw::os::MemCpy(__cb_current_command_buffer, buffer, size); in NWUseCmdlist()
319 __cb_current_command_buffer += size >> 2; in NWUseCmdlist()
323 template <int size>
327 NW_ASSERT(size > 0); in NWUseCmdlist()
[all …]
/NW4C-1.3.3/documents/Viewer/html/css/
Dtitle.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
72 font-size : 8pt;
86 font-size : 8pt;
96 font-size : 9pt;
118 font-size : 12pt;
129 font-size : 12pt;
[all …]
/NW4C-1.3.3/documents/DccPlugin/Photoshop/html/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
72 font-size : 8pt;
86 font-size : 8pt;
96 font-size : 9pt;
118 font-size : 12pt;
129 font-size : 12pt;
[all …]
/NW4C-1.3.3/documents/DccPlugin/3dsMax/html/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
72 font-size : 8pt;
86 font-size : 8pt;
96 font-size : 9pt;
118 font-size : 12pt;
129 font-size : 12pt;
[all …]
Dmanpage.css9 font-size : 10pt;
27 font-size : 36px;
41 font-size : 20px;
55 font-size : 12px;
64 font-size : 12px;
81 font-size : 11pt;
97 font-size : 10pt;
147 font-size : 10pt;
198 font-size : 11pt;
210 font-size : 11pt;
[all …]
/NW4C-1.3.3/documents/IntermediateFileFormat/html/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
72 font-size : 8pt;
86 font-size : 8pt;
96 font-size : 9pt;
118 font-size : 12pt;
129 font-size : 12pt;
[all …]
/NW4C-1.3.3/documents/DccPlugin/Softimage/html/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
72 font-size : 8pt;
86 font-size : 8pt;
96 font-size : 9pt;
118 font-size : 12pt;
129 font-size : 12pt;
[all …]
/NW4C-1.3.3/documents/DccPlugin/Maya/html/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
72 font-size : 8pt;
86 font-size : 8pt;
96 font-size : 9pt;
118 font-size : 12pt;
129 font-size : 12pt;
[all …]
/NW4C-1.3.3/documents/SoundMaker/html/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
71 font-size : 8pt;
83 font-size : 8pt;
93 font-size : 9pt;
115 font-size : 12pt;
126 font-size : 12pt;
[all …]
/NW4C-1.3.3/documents/LayoutEditor/html/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
71 font-size : 8pt;
83 font-size : 8pt;
93 font-size : 9pt;
115 font-size : 12pt;
126 font-size : 12pt;
[all …]
/NW4C-1.3.3/sources/libraries/lyt/
Dlyt_ResourceAccessor.cpp39 u32 size = 0; in LoadTexture() local
40 void* pTexRes = this->GetResource(res::RESOURCETYPE_TEXTURE, name, &size); in LoadTexture()
41 if (!pTexRes || size == 0) in LoadTexture()
47 TextureInfo texInfo = lyt::LoadTexture(pTexRes, size); in LoadTexture()
60 u32 size = 0; in LoadFont() local
61 void* pFontRes = this->GetResource(res::RESOURCETYPE_FONT, name, &size); in LoadFont()
62 if (!pFontRes || size == 0) in LoadFont()
/NW4C-1.3.3/sources/libraries/snd/
Dsnd_SoundHeap.cpp69 size_t size in Create() argument
74 return m_FrameHeap.Create( startAddress, size ); in Create()
106 void* SoundHeap::Alloc( size_t size ) in Alloc() argument
111 size, in Alloc()
132 size_t size, in Alloc() argument
140 size, in Alloc()
191 void SoundHeap::DisposeCallbackFunc( void* mem, unsigned long size, void* arg ) in DisposeCallbackFunc() argument
201 command->size = size; in DisposeCallbackFunc()
/NW4C-1.3.3/include/nw/os/
Dos_Memory.h42 MemCpy(void* dstp, const void* srcp, size_t size) in MemCpy() argument
46 nnnstdMemCpy(dstp, srcp, size); in MemCpy()
48 std::memcpy(dstp, srcp, size); in MemCpy()
74 virtual void* Alloc(size_t size, u8 alignment) = 0;
90 void* Alloc(size_t size) { return this->Alloc( size, DEFAULT_ALIGNMENT ); } in Alloc() argument
93 void* AllocAndClear(size_t size, u8 data, u8 alignment = DEFAULT_ALIGNMENT)
95 u8* memory = static_cast<u8*>(this->Alloc(size, alignment));
99 std::fill_n(NW_CHECKED_ARRAY_ITERATOR(memory, size), size, data);
243 AllocateAndFillN(os::IAllocator* allocator, size_t size, u8 value) in AllocateAndFillN() argument
246 NW_ASSERT(sizeof(TObject) <= size); in AllocateAndFillN()
[all …]
/NW4C-1.3.3/demos/Nw4cDemo/sources/
DSmParticle.cpp66 for ( int i=0; i<m_ParticleModelInstArray.size(); i++ ) in Reset()
72 for ( int i=0; i<m_ParticleEmitterInstArray.size(); i++ ) in Reset()
84 for ( int i=0; i<m_ParticleModelInstArray.size(); i++ ) in SetAnimationFrame()
101 for (int i=0; i<m_ParticleModelInstArray.size(); i++) in SetAnimationFrame()
118 if( m_ParticleModelInstArray.size() != m_ParticleEmitterInstArray.size() ) in SetVisibleZone()
123 s32 visibleNum = m_ParticleModelInstArray.size() * term; in SetVisibleZone()
125 for ( int i = 0; i < m_ParticleModelInstArray.size(); i++ ) in SetVisibleZone()
/NW4C-1.3.3/documents/API/css/
Dmain.css9 font-size : 10pt;
23 font-size : 20pt;
34 font-size : 12pt;
50 font-size : 10pt;
61 font-size : 8pt;
72 font-size : 8pt;
86 font-size : 8pt;
96 font-size : 9pt;
119 font-size : 24px;
133 font-size : 20px;
[all …]
/NW4C-1.3.3/sources/libraries/gfx/res/
Dgfx_ResVertex.cpp41 u32 size = resStream.GetStreamCount(); in BufferData() local
49 nngxUpdateBuffer( resStream.GetStream(), size ); in BufferData()
56 address = __dmpgl_allocator(area, NN_GX_MEM_VERTEXBUFFER, bufferID, size); in BufferData()
57 nngxUpdateBuffer( resStream.GetStream(), size ); in BufferData()
58 internal::nwgfxAddVramDmaCommand( resStream.GetStream(), address, size ); 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()
172 u32 size = this->GetStreamCount(); in Setup() local
220 u32 size = this->GetStreamCount(); in Setup() local
/NW4C-1.3.3/tools/DccPlugin/Maya/scripts/
DNW4C_SetUserData.mel16 user data size
70 int $size = nw4cSetUserData_Get_UserDataSize($node);
71 for ($index = 0; $index < $size; ++$index)
75 return $size; // return user data size
84 int $dataSize = size($dataValues);
93 if (size($name) >= 2)
95 if (substring($name, 1, size($name) - 1) == $checkName)
109 $words[2]: size
119 int $nameSize = size($name);
127 $userData = substring($userData, $nameSize + 1, size($userData));
[all …]

12345678910>>...12