about summary refs log tree commit diff
path: root/src/string
Commit message (Expand)AuthorAgeFilesLines
* move arm-specific translation units out of arch/arm/src, to src/*/armRich Felker2016-01-224-0/+36
* adapt build of arm memcpy asm not to use .sub filesRich Felker2016-01-204-2/+7
* remove non-working pre-armv4t support from arm asmRich Felker2015-11-091-4/+0
* convert arm memcpy asm to UAL, remove .word hacksRich Felker2015-11-051-22/+24
* reimplement strverscmp to fix corner casesRich Felker2015-06-231-32/+25
* remove potentially PIC-incompatible relocations from x86_64 and x32 asmRich Felker2015-04-182-1/+5
* remove the last of possible-textrels from i386 asmRich Felker2015-04-182-1/+5
* overhaul optimized x86_64 memset asmRich Felker2015-02-261-26/+55
* overhaul optimized i386 memset asmRich Felker2015-02-261-32/+61
* x86_64/memset: avoid performing final store twiceDenys Vlasenko2015-02-101-1/+1
* x86_64/memset: simple optimizationsDenys Vlasenko2015-02-101-14/+16
* fix tabs/spaces in memcpy.sRich Felker2014-11-231-279/+279
* fix build regression in arm asm for memcpyRich Felker2014-11-231-30/+30
* arm assembly changes for clang compatibilityJoakim Sindholt2014-11-231-30/+30
* fix handling of odd lengths in swab functionRich Felker2014-10-041-1/+1
* add support for LC_TIME and LC_MESSAGES translationsRich Felker2014-07-261-2/+3
* consolidate str[n]casecmp_l into str[n]casecmp source filesRich Felker2014-07-022-0/+16
* fix incorrect comparison loop condition in memmemRich Felker2014-06-191-2/+2
* fix false negatives with periodic needles in strstr, wcsstr, and memmemRich Felker2014-04-183-3/+3
* fix search past the end of haystack in memmemTimo Teräs2014-04-091-0/+1
* include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy2013-12-1222-18/+7
* strcmp: Remove unnecessary check for *rMichael Forney2013-11-231-1/+1
* optimized C memcpyRich Felker2013-08-281-16/+111
* optimized C memsetRich Felker2013-08-271-12/+77
* add arm-optimized memcpy implementation from bionic libcRich Felker2013-08-143-0/+383
* optimized memset asm for i386 and x86_64Rich Felker2013-08-012-0/+88
* fix a couple misleading/wrong signal descriptions in strsignalRich Felker2013-07-091-2/+2
* add realtime signals to strsignalRich Felker2013-07-091-3/+19
* fix off-by-one array bound in strsignalRich Felker2013-07-091-1/+1
* Add ABI compatability aliases.Isaac Dunham2013-04-051-0/+3
* fix integer type issue in strverscmpRich Felker2013-02-261-1/+3
* implement non-stub strverscmpRich Felker2013-02-261-2/+35
* replace stub with working strcasestrRich Felker2013-02-211-2/+4
* fix wrong return value from wmemmove on forward copiesRich Felker2013-02-211-1/+2
* fix alignment logic in strlcpyRich Felker2012-12-261-1/+1
* simplify logic in stpcpy; avoid copying first aligned byte twiceRich Felker2012-10-221-4/+4
* add memmem function (gnu extension)Rich Felker2012-10-151-0/+148
* optimize strchrnul/strcspn not to scan string twice on no-matchRich Felker2012-09-273-25/+29
* slightly cleaner strlen, also seems to compile to better codeRich Felker2012-09-271-6/+4
* asm for memmove on i386 and x86_64Rich Felker2012-09-102-0/+36
* reenable word-at-at-time copying in memmoveRich Felker2012-09-101-4/+27
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-0620-20/+20
* remove dependency of wmemmove on wmemcpy directionRich Felker2012-09-061-4/+4
* remove dependency of memmove on memcpy directionRich Felker2012-09-061-5/+4
* memcpy asm for i386 and x86_64Rich Felker2012-08-112-0/+51
* remove unused but buggy code from strstr.cRich Felker2012-08-111-10/+0
* remove buggy short-string wcsstr implementation; always use twowayRich Felker2012-08-111-9/+0
* optimize mempcpy to minimize need for data saved across the callRich Felker2012-07-311-2/+1
* make strerror_r behave nicer on failureRich Felker2012-06-201-2/+8
* fix overrun (n essentially ignored) in wcsncmpRich Felker2012-05-261-1/+1