/third_party/mindspore/mindspore/nn/probability/distribution/ |
D | uniform.py | 136 high=None, argument 144 param['param_dict'] = {'low': low, 'high': high} 151 self._high = self._add_parameter(high, 'high') 152 if self.low is not None and self.high is not None: 153 check_greater(self.low, self.high, 'low', 'high') 175 s = 'low = {}, high = {}'.format(self.low, self.high) 188 def high(self): member in Uniform 197 def _get_dist_args(self, low=None, high=None): argument 202 if high is not None: 203 self.checktensor(high, 'high') [all …]
|
/third_party/mbedtls/3rdparty/everest/library/kremlib/ |
D | FStar_UInt128_extracted.c | 22 return projectee.high; in FStar_UInt128___proj__Mkuint128__item__high() 38 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add() 46 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add_underspec() 53 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add_mod() 60 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub() 68 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub_underspec() 76 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub_mod_impl() 87 FStar_UInt128_uint128 flat = { a.low & b.low, a.high & b.high }; in FStar_UInt128_logand() 93 FStar_UInt128_uint128 flat = { a.low ^ b.low, a.high ^ b.high }; in FStar_UInt128_logxor() 99 FStar_UInt128_uint128 flat = { a.low | b.low, a.high | b.high }; in FStar_UInt128_logor() [all …]
|
/third_party/selinux/libsepol/src/ |
D | port_record.c | 10 int low, high; member 21 int low, high; member 29 int low, int high, int proto, in sepol_port_key_create() argument 42 tmp_key->high = high; in sepol_port_key_create() 51 int *low, int *high, int *proto) in sepol_port_key_unpack() argument 55 *high = key->high; in sepol_port_key_unpack() 66 (handle, port->low, port->high, port->proto, key_ptr) < 0) { in sepol_port_key_extract() 70 port->low, port->high); in sepol_port_key_extract() 87 (port->high == key->high) && (port->proto == key->proto)) in sepol_port_compare() 96 else if (port->high < key->high) in sepol_port_compare() [all …]
|
D | ibpkey_record.c | 17 int low, high; member 28 int low, high; member 100 int low, int high, in sepol_ibpkey_key_create() argument 115 tmp_key->high = high; in sepol_ibpkey_key_create() 126 subnet_prefix, low, high); in sepol_ibpkey_key_create() 132 uint64_t *subnet_prefix, int *low, int *high) in sepol_ibpkey_key_unpack() argument 136 *high = key->high; in sepol_ibpkey_key_unpack() 149 (handle, subnet_prefix_str, ibpkey->low, ibpkey->high, key_ptr) < 0) { in sepol_ibpkey_key_extract() 152 ibpkey->low, ibpkey->high); in sepol_ibpkey_key_extract() 179 if (ibpkey->high < key->high) in sepol_ibpkey_compare() [all …]
|
D | ports.c | 65 int high = sepol_port_get_high(data); in port_from_record() local 80 tmp_port->u.port.high_port = high; in port_from_record() 110 low, high, sepol_port_get_proto_str(proto)); in port_from_record() 121 int high = port->u.port.high_port; in port_to_record() local 136 sepol_port_set_range(tmp_record, low, high); in port_to_record() 150 "to record", low, high, sepol_port_get_proto_str(rec_proto)); in port_to_record() 183 int low, high, proto; in sepol_port_exists() local 185 sepol_port_key_unpack(key, &low, &high, &proto); in sepol_port_exists() 197 if (proto == proto2 && low2 == low && high2 == high) { in sepol_port_exists() 208 low, high, proto_str); in sepol_port_exists() [all …]
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuCompressedTexture.cpp | 431 inline deUint32 getBits (deUint64 src, int low, int high) in getBits() argument 433 const int numBits = (high-low) + 1; in getBits() 1355 inline deUint32 getBits128 (deUint64 low, deUint64 high, deUint32 first, deUint32 last) in getBits128() argument 1357 const deUint64 d[2] = { low, high }; in getBits128() 1389 const deUint32 data1 = (deUint32)(high & mask1); in getBits128() 1831 const deUint64 high = ((deUint64*)src)[1]; in decompressBc6H() local 1832 const deUint32 d = mode < 10 ? getBits128(low, high, 77, 81) : 0; in decompressBc6H() 1837 deUint64 colorIndexData = high >> (mode < 10 ? 18 : 1); in decompressBc6H() 1843 g[2] |= getBits128(low, high, 2, 2) << 4; in decompressBc6H() 1844 b[2] |= getBits128(low, high, 3, 3) << 4; in decompressBc6H() [all …]
|
/third_party/flatbuffers/ts/ |
D | long.ts | 1 export function createLong(low: number, high: number): Long { 2 return Long.create(low, high); 8 high: number property in Long 9 constructor(low: number, high: number) { 11 this.high = high | 0; 13 static create(low: number, high: number): Long { 15 return low == 0 && high == 0 ? Long.ZERO : new Long(low, high); 18 return (this.low >>> 0) + this.high * 0x100000000; 21 return this.low == other.low && this.high == other.high;
|
/third_party/ffmpeg/tests/ref/fate/ |
D | filter-metadata-ebur128 | 1 ….r128.I=-70.000|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 2 ….r128.I=-70.000|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 3 ….r128.I=-70.000|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 4 ….r128.I=-21.340|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 5 ….r128.I=-21.295|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 6 ….r128.I=-21.276|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 7 ….r128.I=-21.353|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 8 ….r128.I=-21.475|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 9 ….r128.I=-21.613|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 10 ….r128.I=-21.807|tag:lavfi.r128.LRA=0.000|tag:lavfi.r128.LRA.low=0.000|tag:lavfi.r128.LRA.high=0.000 [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | cfhddsp.c | 29 const int16_t *high, ptrdiff_t high_stride, in filter() argument 36 output[(2*0+0)*out_stride] = (tmp + high[0*high_stride]) >> 1; in filter() 41 output[(2*0+1)*out_stride] = (tmp - high[0*high_stride]) >> 1; in filter() 47 output[(2*i+0)*out_stride] = (tmp + low[i*low_stride] + high[i*high_stride]) >> 1; in filter() 52 output[(2*i+1)*out_stride] = (tmp + low[i*low_stride] - high[i*high_stride]) >> 1; in filter() 58 output[(2*i+0)*out_stride] = (tmp + high[i*high_stride]) >> 1; in filter() 63 output[(2*i+1)*out_stride] = (tmp - high[i*high_stride]) >> 1; in filter() 70 const int16_t *high, ptrdiff_t high_stride, in vert_filter() argument 74 filter(output, out_stride, low, low_stride, high, high_stride, height, 0); in vert_filter() 76 high++; in vert_filter() [all …]
|
D | cfhdencdsp.c | 29 int16_t *high, ptrdiff_t high_stride, in filter() argument 33 high[(0>>1) * high_stride] = av_clip_int16((5 * input[0*in_stride] - 11 * input[1*in_stride] + in filter() 39 … high[(i>>1) * high_stride] = av_clip_int16(((-input[(i-2)*in_stride] - input[(i-1)*in_stride] + in filter() 45 …high[((len-2)>>1) * high_stride] = av_clip_int16((11* input[((len-2)+0)*in_stride] - 5 * input[((l… in filter() 50 static void horiz_filter(int16_t *input, int16_t *low, int16_t *high, in horiz_filter() argument 56 filter(input, 1, low, 1, high, 1, width); in horiz_filter() 59 high += high_stride; in horiz_filter() 63 static void vert_filter(int16_t *input, int16_t *low, int16_t *high, in vert_filter() argument 69 filter(&input[i], in_stride, &low[i], low_stride, &high[i], high_stride, height); in vert_filter()
|
/third_party/boost/boost/polygon/ |
D | interval_concept.hpp | 129 typename interval_mutable_traits<IntervalType>::coordinate_type high) { in construct() argument 130 if (low > high) { in construct() 131 (std::swap)(low, high); in construct() 133 return interval_mutable_traits<IntervalType>::construct(low, high); in construct() 200 >::type high(const IntervalType& interval) { in high() function 231 >::type high(IntervalType& interval, in high() function 273 return value <= high(interval) && value >= low(interval); in contains() 275 return value < high(interval) && value > low(interval); in contains() 313 return (high(interval) + low(interval)) / 2; in center() 329 return static_cast<diff_type>(high(interval)) - in delta() [all …]
|
D | segment_concept.hpp | 154 Segment>::type construct(const Point1& low, const Point2& high) { in construct() argument 155 return segment_mutable_traits<Segment>::construct(low, high); in construct() 234 typename segment_point_type<Segment>::type>::type high(const Segment& segment) { in high() function 251 (x(high(segment)) + x(low(segment)))/2, in center() 252 (y(high(segment)) + y(low(segment)))/2); in center() 285 void>::type high(Segment& segment, const Point& point) { in high() function 310 int_x2 a1 = (int_x2)x(high(segment1)) - (int_x2)x(low(segment1)); in orientation() 311 int_x2 b1 = (int_x2)y(high(segment1)) - (int_x2)y(low(segment1)); in orientation() 312 int_x2 a2 = (int_x2)x(high(segment2)) - (int_x2)x(low(segment2)); in orientation() 313 int_x2 b2 = (int_x2)y(high(segment2)) - (int_x2)y(low(segment2)); in orientation() [all …]
|
D | interval_data.hpp | 32 interval_data(coordinate_type low, coordinate_type high) { in interval_data() argument 34 coords_[HIGH] = high; in interval_data() 71 coordinate_type high() const { in high() function in boost::polygon::interval_data 75 interval_data& high(coordinate_type value) { in high() function in boost::polygon::interval_data 81 return low() == that.low() && high() == that.high(); in operator ==() 85 return low() != that.low() || high() != that.high(); in operator !=()
|
/third_party/ffmpeg/libavcodec/arm/ |
D | vp56_arith.h | 45 unsigned shift = ff_vp56_norm_shift[c->high]; in vp56_rac_get_prob_armv6() 47 unsigned high = c->high << shift; in vp56_rac_get_prob_armv6() local 70 : "=&r"(c->high), "=&r"(c->code_word), "=&r"(bit), in vp56_rac_get_prob_armv6() 72 : "r"(high), "r"(pr), "r"(c->end - 1), in vp56_rac_get_prob_armv6() 82 unsigned shift = ff_vp56_norm_shift[c->high]; in vp56_rac_get_prob_branchy_armv6() 84 unsigned high = c->high << shift; in vp56_rac_get_prob_branchy_armv6() local 105 : "r"(high), "r"(pr), "r"(c->end - 1), "0"(shift) in vp56_rac_get_prob_branchy_armv6() 109 c->high = high - low; in vp56_rac_get_prob_branchy_armv6() 114 c->high = low; in vp56_rac_get_prob_branchy_armv6()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | opt_minmax.cpp | 58 minmax_range(ir_constant *low = NULL, ir_constant *high = NULL) in minmax_range() argument 61 this->high = high; in minmax_range() 70 ir_constant *high; member in __anon5b5985fd0111::minmax_range 293 if (!r0.high) { in combine_range() 294 ret.high = ismin ? r1.high : r0.high; in combine_range() 295 } else if (!r1.high) { in combine_range() 296 ret.high = ismin ? r0.high : r1.high; in combine_range() 298 ret.high = ismin ? smaller_constant(r0.high, r1.high) : in combine_range() 299 larger_constant(r0.high, r1.high); in combine_range() 320 if (!r0.high) in range_intersection() [all …]
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | CodedOutputStream.php | 108 $high = 0; 111 GPBUtil::divideInt64ToInt32($value, $high, $low, $trim); 116 while (($low >= 0x80 || $low < 0) || $high != 0) { 119 $carry = ($high & 0x7F) << ((PHP_INT_SIZE << 3) - 7); 120 $high = ($high >> 7) & ~(0x7F << ((PHP_INT_SIZE << 3) - 7)); 139 $high = 0; 142 GPBUtil::divideInt64ToInt32($value, $high, $low); 145 $high = ($value >> 32) & 0xFFFFFFFF; 152 $buffer[4] = chr($high & 0x000000FF); 153 $buffer[5] = chr(($high >> 8) & 0x000000FF); [all …]
|
/third_party/gettext/gnulib-local/lib/libxml/ |
D | chvalid.c | 200 int low, high, mid; in xmlCharInRange() local 209 high = rptr->nbShortRange - 1; in xmlCharInRange() 211 while (low <= high) { in xmlCharInRange() 212 mid = (low + high) / 2; in xmlCharInRange() 214 high = mid - 1; in xmlCharInRange() 216 if ((unsigned short) val > sptr[mid].high) { in xmlCharInRange() 228 high = rptr->nbLongRange - 1; in xmlCharInRange() 230 while (low <= high) { in xmlCharInRange() 231 mid = (low + high) / 2; in xmlCharInRange() 233 high = mid - 1; in xmlCharInRange() [all …]
|
/third_party/libxml2/ |
D | chvalid.c | 169 int low, high, mid; in xmlCharInRange() local 178 high = rptr->nbShortRange - 1; in xmlCharInRange() 180 while (low <= high) { in xmlCharInRange() 181 mid = (low + high) / 2; in xmlCharInRange() 183 high = mid - 1; in xmlCharInRange() 185 if ((unsigned short) val > sptr[mid].high) { in xmlCharInRange() 197 high = rptr->nbLongRange - 1; in xmlCharInRange() 199 while (low <= high) { in xmlCharInRange() 200 mid = (low + high) / 2; in xmlCharInRange() 202 high = mid - 1; in xmlCharInRange() [all …]
|
/third_party/pulseaudio/src/pulse/ |
D | gccmacro.h | 143 #define PA_CLAMP(x, low, high) \ argument 147 typeof(high) _high = (high); \ 151 #define PA_CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) argument 155 #define PA_CLAMP_UNLIKELY(x, low, high) \ argument 159 typeof(high) _high = (high); \ 163 #define PA_CLAMP_UNLIKELY(x, low, high) (PA_UNLIKELY((x) > (high)) ? (high) : (PA_UNLIKELY((x) < (l… argument
|
/third_party/icu/icu4c/source/data/translit/ |
D | my_my_FONIPA.txt | 44 $high = \u0301; 46 $coda = [$creaky $high $low ɴ ʔ ə]; # TODO: remove if unused 76 ၎င\u103Aး → lə\.ɡa $high ʊ\u032Fɴ; 84 င\u103Aး → ɪ $high ɴ; 88 ဉ\u103Aး → ɪ $high ɴ; 91 ည\u103Aး → ɛ $high; 94 ဏ\u103Aး → a $high ɴ; 98 န\u103Aး → a $high ɴ; 102 မ\u103Aး → a $high ɴ; 105 ယ\u103Aး → ɛ $high; [all …]
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | my_my_FONIPA.txt | 44 $high = \u0301; 46 $coda = [$creaky $high $low ɴ ʔ ə]; # TODO: remove if unused 76 ၎င\u103Aး → lə\.ɡa $high ʊ\u032Fɴ; 84 င\u103Aး → ɪ $high ɴ; 88 ဉ\u103Aး → ɪ $high ɴ; 91 ည\u103Aး → ɛ $high; 94 ဏ\u103Aး → a $high ɴ; 98 န\u103Aး → a $high ɴ; 102 မ\u103Aး → a $high ɴ; 105 ယ\u103Aး → ɛ $high; [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/ |
D | my_my_FONIPA.txt | 43 $high = \u0301; 45 $coda = [$creaky $high $low ɴ ʔ ə]; # TODO: remove if unused 75 ၎င\u103Aး → lə\.ɡa $high ʊ\u032Fɴ; 83 င\u103Aး → ɪ $high ɴ; 87 ဉ\u103Aး → ɪ $high ɴ; 90 ည\u103Aး → ɛ $high; 93 ဏ\u103Aး → a $high ɴ; 97 န\u103Aး → a $high ɴ; 101 မ\u103Aး → a $high ɴ; 104 ယ\u103Aး → ɛ $high; [all …]
|
/third_party/skia/src/core/ |
D | SkCompressedDataUtils.cpp | 95 uint32_t high = SkBSwap32(curBlock1->fHigh); in decompress_etc1() local 98 bool flipped = SkToBool(high & kFlipBit); in decompress_etc1() 99 bool differential = SkToBool(high & kDiffBit); in decompress_etc1() 104 colors[0].fR = extend_5To8bits(high >> 27); in decompress_etc1() 105 colors[1].fR = extend_5plus3To8Bits(high >> 27, high >> 24); in decompress_etc1() 106 colors[0].fG = extend_5To8bits(high >> 19); in decompress_etc1() 107 colors[1].fG = extend_5plus3To8Bits(high >> 19, high >> 16); in decompress_etc1() 108 colors[0].fB = extend_5To8bits(high >> 11); in decompress_etc1() 109 colors[1].fB = extend_5plus3To8Bits(high >> 11, high >> 8); in decompress_etc1() 111 colors[0].fR = extend_4To8bits(high >> 28); in decompress_etc1() [all …]
|
/third_party/python/Lib/asyncio/ |
D | transports.py | 77 def set_write_buffer_limits(self, high=None, low=None): argument 308 def _set_write_buffer_limits(self, high=None, low=None): argument 309 if high is None: 311 high = 64 * 1024 313 high = 4 * low 315 low = high // 4 317 if not high >= low >= 0: 321 self._high_water = high 324 def set_write_buffer_limits(self, high=None, low=None): argument 325 self._set_write_buffer_limits(high=high, low=low)
|
/third_party/boost/libs/math/example/ |
D | binomial_quiz_example.cpp | 254 int high = 5; // Getting as most 5 right. in main() local 256 for (int i = low; i <= high; i++) in main() 262 << low << " and " << high << " answers right by guessing is " in main() 270 …cout << "Probability of getting between " << low << " and " << high << " answers right by guessing… in main() 271 << cdf(quiz, high) - cdf(quiz, low - 1) << endl; // 0.61323 in main() 278 low = 1; high = 6; in main() 279 …cout << "Probability of getting between " << low << " and " << high << " answers right by guessing… in main() 280 << cdf(quiz, high) - cdf(quiz, low - 1) << endl; // 1 and 6 P= 0.91042 in main() 281 low = 1; high = 8; in main() 282 …cout << "Probability of getting between " << low << " and " << high << " answers right by guessing… in main() [all …]
|