summaryrefslogtreecommitdiffstats
path: root/libc/string/i386
Commit message (Collapse)AuthorAgeFilesLines
* convert // comments to /**/; remove empty #if/#endif pairs. no code changesDenys Vlasenko2009-09-186-6/+6
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* trim Experimentally off and uncommented hiddenAustin Foxley2009-09-183-4/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* libc/string/i386/string.h: fix -O0 build failureDenys Vlasenko2009-08-191-0/+22
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* relocate i386 string.h to i386-specific dirMike Frysinger2009-08-191-0/+316
| | | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* libc/string/i386/memset.c: memset 1 byte at a time is a bit grossDenis Vlasenko2009-04-231-9/+56
|
* Synch with trunk: miscellaneous changes, mostly cleanup,Carmelo Amoroso2009-01-222-0/+71
| | | | | | | code styling, comments. No object-code changes. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* sync with trunk. Compile tested on i386Denis Vlasenko2008-12-2312-152/+260
|
* fix build failures on i386Denis Vlasenko2008-12-233-3/+3
|
* Synch with trunk @ 24379Carmelo Amoroso2008-12-111-14/+15
| | | | Step 24: miscellaneous merge from trunk.
* Synch with trunk at rev 22997.Carmelo Amoroso2008-07-311-1/+1
| | | | | | | Basically trailing whitespaces removal, fix non standard keywords asm -> __asm__ inline -> __inline__ and some minor changes on trunk. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Synch arch specific part of libc/string for ↵Carmelo Amoroso2008-06-1914-15/+15
| | | | frv/ia64/sparc/i386/powerpc/arm/avr32/x86_64/cris/bfin
* Merge from trunk."Steven J. Hill"2006-08-184-1/+7
|
* Merge from trunk. Going pretty good so far. Kind of. Okay, not really."Steven J. Hill"2006-02-2516-76/+50
|
* Big fricking merge from trunk."Steven J. Hill"2006-01-0714-35/+20
|
* Finish merge from trunk, again, no really."Steven J. Hill"2005-12-101-2/+2
|
* Merge from trunk."Steven J. Hill"2005-12-021-3/+1
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+54
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+48
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+54
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+59
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+56
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+49
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+62
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+52
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+62
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+49
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+60
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+56
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+57
|
* Copy from trunk."Steven J. Hill"2005-11-171-0/+52
|
* Massive merge from trunk."Steven J. Hill"2005-11-171-15/+4
|
* Merge with trunk."Steven J. Hill"2005-11-171-329/+0
|
* Merge from trunk."Steven J. Hill"2005-10-301-37/+8
|
* Copy from trunk."Steven J. Hill"2005-10-301-0/+35
|
* Sync."Steven J. Hill"2005-09-061-6/+13
|
* merge parallel build supportMike Frysinger2005-01-251-5/+4
|
* Add in aliases provided by the non arch specific implementationsEric Andersen2003-11-061-0/+6
|
* The curse of cut-n-pasteEric Andersen2003-11-061-6/+1
|
* Add some initial x86 string optimizations. These make no attempt to use niftyEric Andersen2003-11-062-0/+366
things like mmx/3dnow/etc. These are not inline, and will therefore not be as fast as modifying the headers to use inlines (and cannot therefore do tricky things when dealing with const memory). But they should (I hope!) be faster than their generic equivalents.... More importantly, these should provide a good example for others to follow when adding arch specific optimizations. -Erik