Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-05 | Add memrchr testcase | Adhemerval Zanella | |
2013-08-27 | Fix missing declaration of LC_CTYPE nonascii-case element | Andreas Schwab | |
2013-08-20 | Simplify strcoll implementation | Siddhesh Poyarekar | |
Break up strcoll into simpler functions so that the logic is easier to follow and maintain. | |||
2013-06-26 | Add a test for BZ #15674 | H.J. Lu | |
2013-06-20 | Fix loop construction to functions calls | Adhemerval Zanella | |
Check wheter the compiler has the option -fno-tree-loop-distribute-patterns to inhibit loop transformation to library calls and uses it on memset and memmove default implementation to avoid recursive calls. | |||
2013-06-11 | Remove performance-related bits from string tests | Siddhesh Poyarekar | |
2013-06-07 | Avoid use of "register" as optimization hint. | Joseph Myers | |
2013-06-04 | Add copyright header to test-strchrnul.c | Siddhesh Poyarekar | |
2013-05-16 | Add #include <stdint.h> for uint[32|64]_t usage (except installed headers). | Ryan S. Arnold | |
2013-05-01 | Remove duplicate __strcmp_cg | Ondrej Bilka | |
The __strcmp_cg code was duplicate of of __strcmp_gc. This patch unifies these two cases into one. | |||
2013-02-17 | Sort Versions files | Andreas Jaeger | |
2013-02-15 | Remove bounded-pointers build system support. | Joseph Myers | |
2013-02-15 | Remove miscellaneous bounded-pointers relics in C code. | Joseph Myers | |
2013-02-14 | Remove bp-sym.h and BP_SYM uses from C code. | Joseph Myers | |
2013-02-13 | Remove __ptrvalue, __bounded and __unbounded. | Joseph Myers | |
2013-02-13 | Call memcpy in generic mempcpy | Ondrej Bilka | |
2013-02-12 | Fix typo, improve comment, remove superfluous #undefs, add missing #undef. | Tom de Vries | |
2013-02-11 | Remove dead CFLAGS lines from string/Makefile | Tom de Vries | |
2013-02-08 | Remove dead variable in generic strcpy. | Roland McGrath | |
2013-02-08 | Remove CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH for C code. | Joseph Myers | |
2013-02-07 | Remove lots of inline keywords. | Roland McGrath | |
2013-01-11 | Remove __GLIBC_HAVE_LONG_LONG. | Joseph Myers | |
2013-01-11 | Add --enable-hardcoded-path-in-tests configure option | H.J. Lu | |
2013-01-10 | Remove __GNUC__ conditions for "long long" from string.h and wchar.h. | Joseph Myers | |
2013-01-02 | Update copyright notices with scripts/update-copyrights. | Joseph Myers | |
2012-12-27 | BZ#14317: Optimze __xpg_strerror_r | 2012-12-27 Bruno Haible | |
[BZ #14317] * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen only if needed. | |||
2012-11-06 | Use memcpy in memmove when possible | Maxim Kuvyrkov | |
2012-10-24 | Define and use $(run-built-tests). | Joseph Myers | |
2012-10-19 | Add string IFUNC tests | H.J. Lu | |
2012-10-19 | Add a testcase for BZ #14716 | H.J. Lu | |
2012-10-15 | Fix BZ #14716: memmem crash | Maxim Kuvyrkov | |
2012-10-12 | Avoid PLT references from __get_clockfreq on powerpc | Andreas Schwab | |
2012-10-11 | Framework to test IFUNC implementations on target | H.J. Lu | |
2012-10-11 | Use IFUNC memmove/memset in x86-64 bcopy/bzero | H.J. Lu | |
Also add separate tests for bcopy and bzero. | |||
2012-10-08 | Fix BZ #14602: strstr and strcasestr return wrong result. | Maxim Kuvyrkov | |
2012-10-06 | Add a strstr test for page boundary | H.J. Lu | |
2012-10-05 | Add a testase for BZ #14602 | H.J. Lu | |
2012-10-05 | Test strcasestr/strchr/strstr under all implementations | H.J. Lu | |
2012-08-21 | Micro-optimize critical path of strstr, strcase and memmem. | Maxim Kuvyrkov | |
2012-08-21 | Use pointers for traversing arrays in strstr, strcasestr and memmem. | Maxim Kuvyrkov | |
2012-08-21 | Detect EOL on-the-fly in strstr, strcasestr and memmem. | Maxim Kuvyrkov | |
2012-08-21 | Optimize first-character loop of strstr, strcasestr and memmem. | Maxim Kuvyrkov | |
2012-08-15 | Fix segmentation fault in strncasecmp for i686 | Liubov Dmitrieva | |
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-15 | Remove local redefinition of MAX macro. | Roland McGrath | |
2012-06-15 | Make endian.h usable for assembler | Chung-Lin Tang | |
2012-06-15 | Add __wur to GNU version of strerror_r. | Cyril Hrubis | |
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-14 | Use RAX_LP/RDX_LP on SAVE_PTR in x86_64 strtok.S | H.J. Lu | |
2012-06-01 | Remove use of INTDEF/INTUSE in stdio-common | Andreas Schwab | |
2012-05-24 | Remove use of INTDEF/INTUSE in intl | Andreas Schwab | |
2012-05-09 | Fix strspn warning with -Wconversion | Andreas Jaeger | |
[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] |