Nils Pipenbrinck

13,767
Reputation
830 views

Registered User

Name Nils Pipenbrinck
Member for 1 year
Seen 1 hour ago
Website
Location Hamburg/Germany
Age 37
nah - won't tell anything about me..
1h
awarded  Popular Question
5h
comment Best algorithm to count the number of set bits in a 32-bit integer?
@matja, my GCC 4.4.1 emits the popcnt instruction if I compile with -msse4.2
22h
accepted Sun Raster images: Why 1 byte row padding when width is odd?
1d
revised MMX instructions for Iphone
edited tags
1d
comment Complex numbers: fast cartesian to polar conversion
That's what I was looking for.. Thank you very much.
1d
answered Can I use a USB-to-serial adapter to talk to my development board from VMWare Fusion?
1d
comment Game platform/engine for inexperienced/solo developer?
I've worked several year as a professional game developer, and I started doing a game or two years earlier... A good graphic library can cut the time to get it done down, but you should still estimate something between 10 (if it's not your first game) and 20 month... These are btw. optimistic estimates..
1d
answered Game platform/engine for inexperienced/solo developer?
2d
comment Complex numbers: fast cartesian to polar conversion
Nice article! Love the idea to use multipliers to speed up the computation and remove the branches.. I'll give that a try.
2d
asked Complex numbers: fast cartesian to polar conversion
Nov
21
answered faster strlen ?
Nov
20
awarded  Popular Question
Nov
18
comment LOOP, LOOPE, LOOPNE?
Also not asked I'd like to point out that all LOOP instructions are much slower than the DEC ECX / JNZ counterpart. This is intended as LOOP should nowadays only be used for delay calibration loops used for hardware-drivers and the like.
Nov
18
answered Request for comments on Huffman compression
Nov
18
revised add numbers using mips
edited body
Nov
18
comment add numbers using mips
there is no difference between B and J. B is just syntactic suggar.. I'll change it to J though. seems to be more widely used.
Nov
18
answered Sun Raster images: Why 1 byte row padding when width is odd?
Nov
18
answered add numbers using mips
Nov
17
comment Which non mainstream programming language to use for a hobby project?
+1 for ADA, a very interesting language.
Nov
16
comment GCC: Force a function call after every instruction (for multithreaded testing)?
if it does not you can roll your own wrapper around yield. Good luck finding your bug...
Nov
16
accepted GCC: Force a function call after every instruction (for multithreaded testing)?
Nov
16
answered GCC: Force a function call after every instruction (for multithreaded testing)?
Nov
13
answered Determine VRAM size on windows
Nov
13
answered Basic DSP question
Nov
12
answered C/C++ open source Acoustic Echo Cancellation audio analyzer/cleaner
Nov
12
answered Very fast memcpy for image processing?
Nov
12
revised Delete holes in a Polygon
edited tags
Nov
10
comment Is the sound library WINMM.DLL found in every Windows Installation?
I could be wrong, but I remember having used winmm.dll back in the days of win3.11
Nov
10
answered Saying “C & C# are equal by functionality, but not by concept”
Nov
10
awarded  Nice Answer
Nov
10
comment How to use DSP to speed-up a code on OMAP?
Ignore the messaging. Just collect all the little DSP-jobs that you want to run in a shared memory buffer on the GPP side and once you've collected them all call the DSP once and let it do it's job. You could also move your entire video decoder to the DSP-side.
Nov
10
answered Referring to data both by name and by number in C
Nov
10
accepted how is read-only memory implemented in c?
Nov
10
answered how is read-only memory implemented in c?
Nov
9
answered How to find out what was the last reason to tokenize
Nov
9
accepted With OpenGL, how can I use gluOrtho2D properly with default projection?
Nov
7
comment CONTEST: optimize size of grayscale scanned documents!
CCITT Fax4 for the win!
Nov
6
comment Fast 4x4 Matrix Multiplication in C
Hey Till.. Psst.. don't tell anyone.. Besides that.. You're the guy who wrote a midi-player back in the 90'th, aren't you? If I remember right we sat side by side for a weekend at a computer party in 97 or so..
Nov
4
comment Fast 4x4 Matrix Multiplication in C
@rmeador, for the performance it makes about 25% difference (just checked).
Nov
4
awarded  Enlightened
Nov
4
awarded  Nice Answer
Nov
4
revised Fast 4x4 Matrix Multiplication in C
added 98 characters in body
Nov
4
accepted Fast 4x4 Matrix Multiplication in C
Nov
4
answered Fast 4x4 Matrix Multiplication in C
Nov
3
awarded  Notable Question
Nov
3
awarded  
Nov
2
comment C inline assembly memory copy
Could be.. I always try to avoid this AT&T Syntax.. The intel syntax is imho much cleaner..
Nov
1
answered C inline assembly memory copy
Oct
31
accepted OpenGL: glTexImage2D conflicts with glGenLists & glCallList ?
Oct
31
comment Display List generation
+1 Display Lists are slow, obsolete and just complicate things...