2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
|
}
/*
* ----------------------------------------------------------------------
*
* NOTES --
*
* Some measurements show that it is faster to use a table to to perform
* uuencode and base64 value encoding than to calculate the output (at
* least on intel P4 arch).
*
* Conversely using a lookup table for the decoding is slower than just
* calculating the values. We therefore use the fastest of each method.
*
* Presumably this has to do with the size of the tables. The base64
|
|
|
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
|
}
/*
* ----------------------------------------------------------------------
*
* NOTES --
*
* Some measurements show that it is faster to use a table to perform
* uuencode and base64 value encoding than to calculate the output (at
* least on intel P4 arch).
*
* Conversely using a lookup table for the decoding is slower than just
* calculating the values. We therefore use the fastest of each method.
*
* Presumably this has to do with the size of the tables. The base64
|