Lines Matching refs:size
81 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()
110 return size; in GetShaderProgramCommandSize()
121 s32 size = 0; in GetProgramCommandSize() local
123 size += 2 * sizeof(u32); in GetProgramCommandSize()
124 size += this->GetLoadCommandSize( vertexInstructionCount ); in GetProgramCommandSize()
125 size += 2 * sizeof(u32); in GetProgramCommandSize()
129 size += 2 * sizeof(u32); in GetProgramCommandSize()
130 size += this->GetLoadCommandSize( m_InstructionCount ); in GetProgramCommandSize()
131 size += 2 * sizeof(u32); in GetProgramCommandSize()
134 return size; in GetProgramCommandSize()
141 s32 size = 0; in GetSwizzleCommandSize() local
143 size += 2 * sizeof(u32); in GetSwizzleCommandSize()
144 size += this->GetLoadCommandSize( m_SwizzleCount ); in GetSwizzleCommandSize()
148 size += 2 * sizeof(u32); in GetSwizzleCommandSize()
149 size += this->GetLoadCommandSize( m_SwizzleCount ); in GetSwizzleCommandSize()
152 return size; in GetSwizzleCommandSize()
166 s32 size = 0; in GetConstRegCommandSize() local
199 size += INT_COMMAND_SIZE * sizeof(u32); in GetConstRegCommandSize()
203 size += FLOAT_COMMAND_SIZE * sizeof(u32); in GetConstRegCommandSize()
208 return size; in GetConstRegCommandSize()
221 s32 size = 0; in GetOutAttrCommandSize() local
226 size += geometrySettingCommandSize; in GetOutAttrCommandSize()
227 size += SHADER_PROGRAM_COMMAND_SIZE * sizeof(u32); in GetOutAttrCommandSize()
231 size += GEOMETRY_COMMAND_SIZE * sizeof(u32); in GetOutAttrCommandSize()
234 return size; in GetOutAttrCommandSize()