rockbox/firmware/common
Jens Arnold 78826de045 Assembler optimized strlen() for SH1, both smaller & faster. Moved strlen() into IRAM.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5629 a1c6a512-1295-4272-9138-f99709370657
2005-01-22 13:18:33 +00:00
..
atoi.c Magnus Holmgren's improved atoi() 2002-09-30 08:50:00 +00:00
ctype.c Made the char property lookup table constant 2004-07-20 22:32:17 +00:00
dir.c using a pointer instead of array dereferencing saves ~250 bytes 2005-01-03 20:23:42 +00:00
disk.c Shared mounting code, also more general. It will mount multiple HD partitions, too, once HAVE_MULTIVOLUME is enabled. 2004-12-29 22:10:24 +00:00
errno.c Added code from libc instead of requiring newlib 2002-05-30 21:03:17 +00:00
file.c prepared to mount multiple partitions into one logical file system (most useful for Ondio, internal memory + external MMC) 2004-12-28 22:16:07 +00:00
memcmp.c added memcmp function to make rockbox compilable with latest gcc versions without using libc 2002-09-16 21:01:06 +00:00
memcpy.c Revived C implementations of memcpy() and memset() for platforms without asm optimized versions (gmini), replacing the intermediate strings.c. Moved the asm optimized versions 'out of the way' for the implicit 'make' rules by renaming them to *_a.S (for assembler/alternative). 2005-01-21 22:43:02 +00:00
memcpy_a.S Revived C implementations of memcpy() and memset() for platforms without asm optimized versions (gmini), replacing the intermediate strings.c. Moved the asm optimized versions 'out of the way' for the implicit 'make' rules by renaming them to *_a.S (for assembler/alternative). 2005-01-21 22:43:02 +00:00
memset.c Revived C implementations of memcpy() and memset() for platforms without asm optimized versions (gmini), replacing the intermediate strings.c. Moved the asm optimized versions 'out of the way' for the implicit 'make' rules by renaming them to *_a.S (for assembler/alternative). 2005-01-21 22:43:02 +00:00
memset_a.S Revived C implementations of memcpy() and memset() for platforms without asm optimized versions (gmini), replacing the intermediate strings.c. Moved the asm optimized versions 'out of the way' for the implicit 'make' rules by renaming them to *_a.S (for assembler/alternative). 2005-01-21 22:43:02 +00:00
qsort.c Killed a few warnings 2002-06-07 14:09:05 +00:00
random.c Wrong typing caused a very skewed random number distribution 2004-11-06 23:33:07 +00:00
sprintf.c (v)snprintf() wrote past buffer end if string length was equal to buffer size 2004-04-22 21:19:33 +00:00
strcasecmp.c case insensitive string comparisons 2002-06-18 08:19:38 +00:00
strcat.c strcat() 2002-06-19 08:29:02 +00:00
strchr.c Added code from libc instead of requiring newlib 2002-05-30 21:03:17 +00:00
strcmp.c Added code from libc instead of requiring newlib 2002-05-30 21:03:17 +00:00
strcpy.c Fixed a warning when (experimentally) compiling with -Os 2004-07-27 19:51:05 +00:00
string.c Jean-Philippe Bernardy: C versions of memset() and memcpy() for archs with 2005-01-10 21:31:13 +00:00
strlen.c Assembler optimized strlen() for SH1, both smaller & faster. Moved strlen() into IRAM. 2005-01-22 13:18:33 +00:00
strlen_a.S Assembler optimized strlen() for SH1, both smaller & faster. Moved strlen() into IRAM. 2005-01-22 13:18:33 +00:00
strncmp.c Added code from libc instead of requiring newlib 2002-05-30 21:03:17 +00:00
strncpy.c Added code from libc instead of requiring newlib 2002-05-30 21:03:17 +00:00
strrchr.c Added code from libc instead of requiring newlib 2002-05-30 21:03:17 +00:00
strtok.c Remove use of rockbox-mode.el in local variables list. 2003-01-24 10:56:06 +00:00
timefuncs.c Const policed pointer arguments to functions, part 2 2004-08-17 01:45:48 +00:00