Lines Matching refs:tmpVec
35 std::vector<int8_t> tmpVec;
36 tmpVec.push_back(type);
37 tmpVec.push_back(tag);
38 tmpVec.push_back((length >> BIT_SIZE) & 0xff);
39 tmpVec.push_back(length & 0xff);
40 tmpVec.push_back((offset >> TRIPLE_BIT_SIZE) & 0xff);
41 tmpVec.push_back((offset >> DOUBLE_BIT_SIZE) & 0xff);
42 tmpVec.push_back((offset >> BIT_SIZE) & 0xff);
43 tmpVec.push_back(offset & 0xff);
45 return std::string(tmpVec.begin(), tmpVec.end());