/third_party/mindspore/mindspore/core/ir/ |
D | dtype.cc | 63 MS_EXCEPTION_IF_NULL(stop_); in DeepCopy() 65 auto copy = std::make_shared<Slice>(start_->DeepCopy(), stop_->DeepCopy(), step_->DeepCopy()); in DeepCopy() 76 MS_EXCEPTION_IF_NULL(stop_); in ToString() 80 buffer << stop_->ToString() << " : "; in ToString() 92 …return (*start_ == *other_slice.start_ && *stop_ == *other_slice.stop_ && *step_ == *other_slice.s… in operator ==()
|
D | value.cc | 213 MS_EXCEPTION_IF_NULL(stop_); in hash() 215 return hash_combine({tid(), start_->hash(), stop_->hash(), step_->hash()}); in hash() 229 MS_EXCEPTION_IF_NULL(stop_); in operator ==() 231 return (*start_ == *other.start_ && *stop_ == *other.stop_ && *step_ == *other.step_); in operator ==() 236 MS_EXCEPTION_IF_NULL(stop_); in ToString() 241 buffer << stop_->ToString() << " : "; in ToString()
|
D | dtype.h | 88 Slice() : Object(kObjectTypeSlice), start_(nullptr), stop_(nullptr), step_(nullptr) {} in Slice() 90 : Object(kObjectTypeSlice, false), start_(start), stop_(stop), step_(step) {} in Slice() 103 TypePtr get_stop() const { return stop_; } in get_stop() 108 TypePtr stop_; variable
|
D | value_extends.cc | 64 MS_EXCEPTION_IF_NULL(stop_); in ToAbstract() 67 abstract::AbstractBasePtr end = stop_->ToAbstract(); in ToAbstract()
|
D | value.h | 116 : start_(start), stop_(stop), step_(step) {} 128 ValuePtr stop() const { return stop_; } 133 ValuePtr stop_;
|
/third_party/cef/tests/cefclient/renderer/ |
D | performance_test_setup.h | 49 stop_.Now(); in Stop() 56 return start_.Delta(stop_); in Delta() 62 CefTime stop_; variable
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/include/dataset/ |
D | transforms.h | 83 Slice() : start_(0), stop_(0), step_(0) {} in Slice() 88 Slice(dsize_t start, dsize_t stop, dsize_t step) : start_(start), stop_(stop), step_(step) {} in Slice() 92 Slice(dsize_t start, dsize_t stop) : start_(start), stop_(stop), step_(1) {} in Slice() 95 explicit Slice(dsize_t stop) : start_(0), stop_(stop), step_(1) {} in Slice() 102 dsize_t stop_; variable
|
/third_party/boost/boost/spirit/home/classic/core/ |
D | parser.hpp | 177 IteratorT const& stop_ = IteratorT(), in parse_info() 181 : stop(stop_) in parse_info()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/core/ |
D | tensor_helpers.cc | 44 for (dsize_t i = slice_list[curr_ind].slice_.start_; i < slice_list[curr_ind].slice_.stop_; in IndexGeneratorHelper() 50 for (dsize_t j = slice_list[curr_ind].slice_.start_; j > slice_list[curr_ind].slice_.stop_; in IndexGeneratorHelper()
|
D | tensor.cc | 1027 slice_copy.stop_ = HandleNeg(slice_option.slice_.stop_, shape_[slice_index]); in GetSliceOption() 1029 slice_copy.stop_ = slice_copy.stop_ < 0 ? 0 : slice_copy.stop_; in GetSliceOption() 1032 slice_copy.stop_ = slice_copy.stop_ > max_idx ? max_idx : slice_copy.stop_; in GetSliceOption() 1087 …slice_len_ind = (converted_slice_objects[i].slice_.stop_ - converted_slice_objects[i].slice_.start… in Slice() 1089 if ((converted_slice_objects[i].slice_.stop_ - converted_slice_objects[i].slice_.start_) % in Slice()
|
/third_party/mindspore/mindspore/core/abstract/ |
D | abstract_value.cc | 437 MS_EXCEPTION_IF_NULL(stop_); in BuildType() 440 TypePtr stop = stop_->BuildType(); in BuildType() 449 return (*start_ == *other.start_ && *stop_ == *other.stop_ && *step_ == *other.step_); in operator ==() 465 MS_EXCEPTION_IF_NULL(stop_); in Clone() 468 AbstractBasePtr stop = stop_->Clone(); in Clone() 475 MS_EXCEPTION_IF_NULL(stop_); in Broaden() 478 AbstractBasePtr stop = stop_->Broaden(); in Broaden() 488 MS_EXCEPTION_IF_NULL(stop_); in ToString() 489 buffer << stop_->ToString() << " : "; in ToString() 498 MS_EXCEPTION_IF_NULL(stop_); in RealBuildValue() [all …]
|
D | abstract_value.h | 510 : start_(start), stop_(stop), step_(step) {} in AbstractSlice() 522 AbstractBasePtr stop() const { return stop_; } in stop() 530 AbstractBasePtr stop_; variable
|
/third_party/boost/libs/asio/example/cpp14/executors/ |
D | pipeline.cpp | 84 bool stop_ = false; member in queue_impl_base 119 impl_->stop_ = true; in stop() 142 while (impl_->queue_.empty() && !impl_->stop_) in pop()
|
/third_party/boost/doc/html/boost_asio/example/cpp11/executors/ |
D | pipeline.cpp | 101 bool stop_ = false; member in queue_impl_base 136 impl_->stop_ = true; in stop() 159 while (impl_->queue_.empty() && !impl_->stop_) in pop()
|
/third_party/boost/libs/asio/example/cpp11/executors/ |
D | pipeline.cpp | 101 bool stop_ = false; member in queue_impl_base 136 impl_->stop_ = true; in stop() 159 while (impl_->queue_.empty() && !impl_->stop_) in pop()
|
/third_party/boost/boost/spirit/home/classic/tree/ |
D | common.hpp | 1554 IteratorT stop_, in tree_parse_info() 1559 : stop(stop_) in tree_parse_info()
|
/third_party/boost/boost/icl/ |
D | interval_base_map.hpp | 1313 iterator stop_ = icl::is_empty(right_resid)? end_ : last_ ; in erase() local 1314 this->_map.erase(start_, stop_); //erase [start_, stop_) in erase()
|