sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@internalTechnology
|
sl@0
|
19 |
|
sl@0
|
20 |
Gets a 32-bit integer value which is in big-endian format from a byte stream.
|
sl@0
|
21 |
|
sl@0
|
22 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
23 |
@return A 32-bit long integer value in native machine format.
|
sl@0
|
24 |
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
inline TUint32 BigEndian::Get32(const TUint8 *aPtr)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
return (aPtr[0]<<24) | (aPtr[1]<<16) | (aPtr[2]<<8) | aPtr[3];
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
Inserts a 32-bit value into a byte stream in big-endian format.
|
sl@0
|
33 |
|
sl@0
|
34 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
35 |
@param aVal A 32-bit long integer value in native machine format.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
inline void BigEndian::Put32(TUint8 *aPtr, TUint32 aVal)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
aPtr[0] = aVal >> 24;
|
sl@0
|
40 |
aPtr[1] = (aVal >> 16) & 0xff;
|
sl@0
|
41 |
aPtr[2] = (aVal >> 8) & 0xff;
|
sl@0
|
42 |
aPtr[3] = aVal & 0xff;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
Gets a 16-bit value integer which is in big-endian format from a byte stream.
|
sl@0
|
46 |
|
sl@0
|
47 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
48 |
@return A 16-bit long integer value in native machine format.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
inline TUint16 BigEndian::Get16(const TUint8 *aPtr)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
return (aPtr[0]<<8) | aPtr[1];
|
sl@0
|
53 |
}
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
Inserts a 16-bit value into a byte stream in big-endian format.
|
sl@0
|
56 |
|
sl@0
|
57 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
58 |
@param aVal A 16-bit long integer value in native machine format.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
inline void BigEndian::Put16(TUint8 *aPtr, TUint16 aVal)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
aPtr[0] = aVal >> 8;
|
sl@0
|
63 |
aPtr[1] = aVal & 0xff;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
Gets a 32-bit integer value which is in little-endian format from a byte
|
sl@0
|
70 |
stream.
|
sl@0
|
71 |
|
sl@0
|
72 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
73 |
@return A 32-bit long integer value in native machine format.
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
inline TUint32 LittleEndian::Get32(const TUint8 *aPtr)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
return (aPtr[3]<<24) | (aPtr[2]<<16) | (aPtr[1]<<8) | aPtr[0];
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
Inserts a 32-bit value into a byte stream in little-endian format.
|
sl@0
|
82 |
|
sl@0
|
83 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
84 |
@param aVal A 32-bit long integer value in native machine format.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
inline void LittleEndian::Put32(TUint8 *aPtr, TUint32 aVal)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
aPtr[3] = aVal >> 24;
|
sl@0
|
89 |
aPtr[2] = (aVal >> 16) & 0xff;
|
sl@0
|
90 |
aPtr[1] = (aVal >> 8) & 0xff;
|
sl@0
|
91 |
aPtr[0] = aVal & 0xff;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
Gets a 16-bit value integer which is in little-endian format from a byte
|
sl@0
|
95 |
stream.
|
sl@0
|
96 |
|
sl@0
|
97 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
98 |
@return A 16-bit long integer value in native machine format.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
inline TUint16 LittleEndian::Get16(const TUint8 *aPtr)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
return (aPtr[1]<<8) | aPtr[0];
|
sl@0
|
103 |
}
|
sl@0
|
104 |
/**
|
sl@0
|
105 |
Inserts a 16-bit value into a byte stream in little-endian format.
|
sl@0
|
106 |
|
sl@0
|
107 |
@param aPtr A pointer to a byte stream.
|
sl@0
|
108 |
@param aVal A 16-bit long integer value in native machine format.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
inline void LittleEndian::Put16(TUint8 *aPtr, TUint16 aVal)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
aPtr[1] = aVal >> 8;
|
sl@0
|
113 |
aPtr[0] = aVal & 0xff;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
|
sl@0
|
117 |
|