about summary refs log tree commit diff
path: root/string
Commit message (Collapse)AuthorAgeFilesLines
* More warning patrol.Roland McGrath2011-08-141-5/+2
|
* Provide better output in string testsUlrich Drepper2011-08-041-2/+4
| | | | | If IMPL is called with a macro for the first parameter the macro does not get expanded before the string is stored in the impl_t data structure.
* Cleanup wcscmp test additionUlrich Drepper2011-08-041-206/+149
|
* New comprehensive test for wcscmpLiubov Dmitrieva2011-08-043-24/+160
|
* Add more tests for strcat and strncat.Ulrich Drepper2011-07-211-3/+90
|
* Improve 64 bit strcat functions with SSE2/SSSE3Liubov Dmitrieva2011-07-191-2/+4
|
* Fix alloca accounting in strxfmAndreas Schwab2011-07-191-2/+3
|
* Add string/test-strncat.cUlrich Drepper2011-07-062-1/+300
|
* Fix last changeUlrich Drepper2011-05-211-17/+12
| | | | And optimize a bit.
* Always fill output buffer in XPG strerror functionUlrich Drepper2011-05-211-8/+9
|
* Nicer output for negative error numbers in strerror_rUlrich Drepper2011-05-211-3/+11
|
* Revert "Fix strncmp page test to limit length to size of object"Andreas Schwab2011-04-071-4/+3
| | | | This reverts commit e513f34605747f43eed259519b6fb847591861d2.
* Fix strncmp page test to limit length to size of objectAndreas Schwab2011-04-051-3/+4
|
* Fix whitespace issue.Ulrich Drepper2011-03-211-8/+8
|
* Handle page boundaries in x86 SSE4.2 strncmp.H.J. Lu2011-03-211-0/+41
|
* Change XPG-compliant strerror_r function to return error code.Ulrich Drepper2010-12-251-9/+4
|
* Fix -D_FORTIFY_SOURCE memmove and bcopJakub Jelinek2010-12-091-5/+3
|
* Fix one exit path in x86-64 SSE4.2 str{,n}casecmp.H.J. Lu2010-11-101-4/+35
|
* Add missing file.Ulrich Drepper2010-10-261-0/+14
|
* Fix concurrency problem between dl_open and dl_iterate_phdrAndreas Krebbel2010-10-261-1/+1
|
* Add test case for strstr problem.Ulrich Drepper2010-10-061-1/+3
|
* Fix strstr and memmem algorithm.Eric Blake2010-10-062-1/+27
|
* Fix handling of tail bytes of buffer in SSE2/SSSE3 x86-64 version strn{,case}cmpUlrich Drepper2010-10-031-37/+107
|
* Add optimized strncasecmp versions for x86-64.Ulrich Drepper2010-08-142-1/+319
|
* Implement optimized strcaecmp for x86-64.Ulrich Drepper2010-07-302-1/+277
|
* Fix tolower operation in strcasestr.Ulrich Drepper2010-07-301-1/+1
|
* Add optimized x86-64 implementation of strnlen.Ulrich Drepper2010-07-264-21/+229
| | | | | While at it, beef up the test suite for strnlen and add performance tests for it, too.
* Add performance tests for strstr and strcasestr.Ulrich Drepper2010-07-235-6/+399
|
* Improve 64bit memcpy/memmove for Atom, Core 2 and Core i7H.J. Lu2010-06-301-1/+4
| | | | | | | This patch includes optimized 64bit memcpy/memmove for Atom, Core 2 and Core i7. It improves memcpy by up to 3X on Atom, up to 4X on Core 2 and up to 1X on Core i7. It also improves memmove by up to 3X on Atom, up to 4X on Core 2 and up to 2X on Core i7.
* Fix bugs in x86-32 strcmp-sse4.S and strcmp-ssse3.SH.J. Lu2010-04-151-4/+35
|
* Test case for last x86 memcmp problemH.J. Lu2010-03-241-4/+261
|
* Relax onditions in strings.h.Ulrich Drepper2010-01-141-2/+2
|
* Cleanup strings.h.Ulrich Drepper2010-01-101-14/+19
| | | | Cleanup the strings.h header for XPG7 and update the tests.
* Add support for XPG7 testing.Ulrich Drepper2010-01-093-8/+9
| | | | | The header conformance testing code needed extending for XPG7. This exposed a few bugs in the headers. There are more changes to come.
* Avoid memset warning in one case.Caolan McNamara2009-11-101-2/+3
|
* SSE4.2 strstr/strcasestr for x86-64.H.J. Lu2009-07-202-4/+15
| | | | | This patch implements SSE4.2 strstr/strcasestr, using Knuth-Morris-Pratt string searching algorithm.
* SSSE3 strcpy/stpcpy for x86-64H.J. Lu2009-07-022-11/+13
| | | | | | This patch adds SSSE3 strcpy/stpcpy. I got up to 4X speed up on Core 2 and Core i7. I disabled it on Atom since SSSE3 version is slower for shorter (<64byte) data.
* Add SSE4.2 support for strcmp and strncmp on x86-64.H.J. Lu2009-06-221-5/+7
|
* Fix x86-64 memchr for large lengths.Jakub Jelinek2009-06-161-2/+7
|
* Remove redundant .gitignore files.Andreas Schwab2009-05-161-6/+0
|
* rename each .cvsignore file to .gitignoreJim Meyering2009-05-151-0/+0
|
* * string/stratcliff.c (do_test): Test for zero lengthUlrich Drepper2009-05-091-9/+27
| | | | | STRNLEN, MEMCHR, STRNCPY, STPNCPY, MEMCPY, MEMPCPY and memccpy at the end of the page.
* * string/stratcliff.c (do_test): Add memchr tests..Ulrich Drepper2009-04-071-1/+33
| | | | | * sysdeps/x86_64/memchr.S: Fix handling of end of buffer after first read quad word.
* * string/strverscmp.c (__strverscmp): Fix last cleanups. cvs/fedora-glibc-20090407T0657Ulrich Drepper2009-04-074-4/+8
| | | | | | * string/tst-svc.input: Add new test case. * string/tst-svc.expect: Adjust. * string/Makefile: Don't ignore tst-svc error.
* [BZ #5807]Ulrich Drepper2009-03-151-49/+3
| | | | | | | 2009-03-15 Ulrich Drepper <drepper@redhat.com> [BZ #5807] * string/strlen.c (strlen): Fix omission in the expression to test for NUL bytes.
* [BZ #9893]Ulrich Drepper2009-03-141-0/+62
| | | | | | * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix alignement of La_x86_64_regs. Store xmm parameters. Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
* [BZ #9913]Ulrich Drepper2009-03-142-34/+31
| | | | | | | | | | * string/strverscmp.c (__strverscmp): Fix case of different digits in fractional part of string. Patch by Jingyu Liu <jyliu@fortinet.com>. * string/Makefile (tests): Add tst-svc2. * string/tst-svc2.c: New file. * string/strverscmp.c (__strverscmp): Optimize size of tables.
* * wctype/wctype.h: The *_l functions are in POSIX 2008.Ulrich Drepper2009-02-262-9/+28
| | | | | | | | | | | | | | | | | | | | * wcsmbs/wchar.h: mbsnrtowcs, open_wmemstream, wcpcpy, wcpncpy, wcscasecmp, wcsdup, wcsncasecmp, wcsnlen, wcsnrtombs, wcscasecmp_l, wcsncasecmp_l, wcscoll_l, and wcsxfrm_l. * sysdeps/mach/hurd/bits/posix_opt.h: Reset value of macros from 200112L to 200809L. * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise. * posix/getconf.c (vars): Add _SC_THREAD_ROBUST_PRIO_INHERIT and _SC_THREAD_ROBUST_PRIO_PROTECT entries. * bits/confname.h: Add _SC_THREAD_ROBUST_PRIO_INHERIT and _SC_THREAD_ROBUST_PRIO_PROTECT. * posix/unistd.h: fexecve is in POSIX 2008. * time/time.h: strftime_l is in POSIX 2008. * io/sys/stat.h: futimens is in POSIX 2008. * string/strings.h: strcasecmp_l and strncasecmp_l are in POSIX 2008. * string/string.h: stpcpy, stpncpy, strndup, strnlen, strsignal, strcoll_l, strerror_l, and strxfrm_l are in POSIX 2008. * stdlib/stdlib.h: mkdtemp is in POSIX 2008.
* * string/string.h (memchr, strchr, strrchr, strpbrk, strstr, index,Ulrich Drepper2009-01-302-18/+192
| | | | | | rindex): For C++ add inlines so that they can be recognized as builtins. * string/strings.h: Define correct C++ prototypes for gcc 4.4.
* Jakub Jelinek <jakub@redhat.com>Ulrich Drepper2009-01-291-1/+92
| | | | | | | * string.h: Define correct C++ prototypes for gcc 4.4. * wchar.h: Likewise. 2009-01-29 Ulrich Drepper <drepper@redhat.com>