/third_party/boost/libs/iostreams/test/ |
D | symmetric_filter_test.cpp | 40 bool filter( const char*& src_begin, const char* src_end, in filter() 43 while ( can_read(src_begin, src_end) || in filter() 46 if (can_read(src_begin, src_end)) in filter() 47 read(src_begin, src_end); in filter() 55 void read(const char*& src_begin, const char* src_end) in read() 58 (std::min) ( src_end - src_begin, in read() 62 *buf_.eptr()++ = std::toupper(*src_begin++); in read() 74 bool can_read(const char*& src_begin, const char* src_end) in can_read() 75 { return src_begin != src_end && buf_.eptr() != buf_.end(); } in can_read() 139 bool filter( const wchar_t*& src_begin, const wchar_t* src_end, in filter() [all …]
|
/third_party/boost/boost/iostreams/filter/ |
D | bzip2.hpp | 172 void before( const char*& src_begin, const char* src_end, 174 void after(const char*& src_begin, char*& dest_begin); 175 int check_end(const char* src_begin, const char* dest_begin); 206 bool filter( const char*& src_begin, const char* src_end, 325 ( const char*& src_begin, const char* src_end, in filter() argument 330 before(src_begin, src_end, dest_begin, dest_end); in filter() 332 after(src_begin, dest_begin); in filter() 365 ( const char*& src_begin, const char* src_end, in filter() argument 371 if(src_begin == src_end) in filter() 378 before(src_begin, src_end, dest_begin, dest_end); in filter() [all …]
|
D | zstd.hpp | 150 void before( const char*& src_begin, const char* src_end, 152 void after( const char*& src_begin, char*& dest_begin, 180 bool filter( const char*& src_begin, const char* src_end, 290 ( const char*& src_begin, const char* src_end, in filter() argument 293 before(src_begin, src_end, dest_begin, dest_end); in filter() 295 after(src_begin, dest_begin, true); in filter() 321 ( const char*& src_begin, const char* src_end, in filter() argument 324 before(src_begin, src_end, dest_begin, dest_end); in filter() 326 after(src_begin, dest_begin, false); in filter()
|
D | lzma.hpp | 163 void before( const char*& src_begin, const char* src_end, 165 void after( const char*& src_begin, char*& dest_begin, 191 bool filter( const char*& src_begin, const char* src_end, 301 ( const char*& src_begin, const char* src_end, in filter() argument 304 before(src_begin, src_end, dest_begin, dest_end); in filter() 306 after(src_begin, dest_begin, true); in filter() 333 ( const char*& src_begin, const char* src_end, in filter() argument 336 before(src_begin, src_end, dest_begin, dest_end); in filter() 338 after(src_begin, dest_begin, false); in filter()
|
D | zlib.hpp | 198 void before( const char*& src_begin, const char* src_end, 200 void after( const char*& src_begin, char*& dest_begin, 232 bool filter( const char*& src_begin, const char* src_end, 351 ( const char*& src_begin, const char* src_end, in filter() argument 354 before(src_begin, src_end, dest_begin, dest_end); in filter() 356 after(src_begin, dest_begin, true); in filter() 385 ( const char*& src_begin, const char* src_end, in filter() argument 388 before(src_begin, src_end, dest_begin, dest_end); in filter() 390 after(src_begin, dest_begin, false); in filter()
|
/third_party/boost/libs/iostreams/src/ |
D | bzip2.cpp | 85 void bzip2_base::before( const char*& src_begin, const char* src_end, in before() argument 89 s->next_in = const_cast<char*>(src_begin); in before() 90 s->avail_in = static_cast<unsigned>(src_end - src_begin); in before() 95 void bzip2_base::after(const char*& src_begin, char*& dest_begin) in after() argument 98 src_begin = const_cast<char*>(s->next_in); in after() 102 int bzip2_base::check_end(const char* src_begin, const char* dest_begin) in check_end() argument 105 if( src_begin == s->next_in && in check_end()
|
D | zlib.cpp | 100 void zlib_base::before( const char*& src_begin, const char* src_end, in before() argument 104 s->next_in = reinterpret_cast<zlib::byte*>(const_cast<char*>(src_begin)); in before() 105 s->avail_in = static_cast<zlib::uint>(src_end - src_begin); in before() 110 void zlib_base::after(const char*& src_begin, char*& dest_begin, bool compress) in after() argument 117 reinterpret_cast<const zlib::byte*>(src_begin) : in after() 122 static_cast<zlib::uint>(next_in - src_begin) : in after() 128 src_begin = next_in; in after()
|
D | lzma.cpp | 90 void lzma_base::before( const char*& src_begin, const char* src_end, in before() argument 94 s->next_in = reinterpret_cast<uint8_t*>(const_cast<char*>(src_begin)); in before() 95 s->avail_in = static_cast<size_t>(src_end - src_begin); in before() 100 void lzma_base::after(const char*& src_begin, char*& dest_begin, bool) in after() argument 103 src_begin = const_cast<const char*>(reinterpret_cast<const char*>(s->next_in)); in after()
|
D | zstd.cpp | 70 void zstd_base::before( const char*& src_begin, const char* src_end, in before() argument 75 in->src = src_begin; in before() 76 in->size = static_cast<size_t>(src_end - src_begin); in before() 83 void zstd_base::after(const char*& src_begin, char*& dest_begin, bool) in after() argument 87 src_begin = reinterpret_cast<const char*>(in->src) + in->pos; in after()
|
/third_party/boost/boost/gil/extension/numeric/ |
D | algorithm.hpp | 138 SrcIterator src_begin, in correlate_pixels_n() argument 157 while (src_begin != src_end) in correlate_pixels_n() 161 src_begin, in correlate_pixels_n() 162 src_begin + kernel_size, in correlate_pixels_n() 169 ++src_begin; in correlate_pixels_n() 186 SrcIterator src_begin, in correlate_pixels_k() argument 204 while (src_begin != src_end) in correlate_pixels_k() 208 src_begin, in correlate_pixels_k() 215 ++src_begin; in correlate_pixels_k()
|
D | convolve.hpp | 158 SrcIterator src_begin, in operator ()() argument 163 correlate_pixels_n<PixelAccum>(src_begin, src_end, kernel_begin, size_, dst_begin); in operator ()() 175 SrcIterator src_begin, in operator ()() 180 correlate_pixels_k<Size, PixelAccum>(src_begin, src_end, kernel_begin, dst_begin); in operator ()()
|
/third_party/boost/boost/graph/detail/ |
D | indexed_properties.hpp | 212 std::size_t src_begin, std::size_t src_end, std::size_t dest_begin) in move_range() argument 214 std::copy_backward(m_edge_properties.begin() + src_begin, in move_range() 216 m_edge_properties.begin() + dest_begin + (src_end - src_begin)); in move_range()
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/base/ |
D | carry_data.cc | 27 const std::vector<lite::Tensor *>::iterator &src_begin, in MoveData() argument 29 …for (auto dst_iter = dst_begin, src_iter = src_begin; dst_iter != dst_end; dst_iter++, src_iter++)… in MoveData()
|
D | carry_data.h | 37 const std::vector<lite::Tensor *>::iterator &src_begin,
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | function.h | 224 inline void Function::AddBasicBlocks(T src_begin, T src_end, iterator ip) { in AddBasicBlocks() argument 225 blocks_.insert(ip.Get(), std::make_move_iterator(src_begin), in AddBasicBlocks()
|
/third_party/spirv-tools/source/opt/ |
D | function.h | 221 inline void Function::AddBasicBlocks(T src_begin, T src_end, iterator ip) { in AddBasicBlocks() argument 222 blocks_.insert(ip.Get(), std::make_move_iterator(src_begin), in AddBasicBlocks()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | function.h | 224 inline void Function::AddBasicBlocks(T src_begin, T src_end, iterator ip) { in AddBasicBlocks() argument 225 blocks_.insert(ip.Get(), std::make_move_iterator(src_begin), in AddBasicBlocks()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | GCOV.h | 353 EdgeIterator src_begin() const { return SrcEdges.begin(); } in src_begin() function 356 return make_range(src_begin(), src_end()); in srcs()
|