Lines Matching refs:bytesToAllocate
1937 const int bytesToAllocate = (int)((unsigned)len * 2U); in XML_Parse() local
1938 if (bytesToAllocate > 0) { in XML_Parse()
1939 temp = (char *)REALLOC(parser, parser->m_buffer, bytesToAllocate); in XML_Parse()
1948 parser->m_bufferLim = parser->m_buffer + bytesToAllocate; in XML_Parse()
7287 const int bytesToAllocate in poolBytesToAllocateFor() local
7289 if (bytesToAllocate < 0) in poolBytesToAllocateFor()
7292 return (size_t)bytesToAllocate; in poolBytesToAllocateFor()
7324 size_t bytesToAllocate; in poolGrow() local
7340 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7341 if (bytesToAllocate == 0) in poolGrow()
7345 (unsigned)bytesToAllocate); in poolGrow()
7356 size_t bytesToAllocate; in poolGrow() local
7381 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7382 if (bytesToAllocate == 0) in poolGrow()
7385 tem = pool->mem->malloc_fcn(bytesToAllocate); in poolGrow()