| base64.cc |
First pass: check for validity and get output length |
8315 |
| disabled.cc |
|
567 |
| env_variables.cc |
|
7266 |
| fast_random_number_generator.h |
Profiling shows that random number generation can be a significant cost of
span generation. This provides a faster random number generator than
std::mt19937_64; and since we don't care about the other beneficial random
number properties that std:mt19937_64 provides for this application, it's a
entirely appropriate replacement.
Note for Windows users - please make sure that NOMINMAX is defined, e.g.
...
#define NOMINMAX
#include <Windows.h>
...
See:
https://stackoverflow.com/questions/13416418/define-nominmax-using-stdmin-max
|
2190 |
| global_log_handler.cc |
attributes |
3292 |
| moz.build |
|
717 |
| platform |
|
|
| random.cc |
|
2074 |
| random.h |
Utility methods for creating random data, based on a seeded thread-local
number generator.
|
955 |