* Get integer (1B) array located at provided address using the specified * array size and endian (or default file endian) * * @param address Address to get integer array from * @param res Result integer array * @param size Integer array size (how many items are to be read) * @param e Endian - if specified it is forced, otherwise file's endian is used * * @return Status of operation (@c tru
| 724 | * @return Status of operation (@c true if all is OK, @c false otherwise) |
| 725 | */ |
| 726 | bool ByteValueStorage::get1ByteArray( |
| 727 | std::uint64_t address, |
| 728 | std::vector<std::uint64_t>& res, |
| 729 | std::size_t size, |
| 730 | Endianness e) const |
| 731 | { |
| 732 | return getXByteArray(address, 1, res, size, e); |
| 733 | } |
| 734 | |
| 735 | /** |
| 736 | * Get integer (2B) array located at provided address using the specified |
no outgoing calls