about summary refs log tree commit diff
path: root/sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c
Commit message (Collapse)AuthorAgeFilesLines
* PowerPC: strncpy/stpncpy optimization for PPC64/POWER7Vidya Ranganathan2014-05-061-0/+33
The optimization is achieved by following techniques: > data alignment [gain from aligned memory access on read/write] > POWER7 gains performance with loop unrolling/unwinding [gain by reduction of branch penalty]. > zero padding done by calling optimized memset