It is a GUI app that, depending on settings, may want to fill up a large (200MB+) buffer with data generated at runtime. In pseudocode... Code: for (int i; i < 200MB; ++i) buffer[i] = fx(i); fx() can be quite a complex function and running it 200M times can take up to a few minutes.
for (int i; i < 200MB; ++i) buffer[i] = fx(i);