Lines Matching refs:fence
270 …k::C2ConstLinearBlock(std::shared_ptr<Impl> impl, const _C2LinearRangeAspect &range, C2Fence fence) in C2ConstLinearBlock() argument
271 : C2Block1D(impl, range), mFence(fence) { } in C2ConstLinearBlock()
322 C2ConstLinearBlock C2LinearBlock::share(size_t offset_, size_t size_, C2Fence fence) { in share() argument
323 return ConstLinearBlockBuddy(mImpl, C2LinearRange(*this, offset_, size_), fence); in share()
846 Mapped(const std::shared_ptr<_C2Block2DImpl> &impl, bool writable, C2Fence *fence __unused) in Mapped()
928 std::shared_ptr<Mapped> map(bool writable, C2Fence *fence) { in map() argument
932 existing = std::shared_ptr<Mapped>(new Mapped(shared_from_this(), writable, fence)); in map()
939 if (fence != nullptr) { in map()
940 *fence = C2Fence(); in map()
1032 std::shared_ptr<Impl> impl, const _C2PlanarSectionAspect §ion, C2Fence fence) in C2ConstGraphicBlock() argument
1033 : C2Block2D(impl, section), mFence(fence) { } in C2ConstGraphicBlock()
1036 C2Fence fence; in map() local
1038 mImpl->map(false /* writable */, &fence); in map()
1042 mapping->error(), fence, GraphicViewBuddy(gvi, C2PlanarSection(*mImpl, crop()))); in map()
1057 C2Fence fence; in map() local
1059 mImpl->map(true /* writable */, &fence); in map()
1063 mapping->error(), fence, GraphicViewBuddy(gvi, C2PlanarSection(*mImpl, crop()))); in map()
1066 C2ConstGraphicBlock C2GraphicBlock::share(const C2Rect &crop, C2Fence fence) { in share() argument
1067 return ConstGraphicBlockBuddy(mImpl, C2PlanarSection(*mImpl, crop), fence); in share()