Lines Matching refs:size

242     sal_uInt32 size = sizeof(sal_uInt32) /* size */ + sizeof(sal_uInt16) /* tag */;  in getBlopSize()  local
247 size += sizeof(sal_uInt8); in getBlopSize()
250 size += sizeof(sal_uInt8); in getBlopSize()
253 size += sizeof(sal_Int16); in getBlopSize()
256 size += sizeof(sal_uInt16); in getBlopSize()
259 size += sizeof(sal_Int32); in getBlopSize()
262 size += sizeof(sal_uInt32); in getBlopSize()
265 size += sizeof(sal_Int64); in getBlopSize()
268 size += sizeof(sal_uInt64); in getBlopSize()
271 size += sizeof(sal_uInt32); in getBlopSize()
274 size += sizeof(sal_uInt32) + sizeof(sal_uInt32); in getBlopSize()
277 size += (rtl_ustr_getLength(m_value.aConst.aString) + 1) * sizeof(sal_uInt16); in getBlopSize()
280 size += strlen(m_value.aUtf8) + 1; in getBlopSize()
283size += sizeof(sal_uInt32) + sizeof(sal_uInt16) + sizeof(sal_uInt16) + sizeof(sal_uInt32) + sizeof… in getBlopSize()
289 return size; in getBlopSize()
568 void reallocParams(sal_uInt16 size);
569 void reallocExcs(sal_uInt16 size);
615 void MethodEntry::reallocParams(sal_uInt16 size) in reallocParams() argument
619 if (size) in reallocParams()
620 newParams = new ParamEntry[size]; in reallocParams()
628 for (i = 0; i < SAL_MIN(size, m_paramCount); i++) in reallocParams()
636 m_paramCount = size; in reallocParams()
640 void MethodEntry::reallocExcs(sal_uInt16 size) in reallocExcs() argument
644 if (size) in reallocExcs()
645 newExcNames = new OString[size]; in reallocExcs()
651 for (i = 0; i < SAL_MIN(size, m_excCount); i++) in reallocExcs()
658 m_excCount = size; in reallocExcs()
1357 void const * typereg_writer_getBlob(void * handle, sal_uInt32 * size) in typereg_writer_getBlob() argument
1368 *size = writer->m_blopSize; in typereg_writer_getBlob()
1374 sal_uInt32 size; in getBlop() local
1376 typereg_writer_getBlob(hEntry, &size)); in getBlop()
1381 sal_uInt32 size; in getBlopSize() local
1382 typereg_writer_getBlob(hEntry, &size); in getBlopSize()
1383 return size; in getBlopSize()