Lines Matching refs:blocks
1129 explicit Impl(const std::vector<C2ConstLinearBlock> &blocks) in Impl() argument
1130 : mType(blocks.size() == 1 ? LINEAR : LINEAR_CHUNKS), in Impl()
1131 mLinearBlocks(blocks) { in Impl()
1134 explicit Impl(const std::vector<C2ConstGraphicBlock> &blocks) in Impl() argument
1135 : mType(blocks.size() == 1 ? GRAPHIC : GRAPHIC_CHUNKS), in Impl()
1136 mGraphicBlocks(blocks) { in Impl()
1149 C2BufferData::C2BufferData(const std::vector<C2ConstLinearBlock> &blocks) : mImpl(new Impl(blocks))… in C2BufferData() argument
1150 C2BufferData::C2BufferData(const std::vector<C2ConstGraphicBlock> &blocks) : mImpl(new Impl(blocks)… in C2BufferData() argument
1164 Impl(C2Buffer *thiz, const std::vector<C2ConstLinearBlock> &blocks) in Impl() argument
1165 : mThis(thiz), mData(blocks) {} in Impl()
1166 Impl(C2Buffer *thiz, const std::vector<C2ConstGraphicBlock> &blocks) in Impl() argument
1167 : mThis(thiz), mData(blocks) {} in Impl()
1247 C2Buffer::C2Buffer(const std::vector<C2ConstLinearBlock> &blocks) in C2Buffer() argument
1248 : mImpl(new Impl(this, blocks)) {} in C2Buffer()
1250 C2Buffer::C2Buffer(const std::vector<C2ConstGraphicBlock> &blocks) in C2Buffer() argument
1251 : mImpl(new Impl(this, blocks)) {} in C2Buffer()