about summary refs log tree commit diff
path: root/sysdeps/powerpc/powerpc64/multiarch/strspn.c
Commit message (Collapse)AuthorAgeFilesLines
* PowerPC: Fix strspn for static buildAdhemerval Zanella2014-03-121-1/+1
| | | | This patch makes the strspn ifunc selector build for static builds.
* PowerPC: strspn optimization for PPC64/POWER7Vidya Ranganathan2014-03-111-0/+31
The optimization is achieved by following techniques: > hashing of needle. > hashing avoids scanning of duplicate entries in needle across the string. > initializing the hash table with Vector instructions (VSX) by quadword access. > unrolling when scanning for character in string across hash table.