about summary refs log tree commit diff
path: root/string
Commit message (Collapse)AuthorAgeFilesLines
* Fix BZ #14602: strstr and strcasestr return wrong result.Maxim Kuvyrkov2012-10-083-18/+27
|
* Add a strstr test for page boundaryH.J. Lu2012-10-061-1/+6
|
* Add a testase for BZ #14602H.J. Lu2012-10-051-0/+12
|
* Test strcasestr/strchr/strstr under all implementationsH.J. Lu2012-10-057-89/+77
|
* Micro-optimize critical path of strstr, strcase and memmem.Maxim Kuvyrkov2012-08-213-1/+12
|
* Use pointers for traversing arrays in strstr, strcasestr and memmem.Maxim Kuvyrkov2012-08-212-18/+49
|
* Detect EOL on-the-fly in strstr, strcasestr and memmem.Maxim Kuvyrkov2012-08-215-13/+91
|
* Optimize first-character loop of strstr, strcasestr and memmem.Maxim Kuvyrkov2012-08-211-1/+14
|
* Fix segmentation fault in strncasecmp for i686Liubov Dmitrieva2012-08-151-4/+14
| | | | | | | | | | | | 2012-08-15 Liubov Dmitrieva <liubov.dmitrieva@gmail.com> [BZ #14195] * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix segmentation fault for a case of two empty input strings. * string/test-strncasecmp.c (check1): Renamed to... (bz12205): ...this. (bz14195): Add new testcase for two empty input strings and N > 0. (test_main): Call new testcase, adapt for renamed function.
* Remove local redefinition of MAX macro.Roland McGrath2012-08-151-5/+2
|
* Make endian.h usable for assemblerChung-Lin Tang2012-06-151-1/+1
|
* Add __wur to GNU version of strerror_r.Cyril Hrubis2012-06-151-3/+2
| | | | | | | | Not using the result of the GNU strerror_r() is always a mistake. Moreover this would generate warning if XSI version was expected but GNU version was used instead (because some random used header defined _GNU_SOURCE which was Python.h in this case).
* Use RAX_LP/RDX_LP on SAVE_PTR in x86_64 strtok.SH.J. Lu2012-06-142-1/+39
|
* Remove use of INTDEF/INTUSE in stdio-commonAndreas Schwab2012-06-011-6/+2
|
* Remove use of INTDEF/INTUSE in intlAndreas Schwab2012-05-242-4/+4
|
* Fix strspn warning with -WconversionAndreas Jaeger2012-05-091-2/+2
| | | | | | | | [BZ #14083] Fix warning when using strspn with -Wconversion: $ gcc -Wconversion -O t.c t.c: In function ‘main’: t.c:8:7: warning: conversion to ‘long unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion]
* Fix attributes for fortify functions.Marek Polacek2012-04-292-13/+13
|
* Remove all traces of reg_char.David S. Miller2012-04-1811-20/+12
| | | | | | | | | | | | | | | | | | | * sysdeps/generic/memcopy.h (reg_char): Delete. * debug/strcat_chk.c: Use char, not reg_char. * debug/strcpy_chk.c: Likewise. * debug/strncat_chk.c: Likewise. * debug/strncpy_chk.c: Likewise. * string/memchr.c: Likewise. * string/memrchr.c: Likewise. * string/rawmemchr.c: Likewise. * string/strcat.c: Likewise. * string/strchr.c: Likewise. * string/strchrnul.c: Likewise. * string/strcmp.c: Likewise. * string/strcpy.c: Likewise. * string/strncat.c: Likewise. * string/strncmp.c: Likewise. * string/strncpy.c: Likewise.
* Add byteswap-16.h for __bswap_16H.J. Lu2012-04-061-2/+2
|
* Add __bswap_64 definition for non GCC compilers.Andreas Jaeger2012-04-032-11/+18
| | | | | | | | | [BZ#13926] Currently __bswap_64 is not defined at all for non-GCC compilers. Define it but guard it with __GLIBC_HAVE_LONG_LONG. endian.h uses __bswap_64, make the functions only available if __GLIBC_HAVE_LONG_LONG is defined.
* Testsuite #include fixes.Thomas Schwinge2012-04-023-3/+8
|
* Move stdio-common/_itoa.h to sysdeps/genericH.J. Lu2012-03-201-1/+1
|
* Remove distribute variable from MakefilesUlrich Drepper2012-03-071-3/+1
|
* Replace FSF snail mail address with URLs.Paul Eggert2012-02-09115-345/+230
|
* Remove miscellaneous __STDC__ conditionals.Joseph Myers2012-01-304-26/+8
|
* Remove pre-ISO C supportUlrich Drepper2012-01-076-322/+313
| | | | No more __const.
* Fix problem with reuse of test-strcpy for wide char testingUlrich Drepper2012-01-071-2/+5
|
* WP fixesUlrich Drepper2011-12-171-3/+5
|
* Optimized wcschr and wcscpy for x86-64 and x86-32Ulrich Drepper2011-12-171-9/+8
|
* WP cleanupUlrich Drepper2011-12-172-11/+11
|
* Fix WPUlrich Drepper2011-12-171-5/+7
|
* Add tests for wcsrchr and wcscpyUlrich Drepper2011-12-172-88/+150
|
* Fix access after end of search string in regex matcherAndreas Schwab2011-11-302-4/+4
|
* Add strchrnul performance testUlrich Drepper2011-10-293-8/+23
|
* Fix strchr testAndreas Schwab2011-10-251-11/+15
|
* Fix strnlen changeUlrich Drepper2011-10-231-6/+4
|
* Add optimized wcslen and strnlen for x86-32Liubov Dmitrieva2011-10-231-2/+9
|
* Fix WSUlrich Drepper2011-10-231-7/+7
|
* Add wcschr test casesLiubov Dmitrieva2011-10-231-53/+78
|
* Add wcslen test casesLiubov Dmitrieva2011-10-231-39/+46
|
* More WS fixesUlrich Drepper2011-10-231-4/+4
|
* Fix signedness in wcscmp comparisonLiubov Dmitrieva2011-10-231-14/+75
|
* Optimize x86-64 rawmemchr and add testUlrich Drepper2011-10-192-1/+190
|
* Optimized memcmp and wmemcmp for x86-64 and x86-32Liubov Dmitrieva2011-10-151-15/+32
|
* Add memrchr testsAndreas Schwab2011-10-131-2/+33
|
* Optimized memchr, memrchr, rawmemchr for x86-32Liubov Dmitrieva2011-10-121-2/+9
|
* delete 4 lines with unused "define" macros in test-memcmpLiubov Dmitrieva2011-10-071-4/+0
|
* string/strncat.c: fix compilation for some architecturesDenis Zaitceff2011-09-091-0/+1
|
* Move wide char tests to wcsmbs directoryUlrich Drepper2011-09-083-7/+3
|
* New comprehensive test for wmemcmpLiubov Dmitrieva2011-09-083-42/+64
|