Lines Matching refs:bytesToAllocate
1827 const int bytesToAllocate = (int)((unsigned)len * 2U); in XML_Parse() local
1828 if (bytesToAllocate > 0) { in XML_Parse()
1829 temp = (char *)REALLOC(parser, parser->m_buffer, bytesToAllocate); in XML_Parse()
1838 parser->m_bufferLim = parser->m_buffer + bytesToAllocate; in XML_Parse()
6641 const int bytesToAllocate in poolBytesToAllocateFor() local
6643 if (bytesToAllocate < 0) in poolBytesToAllocateFor()
6646 return (size_t)bytesToAllocate; in poolBytesToAllocateFor()
6678 size_t bytesToAllocate; in poolGrow() local
6694 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
6695 if (bytesToAllocate == 0) in poolGrow()
6699 (unsigned)bytesToAllocate); in poolGrow()
6710 size_t bytesToAllocate; in poolGrow() local
6735 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
6736 if (bytesToAllocate == 0) in poolGrow()
6739 tem = (BLOCK *)pool->mem->malloc_fcn(bytesToAllocate); in poolGrow()