Lines Matching refs:Alloc

87      typedef Alloc allocator_type;
89 typedef Alloc Allocator;
91 typedef typename Alloc::template rebind<PIXELTYPE *>::other LineAllocator;
111 - BasicImage(int width, int height, Alloc const & alloc = Alloc())
112 + BasicImage(int w, int h, Alloc const & alloc = Alloc())
135 - explicit BasicImage(difference_type const & size, Alloc const & alloc = Alloc())
136 + explicit BasicImage(difference_type const & sz, Alloc const & alloc = Alloc())
164 - BasicImage(int width, int height, value_type const & d, Alloc const & alloc = Alloc())
165 + BasicImage(int w, int h, value_type const & d, Alloc const & alloc = Alloc())
190 …licit BasicImage(difference_type const & size, value_type const & d, Alloc const & alloc = Alloc())
191 …xplicit BasicImage(difference_type const & sz, value_type const & d, Alloc const & alloc = Alloc())
218 - BasicImage(int width, int height, const_pointer d, Alloc const & alloc = Alloc())
219 + BasicImage(int w, int h, const_pointer d, Alloc const & alloc = Alloc())
243 - explicit BasicImage(difference_type const & size, const_pointer d, Alloc const & alloc = Alloc
244 + explicit BasicImage(difference_type const & sz, const_pointer d, Alloc const & alloc = Alloc())
310 @@ -1066,30 +1098,30 @@ BasicImage<PIXELTYPE, Alloc>::init(value
312 template <class PIXELTYPE, class Alloc>
314 -BasicImage<PIXELTYPE, Alloc>::resize(int width, int height, value_type const & d)
315 +BasicImage<PIXELTYPE, Alloc>::resize(int w, int h, value_type const & d)
334 - newdata = allocator_.allocate(typename Alloc::size_type(width*height));
337 + newdata = allocator_.allocate(typename Alloc::size_type(w*h));
349 pallocator_.deallocate(lines_, typename Alloc::size_type(height_));
352 @@ -1100,22 +1132,22 @@ BasicImage<PIXELTYPE, Alloc>::resize(int
370 template <class PIXELTYPE, class Alloc>
372 -BasicImage<PIXELTYPE, Alloc>::resizeCopy(int width, int height, const_pointer data)
373 +BasicImage<PIXELTYPE, Alloc>::resizeCopy(int w, int h, const_pointer src_data)
382 @@ -1124,15 +1156,15 @@ BasicImage<PIXELTYPE, Alloc>::resizeCopy
385 newdata = allocator_.allocate(typename Alloc::size_type(newsize));
399 pallocator_.deallocate(lines_, typename Alloc::size_type(height_));
402 @@ -1143,12 +1175,12 @@ BasicImage<PIXELTYPE, Alloc>::resizeCopy
418 @@ -1183,11 +1215,11 @@ BasicImage<PIXELTYPE, Alloc>::deallocate
420 template <class PIXELTYPE, class Alloc>
422 -BasicImage<PIXELTYPE, Alloc>::initLineStartArray(value_type * data, int width, int height)
423 +BasicImage<PIXELTYPE, Alloc>::initLineStartArray(value_type * src_data, int w, int h)
425 - value_type ** lines = pallocator_.allocate(typename Alloc::size_type(height));
428 + value_type ** lines = pallocator_.allocate(typename Alloc::size_type(h));
705 class Alloc = typename ImageType::allocator_type::template rebind<ImageType>::other >
707 + class Alloc = std::allocator<ImageType> >
710 : public ImageArray<ImageType, Alloc>