summaryrefslogtreecommitdiffstats
path: root/registry/source/reflcnst.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'registry/source/reflcnst.hxx')
-rw-r--r--registry/source/reflcnst.hxx40
1 files changed, 20 insertions, 20 deletions
diff --git a/registry/source/reflcnst.hxx b/registry/source/reflcnst.hxx
index 9bb560a47325..a0ee421d5089 100644
--- a/registry/source/reflcnst.hxx
+++ b/registry/source/reflcnst.hxx
@@ -108,16 +108,16 @@ inline sal_uInt32 writeBYTE(sal_uInt8* buffer, sal_uInt8 v)
inline sal_uInt32 writeINT16(sal_uInt8* buffer, sal_Int16 v)
{
- buffer[0] = (sal_uInt8)((v >> 8) & 0xFF);
- buffer[1] = (sal_uInt8)((v >> 0) & 0xFF);
+ buffer[0] = static_cast<sal_uInt8>((v >> 8) & 0xFF);
+ buffer[1] = static_cast<sal_uInt8>((v >> 0) & 0xFF);
return sizeof(sal_Int16);
}
inline sal_uInt32 writeUINT16(sal_uInt8* buffer, sal_uInt16 v)
{
- buffer[0] = (sal_uInt8)((v >> 8) & 0xFF);
- buffer[1] = (sal_uInt8)((v >> 0) & 0xFF);
+ buffer[0] = static_cast<sal_uInt8>((v >> 8) & 0xFF);
+ buffer[1] = static_cast<sal_uInt8>((v >> 0) & 0xFF);
return sizeof(sal_uInt16);
}
@@ -135,10 +135,10 @@ inline sal_uInt32 readUINT16(const sal_uInt8* buffer, sal_uInt16& v)
inline sal_uInt32 writeINT32(sal_uInt8* buffer, sal_Int32 v)
{
- buffer[0] = (sal_uInt8)((v >> 24) & 0xFF);
- buffer[1] = (sal_uInt8)((v >> 16) & 0xFF);
- buffer[2] = (sal_uInt8)((v >> 8) & 0xFF);
- buffer[3] = (sal_uInt8)((v >> 0) & 0xFF);
+ buffer[0] = static_cast<sal_uInt8>((v >> 24) & 0xFF);
+ buffer[1] = static_cast<sal_uInt8>((v >> 16) & 0xFF);
+ buffer[2] = static_cast<sal_uInt8>((v >> 8) & 0xFF);
+ buffer[3] = static_cast<sal_uInt8>((v >> 0) & 0xFF);
return sizeof(sal_Int32);
}
@@ -157,10 +157,10 @@ inline sal_uInt32 readINT32(const sal_uInt8* buffer, sal_Int32& v)
inline sal_uInt32 writeUINT32(sal_uInt8* buffer, sal_uInt32 v)
{
- buffer[0] = (sal_uInt8)((v >> 24) & 0xFF);
- buffer[1] = (sal_uInt8)((v >> 16) & 0xFF);
- buffer[2] = (sal_uInt8)((v >> 8) & 0xFF);
- buffer[3] = (sal_uInt8)((v >> 0) & 0xFF);
+ buffer[0] = static_cast<sal_uInt8>((v >> 24) & 0xFF);
+ buffer[1] = static_cast<sal_uInt8>((v >> 16) & 0xFF);
+ buffer[2] = static_cast<sal_uInt8>((v >> 8) & 0xFF);
+ buffer[3] = static_cast<sal_uInt8>((v >> 0) & 0xFF);
return sizeof(sal_uInt32);
}
@@ -180,14 +180,14 @@ inline sal_uInt32 readUINT32(const sal_uInt8* buffer, sal_uInt32& v)
inline sal_uInt32 writeUINT64(sal_uInt8* buffer, sal_uInt64 v)
{
- buffer[0] = (sal_uInt8)((v >> 56) & 0xFF);
- buffer[1] = (sal_uInt8)((v >> 48) & 0xFF);
- buffer[2] = (sal_uInt8)((v >> 40) & 0xFF);
- buffer[3] = (sal_uInt8)((v >> 32) & 0xFF);
- buffer[4] = (sal_uInt8)((v >> 24) & 0xFF);
- buffer[5] = (sal_uInt8)((v >> 16) & 0xFF);
- buffer[6] = (sal_uInt8)((v >> 8) & 0xFF);
- buffer[7] = (sal_uInt8)((v >> 0) & 0xFF);
+ buffer[0] = static_cast<sal_uInt8>((v >> 56) & 0xFF);
+ buffer[1] = static_cast<sal_uInt8>((v >> 48) & 0xFF);
+ buffer[2] = static_cast<sal_uInt8>((v >> 40) & 0xFF);
+ buffer[3] = static_cast<sal_uInt8>((v >> 32) & 0xFF);
+ buffer[4] = static_cast<sal_uInt8>((v >> 24) & 0xFF);
+ buffer[5] = static_cast<sal_uInt8>((v >> 16) & 0xFF);
+ buffer[6] = static_cast<sal_uInt8>((v >> 8) & 0xFF);
+ buffer[7] = static_cast<sal_uInt8>((v >> 0) & 0xFF);
return sizeof(sal_uInt64);
}