Home
last modified time | relevance | path

Searched refs:map_vec (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tools/j2s4b/src/j2s4b/
H A DBinRecord.cpp28 map_vec.insert(map_vec.end(), (uint8_t *)&tmap, in collectBinMap()
52 if (buffer_size < block_vec.size() + map_vec.size()) { in genBinary()
58 size_t map_len = map_vec.size() / sizeof(map_index_t); in genBinary()
59 size_t file_size = (block_vec.size() + map_vec.size() + sizeof(size_t) * 2); in genBinary()
62 memcpy((uint8_t*)buffer + block_vec.size(), &map_vec[0], map_vec.size()); in genBinary()
63 memcpy((uint8_t*)buffer + block_vec.size() + map_vec.size(), &map_offset, in genBinary()
65 memcpy((uint8_t*)buffer + block_vec.size() + map_vec.size() + sizeof(size_t), in genBinary()
70 map_vec.size()); in genBinary()
81 (map_index_t *)&map_vec[curr_index * sizeof(map_index_t)]; in dumpMap()
211 (map_index_t *)&map_vec[curr_index * sizeof(map_index_t)]; in suqeezBinMapOne()
[all …]
H A DBinRecord.hpp59 std::vector<uint8_t> map_vec; member in BinMapLoader