Lines Matching refs:size

81 void write(FileStream & file, void const * buffer, sal_uInt64 size) {  in write()  argument
82 if (!file.write(buffer, size)) { in write()
111 std::vector< unsigned char >::size_type n = stream.size(); in writeStream()
175 Branch branch = m_code.size(); in instrIfAcmpne()
183 Branch branch = m_code.size(); in instrIfeq()
191 Branch branch = m_code.size(); in instrIfnull()
249 std::list< std::pair< sal_Int32, Code * > >::size_type size = blocks.size(); in instrLookupswitch() local
250 if (size > SAL_MAX_INT32) { in instrLookupswitch()
256 Position pos1 = m_code.size(); in instrLookupswitch()
262 Position pos2 = pos1 + 1 + pad + 8 + blocks.size() * 8; //FIXME: overflow in instrLookupswitch()
264 pos2 += defaultBlock->m_code.size(); //FIXME: overflow in instrLookupswitch()
265 appendU4(m_code, static_cast< sal_uInt32 >(size)); in instrLookupswitch()
273 pos2 += i->second->m_code.size(); //FIXME: overflow in instrLookupswitch()
341 Position pos1 = m_code.size(); in instrTableswitch()
347 std::list< Code * >::size_type size = blocks.size(); in instrTableswitch() local
348 Position pos2 = pos1 + 1 + pad + 12 + size * 4; //FIXME: overflow in instrTableswitch()
352 pos2 += defaultBlock->m_code.size(); //FIXME: overflow in instrTableswitch()
354 appendU4(m_code, static_cast< sal_uInt32 >(low + (size - 1))); in instrTableswitch()
363 pos2 += (*i)->m_code.size(); //FIXME: overflow in instrTableswitch()
422 std::vector< unsigned char >::size_type n = m_code.size(); in branchHere()
432 OSL_ASSERT(start < end && end <= m_code.size() && handler <= m_code.size()); in addException()
450 return m_code.size(); in getPosition()
636 std::vector< rtl::OString >::size_type excs = exceptions.size(); in addMethod()
649 std::vector< unsigned char >::size_type codeSize = code->m_code.size(); in addMethod()
651 = code->m_exceptionTable.size(); in addMethod()