|
| template<typename ValueType > |
| ValueType | fetch_LE (const void *address) |
| |
| template<typename ValueType > |
| ValueType | fetch_BE (const void *address) |
| |
| template<typename ValueType > |
| ValueType | fetch_ (const void *address, bool is_big_endian=false) |
| |
| template<typename ValueType > |
| ValueType | fetch__native (const void *address) |
| |
| template<typename ValueType > |
| void | store_LE (const ValueType value, void *address) |
| |
| template<typename ValueType > |
| void | store_BE (const ValueType value, void *address) |
| |
| template<typename ValueType > |
| void | store (const ValueType value, void *address, bool is_big_endian=false) |
| |
| template<typename ValueType > |
| void | store_native (const ValueType value, void *address) |
| |
| template<typename ValueType > |
| ValueType | fetch_LE (const void *data, size_t i) |
| | fetch value in little-endian format from offset i from data More...
|
| |
| template<typename ValueType > |
| ValueType | fetch_BE (const void *data, size_t i) |
| | fetch value in big-endian format from offset i from data More...
|
| |
| template<typename ValueType > |
| ValueType | fetch (const void *data, size_t i, bool is_big_endian=false) |
| | fetch value in format is_big_endian from offset i from data More...
|
| |
| template<typename ValueType > |
| ValueType | fetch_native (const void *data, size_t i) |
| | fetch value in native format from offset i from data More...
|
| |
| template<typename ValueType > |
| void | store_LE (const ValueType value, void *data, size_t i) |
| | store value in little-endian format at offset i from data More...
|
| |
| template<typename ValueType > |
| void | store_BE (const ValueType value, void *data, size_t i) |
| | store value in big-endian format at offset i from data More...
|
| |
| template<typename ValueType > |
| void | store (const ValueType value, void *data, size_t i, bool is_big_endian=false) |
| | store value in format is_big_endian at offset i from data More...
|
| |
| template<typename ValueType > |
| void | store_native (const ValueType value, void *data, size_t i) |
| | store value in native format at offset i from data More...
|
| |