2006-02-22 01:20:45 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 by Jens Arnold
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-02-22 01:20:45 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-08-12 13:55:01 +00:00
|
|
|
#include "string-extra.h" /* memset16() */
|
2017-01-15 23:10:38 +00:00
|
|
|
#include <stdint.h>
|
2009-03-22 15:40:40 +00:00
|
|
|
|
2006-02-22 01:20:45 +00:00
|
|
|
#define LBLOCKSIZE (sizeof(long)/2)
|
2017-01-15 23:10:38 +00:00
|
|
|
#define ROCKBOX_UNALIGNED(X) ((uintptr_t)X & (sizeof(long) - 1))
|
2006-02-22 01:20:45 +00:00
|
|
|
#define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
|
|
|
|
|
2006-09-07 00:16:04 +00:00
|
|
|
void memset16(void *dst, int val, size_t len)
|
2006-02-22 01:20:45 +00:00
|
|
|
{
|
|
|
|
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
|
|
|
|
unsigned short *p = (unsigned short *)dst;
|
|
|
|
|
|
|
|
while (len--)
|
|
|
|
*p++ = val;
|
|
|
|
#else
|
|
|
|
unsigned short *p = (unsigned short *)dst;
|
|
|
|
unsigned int i;
|
|
|
|
unsigned long buffer;
|
|
|
|
unsigned long *aligned_addr;
|
|
|
|
|
2017-01-15 12:29:40 +00:00
|
|
|
if (!TOO_SMALL(len) && !ROCKBOX_UNALIGNED(dst))
|
2006-02-22 01:20:45 +00:00
|
|
|
{
|
|
|
|
aligned_addr = (unsigned long *)dst;
|
|
|
|
|
|
|
|
val &= 0xffff;
|
|
|
|
if (LBLOCKSIZE == 2)
|
|
|
|
{
|
|
|
|
buffer = (val << 16) | val;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buffer = 0;
|
|
|
|
for (i = 0; i < LBLOCKSIZE; i++)
|
2010-01-03 11:31:14 +00:00
|
|
|
buffer = (buffer << 16) | val;
|
2006-02-22 01:20:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while (len >= LBLOCKSIZE*4)
|
|
|
|
{
|
|
|
|
*aligned_addr++ = buffer;
|
|
|
|
*aligned_addr++ = buffer;
|
|
|
|
*aligned_addr++ = buffer;
|
|
|
|
*aligned_addr++ = buffer;
|
|
|
|
len -= 4*LBLOCKSIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (len >= LBLOCKSIZE)
|
|
|
|
{
|
|
|
|
*aligned_addr++ = buffer;
|
|
|
|
len -= LBLOCKSIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = (unsigned short *)aligned_addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (len--)
|
|
|
|
*p++ = val;
|
|
|
|
#endif /* not PREFER_SIZE_OVER_SPEED */
|
|
|
|
}
|