We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7458c99 commit aad7a15Copy full SHA for aad7a15
Modules/binascii.c
@@ -103,11 +103,9 @@ static const unsigned char table_a2b_base64[] Py_ALIGNED(64) = {
103
#define BASE64_MAXBIN ((PY_SSIZE_T_MAX - 3) / 2)
104
105
/*
106
- * Base64 encoding/decoding helpers optimized for throughput.
+ * Fast base64 encoding/decoding helpers.
107
*
108
- * Key optimization: Process complete groups (3 bytes -> 4 chars for encode,
109
- * 4 chars -> 3 bytes for decode) without loop-carried dependencies.
110
- * This allows the compiler to better optimize the hot loops.
+ * Process complete groups without loop-carried dependencies.
111
*/
112
113
/* Align to 64 bytes to ensure table fits in a single L1 cache line */
0 commit comments