Lines Matching refs:bytesToAllocate
1946 const int bytesToAllocate = (int)((unsigned)len * 2U); in XML_Parse() local
1947 if (bytesToAllocate > 0) { in XML_Parse()
1948 temp = (char *)REALLOC(parser, parser->m_buffer, bytesToAllocate); in XML_Parse()
1957 parser->m_bufferLim = parser->m_buffer + bytesToAllocate; in XML_Parse()
7309 const int bytesToAllocate in poolBytesToAllocateFor() local
7311 if (bytesToAllocate < 0) in poolBytesToAllocateFor()
7314 return (size_t)bytesToAllocate; in poolBytesToAllocateFor()
7346 size_t bytesToAllocate; in poolGrow() local
7362 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7363 if (bytesToAllocate == 0) in poolGrow()
7367 (unsigned)bytesToAllocate); in poolGrow()
7378 size_t bytesToAllocate; in poolGrow() local
7403 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7404 if (bytesToAllocate == 0) in poolGrow()
7407 tem = pool->mem->malloc_fcn(bytesToAllocate); in poolGrow()