You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on #18092 I checked and this costs only about 8 bytes on samd, and might make formatting with "unusual" chars a bit faster (uint32_t fill4; declared uninitialized earlier in function):
// Other pad characters are fairly unusual, so we'll take the hit
// and output them 4 at a time.
fill4 = UINT32_C(0x1010101) * (unsigned char)fill;
pad_chars = (char *)&fill4;
pad_size = 4;
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
While working on #18092 I checked and this costs only about 8 bytes on samd, and might make formatting with "unusual" chars a bit faster (
uint32_t fill4;
declared uninitialized earlier in function):but I didn't benchmark it or anything.
Beta Was this translation helpful? Give feedback.
All reactions