Lines Matching refs:Bytes

142     auto Bytes = dumpIndex(Dict);  in serialize()  local
143 return {Dict, Bytes}; in serialize()
185 std::vector<uint8_t> Bytes; in dumpIndex() local
186 Bytes.reserve(250'000); in dumpIndex()
188 Bytes.push_back(0); in dumpIndex()
201 const std::size_t Offset = Bytes.size(); in dumpIndex()
212 Bytes.push_back(FirstByte); in dumpIndex()
216 Bytes.push_back(FirstByte); in dumpIndex()
221 Bytes.push_back(High); in dumpIndex()
222 Bytes.push_back(Low); in dumpIndex()
235 Bytes.push_back(H); in dumpIndex()
236 Bytes.push_back(M); in dumpIndex()
237 Bytes.push_back(L); in dumpIndex()
241 ChildrenOffset{N->Children[0].get(), Bytes.size(), true}); in dumpIndex()
243 Bytes.push_back(0x00); in dumpIndex()
244 Bytes.push_back(0x00); in dumpIndex()
245 Bytes.push_back(0x00); in dumpIndex()
255 Bytes.push_back(Byte); in dumpIndex()
258 ChildrenOffset{N->Children[0].get(), Bytes.size() - 1, false}); in dumpIndex()
259 Bytes.push_back(0x00); in dumpIndex()
260 Bytes.push_back(0x00); in dumpIndex()
274 Bytes[Parent.Offset] = ((Pos >> 16) & 0xFF); in dumpIndex()
276 Bytes[Parent.Offset] = in dumpIndex()
277 Bytes[Parent.Offset] | uint8_t((Pos >> 16) & 0xFF); in dumpIndex()
279 Bytes[Parent.Offset + 1] = ((Pos >> 8) & 0xFF); in dumpIndex()
280 Bytes[Parent.Offset + 2] = Pos & 0xFF; in dumpIndex()
285 Bytes.push_back(0); in dumpIndex()
286 Bytes.push_back(0); in dumpIndex()
287 Bytes.push_back(0); in dumpIndex()
288 Bytes.push_back(0); in dumpIndex()
289 Bytes.push_back(0); in dumpIndex()
290 Bytes.push_back(0); in dumpIndex()
292 return Bytes; in dumpIndex()