1 | /* $Id: memset.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - CRT Strings, memset().
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #include <iprt/string.h>
|
---|
23 |
|
---|
24 |
|
---|
25 | /**
|
---|
26 | * Fill a memory block with specific byte.
|
---|
27 | *
|
---|
28 | * @returns pvDst.
|
---|
29 | * @param pvDst Pointer to the block.
|
---|
30 | * @param ch The filler char.
|
---|
31 | * @param cb The size of the block.
|
---|
32 | */
|
---|
33 | #ifdef _MSC_VER
|
---|
34 | # if _MSC_VER >= 1400
|
---|
35 | void * __cdecl memset(__out_bcount_full_opt(_Size) void *pvDst, __in int ch, __in size_t cb)
|
---|
36 | # else
|
---|
37 | void *memset(void *pvDst, int ch, size_t cb)
|
---|
38 | # endif
|
---|
39 | #else
|
---|
40 | void *memset(void *pvDst, int ch, size_t cb)
|
---|
41 | #endif
|
---|
42 | {
|
---|
43 | register union
|
---|
44 | {
|
---|
45 | uint8_t *pu8;
|
---|
46 | uint32_t *pu32;
|
---|
47 | void *pvDst;
|
---|
48 | } u;
|
---|
49 | u.pvDst = pvDst;
|
---|
50 |
|
---|
51 | /* 32-bit word moves. */
|
---|
52 | register uint32_t u32 = ch | (ch << 8);
|
---|
53 | u32 |= u32 << 16;
|
---|
54 | register size_t c = cb >> 2;
|
---|
55 | while (c-- > 0)
|
---|
56 | *u.pu32++ = u32;
|
---|
57 |
|
---|
58 | /* Remaining byte moves. */
|
---|
59 | c = cb & 3;
|
---|
60 | while (c-- > 0)
|
---|
61 | *u.pu8++ = (uint8_t)u32;
|
---|
62 |
|
---|
63 | return pvDst;
|
---|
64 | }
|
---|
65 |
|
---|