2,342 reputation
935
bio website
location
age
visits member for 3 years, 2 months
seen 14 hours ago
stats profile views 199

1d
answered std::array alignment
2d
accepted Any library that does printf on a C++ stream?
2d
comment Any library that does printf on a C++ stream?
Does it allow a format string not known at compile-time?
2d
asked Any library that does printf on a C++ stream?
May
12
comment signed 16-bit SSE average
It's already rounding up. The possibilities are as follows: both arguments are even or odd - no rounding takes place; one of the arguments is even, the other odd - the average (XXX.5) is rounded up due to the + 1 part.
May
12
comment signed 16-bit SSE average
_mm_avg_epu16 already takes care of rounding. It's equivalent to (a + b + 1) / 2
May
10
accepted c++ SSE SIMD framework
May
8
revised git rebase without changing commit timestamps
fix the git command
May
7
revised Format a string in C
link to a C-specific reference
May
7
revised Why do people say there is modulo bias when using a random number generator?
the question is tagged c++ - link to c++ resource
May
7
answered Clang++ not understanding c++11 in mac terminal
May
5
revised Two decimal places using printf( )
too many C++ specifics there
May
5
revised How to print in C
too many C++ specifics there
May
5
revised String Padding in C
too many C++ specifics there
May
5
revised How to fill a 2D array in C with user input values?
too many C++ specifics there
May
4
revised C - Error while running .exe file that I compiled
link to cppreference, they have a separate C section
May
2
accepted Can single condition variable be used for bidirectional synchronization?
May
2
asked Can single condition variable be used for bidirectional synchronization?
May
2
accepted Why there is no placement delete expression in C++?
Apr
30
comment What do each memory_order mean?
It depends. The only way to know is to measure. As a rule of thumb, if the lock contention is low, atomics usually are faster.