about summary refs log tree commit diff
path: root/sysdeps/aarch64/strchrnul.S
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright dates with scripts/update-copyrights.Joseph Myers2015-01-021-1/+1
|
* [AArch64] Fix strchrnul clobbering v15Richard Earnshaw2014-12-101-1/+1
|
* [AArch64] Add optimized strchrnul.Richard Earnshaw2014-11-051-0/+130
Here is an optimized implementation of __strchrnul. The simplification that we don't have to track precisely why the loop terminates (match or end-of-string) means we have to do less work in both setup and the core inner loop. That means this should never be slower than strchr. As with strchr, the use of LD1 means we do not need different versions for big-/little-endian.