Searched refs:less_than_zero (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/boost/safe_numerics/ |
D | checked_result_operations.hpp | 247 less_than_zero, enumerator 264 ? less_than_zero in to_flag() 317 value_type::less_than_zero, // greater_than_zero, in operator *() 335 value_type::less_than_zero, // less_than_zero, in operator *() 371 case value_type::less_than_zero: in operator *() 412 value_type::less_than_zero, // greater_than_zero, in operator /() 430 value_type::less_than_zero, // less_than_zero, in operator /() 466 case value_type::less_than_zero: in operator /() 507 value_type::less_than_zero, // greater_than_zero, in operator %() 525 value_type::less_than_zero, // less_than_zero, in operator %() [all …]
|
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/meta/ |
D | shard_column.cc | 206 bool less_than_zero = false; in GetInt() local 211 less_than_zero = true; in GetInt() 219 less_than_zero = true; in GetInt() 232 if ((less_than_zero && temp_value < static_cast<int64_t>(std::numeric_limits<T>::min())) || in GetInt() 233 …(!less_than_zero && static_cast<uint64_t>(temp_value) > static_cast<uint64_t>(std::numeric_limits<… in GetInt()
|
/third_party/mindspore/mindspore/nn/probability/distribution/ |
D | bernoulli.py | 277 less_than_zero = self.select(comp_zero, zeros, probs0) 278 return self.select(comp_one, less_than_zero, ones)
|
D | categorical.py | 362 less_than_zero = self.squeeze_last_axis(self.less(value, 0.0)) 373 cdf = self.select(less_than_zero, zeros, cdf)
|