Lines Matching refs:bytesToAllocate
1825 const int bytesToAllocate = (int)((unsigned)len * 2U); in XML_Parse() local
1826 if (bytesToAllocate > 0) { in XML_Parse()
1827 temp = (char *)REALLOC(parser, parser->m_buffer, bytesToAllocate); in XML_Parse()
1836 parser->m_bufferLim = parser->m_buffer + bytesToAllocate; in XML_Parse()
6639 const int bytesToAllocate in poolBytesToAllocateFor() local
6641 if (bytesToAllocate < 0) in poolBytesToAllocateFor()
6644 return (size_t)bytesToAllocate; in poolBytesToAllocateFor()
6676 size_t bytesToAllocate; in poolGrow() local
6692 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
6693 if (bytesToAllocate == 0) in poolGrow()
6697 (unsigned)bytesToAllocate); in poolGrow()
6708 size_t bytesToAllocate; in poolGrow() local
6733 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
6734 if (bytesToAllocate == 0) in poolGrow()
6737 tem = (BLOCK *)pool->mem->malloc_fcn(bytesToAllocate); in poolGrow()