Lines Matching full:fill
47 // - fill
128 // fill the range [begin, end) with copies of value, return nothing.
132 // TODO: fill and fill_n should take forward and output iterators for
137 template<typename _T> static void fill(_T *begin, const _T *end,
147 template<typename _T> static void fill(_T *begin, const _T *end,
157 template<typename _T> void fill(_T *begin, _T *end, const _T& value)
160 __fill<is_scalar>::fill(begin, end, value);
164 inline void fill(unsigned char *begin, unsigned char *end,
174 inline void fill(signed char *begin, signed char *end, const signed char& value)
183 inline void fill(char *begin, char *end, const char& value)