Changeset 1715b7fe in mainline for boot/generic/src/memstr.c


Ignore:
Timestamp:
2013-03-25T19:42:07Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5c4356b
Parents:
2a08005
Message:

implement memcpy() and memset() using builtin functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/generic/src/memstr.c

    r2a08005 r1715b7fe  
    3535 * memory areas cannot overlap.
    3636 *
    37  * @param src           Source address to copy from.
    38  * @param dst           Destination address to copy to.
    39  * @param cnt           Number of bytes to copy.
     37 * @param src Source address to copy from.
     38 * @param dst Destination address to copy to.
     39 * @param cnt Number of bytes to copy.
    4040 *
    41  * @return              Destination address.
     41 * @return Destination address.
     42 *
    4243 */
    4344void *memcpy(void *dst, const void *src, size_t cnt)
    4445{
    45         size_t i;
     46        return __builtin_memcpy(dst, src, cnt);
     47}
    4648
    47         for (i = 0; i < cnt; i++)
    48                 ((uint8_t *) dst)[i] = ((uint8_t *) src)[i];
    49 
    50         return dst;
     49/** Fill block of memory.
     50 *
     51 * Fill cnt bytes at dst address with the value val.
     52 *
     53 * @param dst Destination address to fill.
     54 * @param val Value to fill.
     55 * @param cnt Number of bytes to fill.
     56 *
     57 * @return Destination address.
     58 *
     59 */
     60void *memset(void *dst, int val, size_t cnt)
     61{
     62        return __builtin_memset(dst, val, cnt);
    5163}
    5264
Note: See TracChangeset for help on using the changeset viewer.