Lines Matching refs:blocks
1141 explicit Impl(const std::vector<C2ConstLinearBlock> &blocks) in Impl() argument
1142 : mType(blocks.size() == 1 ? LINEAR : LINEAR_CHUNKS), in Impl()
1143 mLinearBlocks(blocks) { in Impl()
1146 explicit Impl(const std::vector<C2ConstGraphicBlock> &blocks) in Impl() argument
1147 : mType(blocks.size() == 1 ? GRAPHIC : GRAPHIC_CHUNKS), in Impl()
1148 mGraphicBlocks(blocks) { in Impl()
1161 C2BufferData::C2BufferData(const std::vector<C2ConstLinearBlock> &blocks) : mImpl(new Impl(blocks))… in C2BufferData() argument
1162 C2BufferData::C2BufferData(const std::vector<C2ConstGraphicBlock> &blocks) : mImpl(new Impl(blocks)… in C2BufferData() argument
1176 Impl(C2Buffer *thiz, const std::vector<C2ConstLinearBlock> &blocks) in Impl() argument
1177 : mThis(thiz), mData(blocks) {} in Impl()
1178 Impl(C2Buffer *thiz, const std::vector<C2ConstGraphicBlock> &blocks) in Impl() argument
1179 : mThis(thiz), mData(blocks) {} in Impl()
1259 C2Buffer::C2Buffer(const std::vector<C2ConstLinearBlock> &blocks) in C2Buffer() argument
1260 : mImpl(new Impl(this, blocks)) {} in C2Buffer()
1262 C2Buffer::C2Buffer(const std::vector<C2ConstGraphicBlock> &blocks) in C2Buffer() argument
1263 : mImpl(new Impl(this, blocks)) {} in C2Buffer()