VirtualBox

source: vbox/trunk/src/VBox/Runtime/string/memcpy.cpp@ 5285

Last change on this file since 5285 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1/* $Id: memcpy.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - CRT Strings, memcpy().
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 * Copies a memory.
27 *
28 * @returns pvDst.
29 * @param pvDst Pointer to the target block.
30 * @param pvSrc Pointer to the source block.
31 * @param cb The size of the block.
32 */
33#ifdef _MSC_VER
34# if _MSC_VER >= 1400
35_CRT_INSECURE_DEPRECATE_MEMORY(memcpy_s) void * __cdecl memcpy(__out_bcount_full_opt(_Size) void * pvDst, __in_bcount_opt(_Size) const void * pvSrc, __in size_t cb)
36# else
37void *memcpy(void *pvDst, const void *pvSrc, size_t cb)
38# endif
39#else
40void *memcpy(void *pvDst, const void *pvSrc, size_t cb)
41#endif
42{
43 register union
44 {
45 uint8_t *pu8;
46 uint32_t *pu32;
47 void *pv;
48 } uTrg;
49 uTrg.pv = pvDst;
50
51 register union
52 {
53 uint8_t const *pu8;
54 uint32_t const *pu32;
55 void const *pv;
56 } uSrc;
57 uSrc.pv = pvSrc;
58
59 /* 32-bit word moves. */
60 register size_t c = cb >> 2;
61 while (c-- > 0)
62 *uTrg.pu32++ = *uSrc.pu32++;
63
64 /* Remaining byte moves. */
65 c = cb & 3;
66 while (c-- > 0)
67 *uTrg.pu8++ = *uSrc.pu8++;
68
69 return pvDst;
70}
71
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette