EVOLUTION-MANAGER
Edit File: Defines.h
/* Copyright 2015 Esri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. A local copy of the license and additional notices are located with the source distribution at: http://github.com/Esri/lerc/ Contributors: Thomas Maurer Lucian Plesea */ #ifndef LERC_DEFINES_H #define LERC_DEFINES_H // For std::pair #include <utility> #include <cstddef> // This is useful when compiling within GDAL in DEBUG_BOOL mode, where a // MSVCPedanticBool class is used as an alias for the bool type, so as // to catch more easily int/bool misuses, even on Linux // Also for NULL_AS_NULLPTR mode where NULL is aliased to C++11 nullptr #if defined(DEBUG_BOOL) || defined(NULL_AS_NULLPTR) #include "cpl_port.h" #endif // Compatibility hack for non-C++11 compilers #if !(__cplusplus >= 201103L || _MSC_VER >= 1500) #define override #endif #define NAMESPACE_LERC_START namespace LercNS { #define NAMESPACE_LERC_END } #define USING_NAMESPACE_LERC using namespace LercNS; NAMESPACE_LERC_START typedef unsigned char Byte; // unsigned long pair sortable by first struct Quant : public std::pair<unsigned int, unsigned int> { // This is default behavior in C++14, but not before bool operator<(const Quant& other) const { return first < other.first; } }; #ifdef SWAPB // define this on big endian system #define LITTLE2LOCAL_ENDIAN_WORD(x) \ ( ((*((uint16_t *)(&x)) & 0xff00) >> 8) \ | ((*((uint16_t *)(&x)) & 0x00ff) << 8) ) #define LITTLE2LOCAL_ENDIAN_DWORD(x) \ ( ((*((uint32_t *)(&x)) & 0xff000000) >> 24) \ | ((*((uint32_t *)(&x)) & 0x00ff0000) >> 8) \ | ((*((uint32_t *)(&x)) & 0x0000ff00) << 8) \ | ((*((uint32_t *)(&x)) & 0x000000ff) << 24) ) #define LITTLE2LOCAL_ENDIAN_QWORD(x) \ ( ((*((uint64_t *)(&x)) & 0xff00000000000000) >> 56) \ | ((*((uint64_t *)(&x)) & 0x00ff000000000000) >> 40) \ | ((*((uint64_t *)(&x)) & 0x0000ff0000000000) >> 24) \ | ((*((uint64_t *)(&x)) & 0x000000ff00000000) >> 8) \ | ((*((uint64_t *)(&x)) & 0x00000000ff000000) << 8) \ | ((*((uint64_t *)(&x)) & 0x0000000000ff0000) << 24) \ | ((*((uint64_t *)(&x)) & 0x000000000000ff00) << 40) \ | ((*((uint64_t *)(&x)) & 0x00000000000000ff) << 56) ) #define SWAP_2(x) *((uint16_t *)&x) = LITTLE2LOCAL_ENDIAN_WORD(x) #define SWAP_4(x) *((uint32_t *)&x) = LITTLE2LOCAL_ENDIAN_DWORD(x) #define SWAP_8(x) *((uint64_t *)&x) = LITTLE2LOCAL_ENDIAN_QWORD(x) #else // SWAPB #define SWAP_2(x) #define SWAP_4(x) #define SWAP_8(x) #endif // SWAPB NAMESPACE_LERC_END #endif