Lines Matching defs:dst
69 char* dst = reinterpret_cast<char*>(handle->virAddr);
71 ifs.read(dst, pixelInfo.alignedWidth * BYTES_PER_PIXEL_YUV);
72 dst += handle->stride;
76 ifs.read(dst, pixelInfo.alignedWidth * BYTES_PER_PIXEL_YUV);
89 dst = reinterpret_cast<char*>(handle->virAddr) + uvOffset;
91 ifs.read(dst, pixelInfo.alignedWidth * BYTES_PER_PIXEL_YUV);
92 dst += handle->stride;
100 char* dst = reinterpret_cast<char*>(handle->virAddr);
102 ifs.read(dst, pixelInfo.alignedWidth * BYTES_PER_PIXEL_RBGA);
103 dst += handle->stride;
248 bool ByteWriter::Finalize(std::vector<uint8_t>& dst)
250 dst.clear();
251 dst.resize(totalSize_);
252 return CopyDataTo(reinterpret_cast<uint8_t*>(dst.data()));