about summary refs log tree commit diff
path: root/string
Commit message (Expand)AuthorAgeFilesLines
* Add _STRING_INLINE_unaligned and string_private.hH.J. Lu2016-02-181-5/+5
* S390: Fix build failure in test string/tst-endian.c with gcc 6.Stefan Liebler2016-01-251-0/+23
* Update copyright dates with scripts/update-copyrights.Joseph Myers2016-01-04122-122/+122
* Convert miscellaneous function definitions to prototype style.Joseph Myers2015-10-203-19/+5
* Convert 29 more function definitions to prototype style (multiple parameters ...Joseph Myers2015-10-201-2/+1
* Convert 703 function definitions to prototype style.Joseph Myers2015-10-1611-42/+13
* Fix typo in bug-strcoll2 (Bug 18589)Carlos O'Donell2015-10-092-2/+3
* strcoll: Add bug-strcoll2 to testsuite (Bug 18589).Carlos O'Donell2015-10-082-3/+4
* strcoll: Remove incorrect STRDIFF-based optimization (Bug 18589).Carlos O'Donell2015-10-082-37/+94
* Let 'make check subdirs=string' succeed even when it's invokedMartin Sebor2015-09-282-2/+14
* Move bits/libc-lock.h and bits/libc-lockP.h out of bits/ (bug 14912).Joseph Myers2015-09-081-1/+1
* S390: Optimize wmemset.Stefan Liebler2015-08-261-32/+58
* S390: Optimize memccpy.Stefan Liebler2015-08-261-0/+4
* S390: Optimize memchr, rawmemchr and wmemchr.Stefan Liebler2015-08-261-34/+57
* S390: Optimize strcspn and wcscspn.Stefan Liebler2015-08-261-13/+34
* S390: Optimize strpbrk and wcspbrk.Stefan Liebler2015-08-261-49/+81
* S390: Optimize strspn and wcsspn.Stefan Liebler2015-08-261-36/+63
* S390: Optimize strchrnul and wcschrnul.Stefan Liebler2015-08-261-8/+18
* S390: Optimize strchr and wcschr.Stefan Liebler2015-08-261-2/+6
* S390: Optimize strcmp and wcscmp.Stefan Liebler2015-08-261-1/+5
* S390: Optimize strncat wcsncat.Stefan Liebler2015-08-261-52/+86
* S390: Optimize strcat and wcscat.Stefan Liebler2015-08-262-47/+85
* S390: Optimize stpncpy and wcpncpy.Stefan Liebler2015-08-261-11/+30
* S390: Optimize strncpy and wcsncpy.Stefan Liebler2015-08-261-46/+85
* S390: Optimize stpcpy and wcpcpy.Stefan Liebler2015-08-261-10/+25
* S390: Optimize strnlen and wcsnlen.Stefan Liebler2015-08-261-33/+54
* S390: Optimize strlen and wcslen.Stefan Liebler2015-08-261-1/+5
* Improve stpncpy performance by using __strnlen/memcpy/memset rather than aWilco Dijkstra2015-08-191-54/+5
* Port the 0x7efe...feff pattern to GCC 6.Paul Eggert2015-08-184-32/+8
* stpncpy: fix size checking [BZ #18975]Zack Weinberg2015-08-141-1/+1
* powerpc: Use default strcpy optimization for POWER7Adhemerval Zanella2015-08-112-13/+9
* Modify several tests to use test-skeleton.cArjun Shankar2015-08-062-4/+10
* Improve performance of mempcpy by inlining and using memcpy. EnableWilco Dijkstra2015-08-051-0/+19
* Improve memccpy performance by using memchr/memcpy/mempcpy rather thanWilco Dijkstra2015-08-051-7/+4
* This patch improves strncpy performance by using strnlen/memcpy rather than a...Wilco Dijkstra2015-08-051-54/+5
* remove unnecessary memset in strcollLeonhard Holz2015-06-221-2/+5
* remove now unused idxnow in strcollLeonhard Holz2015-06-221-1/+0
* Use libc_hidden_proto / libc_hidden_def with __strnlen.Joseph Myers2015-06-021-0/+1
* Fix pathconf basename namespace (bug 18444).Joseph Myers2015-05-221-2/+4
* Improve strcoll with strdiff.Leonhard Holz2015-05-121-1/+37
* Use correct signedness in wcsncmpStefan Liebler2015-04-131-49/+129
* Don't define __CORRECT_ISO_CPP_STRING_H_PROTO for non-GCC compilers (bug 17631)Andreas Schwab2015-03-042-12/+4
* Rather than using a C implementation of memmove, directly call memmove, whichWilco Dijkstra2015-02-271-9/+5
* Rather than using a C implementation of memset, directly call memset, whichWilco Dijkstra2015-02-271-55/+2
* Remove unused definitionsLeonhard Holz2015-02-112-2/+0
* Fix memory handling in strxfrm_l [BZ #16009]Leonhard Holz2015-01-131-94/+394
* Revert "Suppress warning in string/tester.c for gcc 4.9"Ondřej Bílka2015-01-061-3/+3
* Suppress warning in string/tester.c for gcc 4.9Ondřej Bílka2015-01-061-3/+3
* Update copyright dates with scripts/update-copyrights.Joseph Myers2015-01-02121-121/+121
* * string/stpcpy.c (__stpcpy): Rewrite using strlen and memcpy.Richard Earnshaw2014-12-231-8/+2