aboutsummaryrefslogtreecommitdiff
path: root/string
AgeCommit message (Collapse)AuthorFilesLines
2012-08-21Micro-optimize critical path of strstr, strcase and memmem.Maxim Kuvyrkov3-1/+12
2012-08-21Use pointers for traversing arrays in strstr, strcasestr and memmem.Maxim Kuvyrkov2-18/+49
2012-08-21Detect EOL on-the-fly in strstr, strcasestr and memmem.Maxim Kuvyrkov5-13/+91
2012-08-21Optimize first-character loop of strstr, strcasestr and memmem.Maxim Kuvyrkov1-1/+14
2012-08-15Fix segmentation fault in strncasecmp for i686Liubov Dmitrieva1-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.
2012-08-15Remove local redefinition of MAX macro.Roland McGrath1-5/+2
2012-06-15Make endian.h usable for assemblerChung-Lin Tang1-1/+1
2012-06-15Add __wur to GNU version of strerror_r.Cyril Hrubis1-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).
2012-06-14Use RAX_LP/RDX_LP on SAVE_PTR in x86_64 strtok.SH.J. Lu2-1/+39
2012-06-01Remove use of INTDEF/INTUSE in stdio-commonAndreas Schwab1-6/+2
2012-05-24Remove use of INTDEF/INTUSE in intlAndreas Schwab2-4/+4
2012-05-09Fix strspn warning with -WconversionAndreas Jaeger1-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]
2012-04-29Fix attributes for fortify functions.Marek Polacek2-13/+13
2012-04-18Remove all traces of reg_char.David S. Miller11-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.
2012-04-06Add byteswap-16.h for __bswap_16H.J. Lu1-2/+2
2012-04-03Add __bswap_64 definition for non GCC compilers.Andreas Jaeger2-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.
2012-04-02Testsuite #include fixes.Thomas Schwinge3-3/+8
2012-03-20Move stdio-common/_itoa.h to sysdeps/genericH.J. Lu1-1/+1
2012-03-07Remove distribute variable from MakefilesUlrich Drepper1-3/+1
2012-02-09Replace FSF snail mail address with URLs.Paul Eggert115-345/+230
2012-01-30Remove miscellaneous __STDC__ conditionals.Joseph Myers4-26/+8
2012-01-07Remove pre-ISO C supportUlrich Drepper6-322/+313
No more __const.
2012-01-07Fix problem with reuse of test-strcpy for wide char testingUlrich Drepper1-2/+5
2011-12-17WP fixesUlrich Drepper1-3/+5
2011-12-17Optimized wcschr and wcscpy for x86-64 and x86-32Ulrich Drepper1-9/+8
2011-12-17WP cleanupUlrich Drepper2-11/+11
2011-12-17Fix WPUlrich Drepper1-5/+7
2011-12-17Add tests for wcsrchr and wcscpyUlrich Drepper2-88/+150
2011-11-30Fix access after end of search string in regex matcherAndreas Schwab2-4/+4
2011-10-29Add strchrnul performance testUlrich Drepper3-8/+23
2011-10-25Fix strchr testAndreas Schwab1-11/+15
2011-10-23Fix strnlen changeUlrich Drepper1-6/+4
2011-10-23Add optimized wcslen and strnlen for x86-32Liubov Dmitrieva1-2/+9
2011-10-23Fix WSUlrich Drepper1-7/+7
2011-10-23Add wcschr test casesLiubov Dmitrieva1-53/+78
2011-10-23Add wcslen test casesLiubov Dmitrieva1-39/+46
2011-10-23More WS fixesUlrich Drepper1-4/+4
2011-10-23Fix signedness in wcscmp comparisonLiubov Dmitrieva1-14/+75
2011-10-19Optimize x86-64 rawmemchr and add testUlrich Drepper2-1/+190
2011-10-15Optimized memcmp and wmemcmp for x86-64 and x86-32Liubov Dmitrieva1-15/+32
2011-10-13Add memrchr testsAndreas Schwab1-2/+33
2011-10-12Optimized memchr, memrchr, rawmemchr for x86-32Liubov Dmitrieva1-2/+9
2011-10-07delete 4 lines with unused "define" macros in test-memcmpLiubov Dmitrieva1-4/+0
2011-09-09string/strncat.c: fix compilation for some architecturesDenis Zaitceff1-0/+1
2011-09-08Move wide char tests to wcsmbs directoryUlrich Drepper3-7/+3
2011-09-08New comprehensive test for wmemcmpLiubov Dmitrieva3-42/+64
2011-08-14More warning patrol.Roland McGrath1-5/+2
2011-08-04Provide better output in string testsUlrich Drepper1-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.
2011-08-04Cleanup wcscmp test additionUlrich Drepper1-206/+149
2011-08-04New comprehensive test for wcscmpLiubov Dmitrieva3-24/+160