/third_party/mindspore/mindspore/nn/probability/distribution/ |
D | uniform.py | 32 …high (int, float, list, numpy.ndarray, Tensor): The upper bound of the distribution. Default: None. 41 `low` must be strictly less than `high`. 42 `dist_spec_args` are `high` and `low`. 53 … >>> # In this case, `high` and `low` must be passed in through arguments during function calls. 67 >>> # high (Tensor): the higher bound of the distribution. Default: self.high. 78 >>> # `high` and `low` must be passed in during function calls. 85 >>> # high (Tensor): the higher bound of the distribution. Default: self.high. 93 >>> # `high` and `low` must be passed in during function calls. 103 >>> # high_a (Tensor): the upper bound of distribution a. Default: self.high. 111 >>> # Additional `high` and `low` must be passed in. [all …]
|
/third_party/mesa3d/src/freedreno/isa/ |
D | ir3-cat0.xml | 37 <field name="IMMED" low="0" high="31" type="branch"/> 39 <field name="REPEAT" low="40" high="42" type="#rptN"/> 45 <pattern low="61" high="63">000</pattern> <!-- cat0 --> 60 <pattern low="32" high="36">00000</pattern> 61 <pattern low="37" high="39">000</pattern> <!-- BRTYPE --> 62 <pattern low="45" high="47">000</pattern> <!-- src1 --> 63 <pattern low="52" high="54">000</pattern> <!-- src0 --> 67 <pattern low="49" high="51">xx0</pattern> <!-- OPC_HI --> 68 <pattern low="55" high="58">0000</pattern> <!-- OPC --> 72 <pattern low="49" high="51">xx0</pattern> <!-- OPC_HI --> [all …]
|
D | ir3-cat6.xml | 34 <pattern low="61" high="63">110</pattern> <!-- cat6 --> 41 <field name="TYPE" low="49" high="51" type="#type"/> 47 <field low="14" high="21" name="SRC1" type="#reg-gpr"/> 49 <field low="24" high="31" name="SIZE" type="uint"/> 50 <field low="32" high="39" name="DST" type="#reg-gpr"/> 51 <pattern low="40" high="48">xxxxxxxxx</pattern> 52 <pattern low="52" high="53">00</pattern> 53 <pattern low="54" high="58">00000</pattern> <!-- OPC --> 65 <field low="1" high="13" name="OFF" type="offset"/> 92 <field low="1" high="8" name="SRC2" type="#reg-gpr"/> [all …]
|
D | ir3-cat2.xml | 32 <field name="DST" low="32" high="39" type="#reg-gpr"/> 33 <field name="REPEAT" low="40" high="41" type="#rptN"/> 51 <pattern low="61" high="63">010</pattern> <!-- cat2 --> 79 <field name="SRC1" low="0" high="15" type="#multisrc"> 87 <pattern low="16" high="31">xxxxxxxxxxxxxxxx</pattern> 88 <pattern low="48" high="50">xxx</pattern> <!-- COND --> 89 <field name="SRC1" low="0" high="15" type="#multisrc"> 103 <field name="SRC1" low="0" high="15" type="#multisrc"> 107 <field name="SRC2" low="16" high="31" type="#multisrc"> 115 <field name="SRC1" low="0" high="15" type="#multisrc"> [all …]
|
D | ir3-cat1.xml | 42 <field name="OFFSET" low="0" high="7" type="uint"/> 51 <field name="OFFSET" low="0" high="7" type="uint"/> 56 <field name="DST" low="0" high="7" type="#reg-gpr"/> 74 <field name="ROUND" low="55" high="56" type="#round"/> 77 <pattern low="61" high="63">001</pattern> <!-- cat1 --> 106 <field name="DST_TYPE" low="46" high="48" type="#type"/> 107 <field name="SRC_TYPE" low="50" high="52" type="#type"/> 123 <assert low="32" high="39">11110100</assert> <!-- DST==a0.x --> 124 <assert low="46" high="48">100</assert> <!-- DST_TYPE==s16 --> 125 <assert low="50" high="52">100</assert> <!-- SRC_TYPE==s16 --> [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 | 9 /* Low - High range. Same for single ports. */ 10 int low, high; member 20 /* Low - High range. Same for single ports. */ 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() [all …]
|
D | ibpkey_record.c | 16 /* Low - High range. Same for single ibpkeys. */ 17 int low, high; member 27 /* Low - High range. Same for single ibpkeys. */ 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() [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/Documentation/ |
D | COVERAGE.threads | 21 pthread_attr_destroy YES HIGH 22 pthread_attr_getdetachstate YES HIGH 23 pthread_attr_init YES HIGH 24 pthread_attr_setdetachstate YES HIGH 25 pthread_cancel YES HIGH 36 pthread_create YES HIGH 37 pthread_detach YES HIGH 38 pthread_equal YES HIGH 39 pthread_exit YES HIGH 40 pthread_join YES HIGH [all …]
|
/third_party/mesa3d/src/freedreno/registers/mdp/ |
D | mdp5.xml | 14 <bitfield name="STEP" low="0" high="15" type="uint"/> 15 <bitfield name="MINOR" low="16" high="27" type="uint"/> 16 <bitfield name="MAJOR" low="28" high="31" type="uint"/> 142 <bitfield name="CLIENT0" low="0" high="7" type="uint"/> 143 <bitfield name="CLIENT1" low="8" high="15" type="uint"/> 144 <bitfield name="CLIENT2" low="16" high="23" type="uint"/> 148 <bitfield name="STEP" low="0" high="15" type="uint"/> 149 <bitfield name="MINOR" low="16" high="27" type="uint"/> 150 <bitfield name="MAJOR" low="28" high="31" type="uint"/> 154 <bitfield name="INTF0" low="0" high="7" type="mdp5_intf_type"/> [all …]
|
D | mdp4.xml | 66 <bitfield name="PIPE0" low="0" high="2" type="mdp_mixer_stage_id"/> 68 <bitfield name="PIPE1" low="4" high="6" type="mdp_mixer_stage_id"/> 70 <bitfield name="PIPE2" low="8" high="10" type="mdp_mixer_stage_id"/> 72 <bitfield name="PIPE3" low="12" high="14" type="mdp_mixer_stage_id"/> 74 <bitfield name="PIPE4" low="16" high="18" type="mdp_mixer_stage_id"/> 76 <bitfield name="PIPE5" low="20" high="22" type="mdp_mixer_stage_id"/> 78 <bitfield name="PIPE6" low="24" high="26" type="mdp_mixer_stage_id"/> 80 <bitfield name="PIPE7" low="28" high="30" type="mdp_mixer_stage_id"/> 126 <bitfield name="MINOR" low="16" high="23" type="uint"/> 127 <bitfield name="MAJOR" low="24" high="31" type="uint"/> [all …]
|
/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/mesa3d/src/freedreno/registers/adreno/ |
D | a6xx.xml | 189 <bitfield name="BASE_ADDR" low="0" high="17"/> 190 <bitfield name="MASK_LEN" low="18" high="30"/> 884 8b unorm: 10 (sometimes 0, is the high bit part of something else?) 1002 and b8..15 is a high threshold? 1008 <bitfield name="RB_LO" low="0" high="7" shr="2"/> 1009 <bitfield name="RB_HI" low="8" high="15" shr="2"/> 1010 <bitfield name="IB1_START" low="16" high="23" shr="2"/> 1011 <bitfield name="IB2_START" low="24" high="31" shr="2"/> 1025 <bitfield name="SDS_START" low="0" high="8" shr="2"/> 1027 <bitfield name="ROQ_SIZE" low="16" high="31" shr="2"/> [all …]
|
D | a3xx.xml | 799 <bitfield name="NUM_USER_CLIP_PLANES" low="26" high="28" type="uint"/> 802 <bitfield name="HORZ" low="0" high="9" type="uint"/> 803 <bitfield name="VERT" low="10" high="19" type="uint"/> 812 <bitfield name="MIN" low="0" high="15" type="ufixed" radix="4"/> 813 <bitfield name="MAX" low="16" high="31" type="ufixed" radix="4"/> 817 <bitfield name="VAL" low="0" high="23" type="fixed" radix="20"/> 827 <bitfield name="LINEHALFWIDTH" low="3" high="10" radix="2" type="fixed"/> 832 <bitfield name="RENDER_MODE" low="4" high="7" type="a3xx_render_mode"/> 833 <bitfield name="MSAA_SAMPLES" low="8" high="11" type="a3xx_msaa_samples"/> 834 <bitfield name="RASTER_MODE" low="12" high="15"/> [all …]
|
D | adreno_pm4.xml | 272 <doc>load high level sequencer command</doc> 527 <bitfield name="DST_OFF" low="0" high="15" type="uint"/> 528 <bitfield name="STATE_SRC" low="16" high="18" type="adreno_state_src"/> 529 <bitfield name="STATE_BLOCK" low="19" high="21" type="adreno_state_block"/> 530 <bitfield name="NUM_UNIT" low="22" high="31" type="uint"/> 533 <bitfield name="STATE_TYPE" low="0" high="1" type="adreno_state_type"/> 534 <bitfield name="EXT_SRC_ADDR" low="2" high="31" shr="2"/> 607 <bitfield name="DST_OFF" low="0" high="13" type="uint"/> 608 <bitfield name="STATE_SRC" low="16" high="17" type="a4xx_state_src"/> 609 <bitfield name="STATE_BLOCK" low="18" high="21" type="a4xx_state_block"/> [all …]
|
D | a4xx.xml | 879 <bitfield name="WIDTH" low="0" high="13" type="uint"/> 880 <bitfield name="HEIGHT" low="16" high="29" type="uint"/> 893 <bitfield name="WIDTH" low="0" high="5" shr="5" type="uint"/> 894 <bitfield name="HEIGHT" low="8" high="13" shr="5" type="uint"/> 905 <bitfield name="SAMPLES" low="13" high="15" type="uint"/> 908 <bitfield name="COORD_MASK" low="0" high="3" type="hex"/> 912 <bitfield name="MSAA_SAMPLES" low="7" high="9" type="uint"/> 929 <bitfield name="ROP_CODE" low="8" high="11" type="a3xx_rop_code"/> 930 <bitfield name="COMPONENT_ENABLE" low="24" high="27" type="hex"/> 933 <bitfield name="COLOR_FORMAT" low="0" high="5" type="a4xx_color_fmt"/> [all …]
|
/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() 151 return construct<IntervalType1>(get(interval, LOW), get(interval, HIGH)); in copy_construct() 170 set(lvalue, HIGH, get(rvalue, HIGH)); in assign() 200 >::type high(const IntervalType& interval) { in high() function 201 return get(interval, HIGH); in high() 231 >::type high(IntervalType& interval, in high() function 233 set(interval, HIGH, value); in high() [all …]
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
D | hrtimer.h | 79 * Structure of a node in a high-resolution timer queue. 87 * Enumerative structure of the high-resolution timer mode arguments. 97 * Enumerative structure of the return type of a high-resolution timer timeout callback function. 107 * Define the function handler type of a high-resolution timer timeout callback function. 113 * Structure of parameters of a high-resolution timer API. 120 int start_pid; /**< ID of the task that invokes a high-resolution timer. 122 …void *start_site; /**< Function that invokes a high-resolution timer. Not in u… 124 … char start_comm[START_TASK_NAME_LEN]; /**< Name of the task that invokes a high-resolution timer. 131 * Parameter structure of the nodes of a high-resolution timer timeout callback function. 141 * Parameter structure of a high-resolution timer node. [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/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/boost/boost/polygon/detail/ |
D | rectangle_formation.hpp | 68 //is greater than the high end of the edge in processEdge_() 70 (*dataIter).get(orient).get(LOW) <= edge.get(HIGH)) in processEdge_() 74 if(rect.get(orient).get(HIGH) >= edge.get(LOW)) { in processEdge_() 83 //set the high coordinate perpedicular to slicing orientation in processEdge_() 85 tmpRect.set(orient.get_perpendicular().get_direction(HIGH), in processEdge_() 101 lowRect.set(orient.get_direction(HIGH), edge.get(LOW)); in processEdge_() 104 if(tmpRect.get(orient).get(HIGH) > edge.get(HIGH)) { in processEdge_() 110 highRect.set(orient.get_direction(LOW), edge.get(HIGH)); in processEdge_() 121 //set the high coordinate perpedicular to slicing orientation in processEdge_() 124 tmpRect.set(orient.get_perpendicular().get_direction(HIGH), in processEdge_() [all …]
|
/third_party/mesa3d/src/freedreno/registers/dsi/ |
D | dsi.xml | 89 <bitfield name="MAJOR" low="28" high="31" type="uint"/> 90 <bitfield name="MINOR" low="16" high="27" type="uint"/> 91 <bitfield name="STEP" low="0" high="15" type="uint"/> 144 <bitfield name="VIRT_CHANNEL" low="0" high="1" type="uint"/> <!-- always zero? --> 145 <bitfield name="DST_FORMAT" low="4" high="5" type="dsi_vid_dst_format"/> 146 <bitfield name="TRAFFIC_MODE" low="8" high="9" type="dsi_traffic_mode"/> 158 <bitfield name="RGB_SWAP" low="12" high="14" type="dsi_rgb_swap"/> 161 <bitfield name="START" low="0" high="11" type="uint"/> 162 <bitfield name="END" low="16" high="27" type="uint"/> 165 <bitfield name="START" low="0" high="11" type="uint"/> [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/gstreamer/gstplugins_good/sys/v4l2/ |
D | gstv4l2h264codec.c | 45 } else if (g_str_equal (profile, "high")) { in v4l2_profile_from_string() 47 } else if (g_str_equal (profile, "high-10")) { in v4l2_profile_from_string() 49 } else if (g_str_equal (profile, "high-4:2:2")) { in v4l2_profile_from_string() 51 } else if (g_str_equal (profile, "high-4:4:4")) { in v4l2_profile_from_string() 53 } else if (g_str_equal (profile, "high-10-intra")) { in v4l2_profile_from_string() 55 } else if (g_str_equal (profile, "high-4:2:2-intra")) { in v4l2_profile_from_string() 57 } else if (g_str_equal (profile, "high-4:4:4-intra")) { in v4l2_profile_from_string() 63 } else if (g_str_equal (profile, "scalable-high")) { in v4l2_profile_from_string() 65 } else if (g_str_equal (profile, "scalable-high-intra")) { in v4l2_profile_from_string() 67 } else if (g_str_equal (profile, "stereo-high")) { in v4l2_profile_from_string() [all …]
|