| /external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
| D | TensorUInt128.h | 32 template <typename HIGH = uint64_t, typename LOW = uint64_t> 35 HIGH high; member 40 …TensorUInt128(const TensorUInt128<OTHER_HIGH, OTHER_LOW>& other) : high(other.high), low(other.low… in TensorUInt128() 41 EIGEN_STATIC_ASSERT(sizeof(OTHER_HIGH) <= sizeof(HIGH), YOU_MADE_A_PROGRAMMING_MISTAKE); in TensorUInt128() 48 EIGEN_STATIC_ASSERT(sizeof(OTHER_HIGH) <= sizeof(HIGH), YOU_MADE_A_PROGRAMMING_MISTAKE); 50 high = other.high; 57 explicit TensorUInt128(const T& x) : high(0), low(x) { in TensorUInt128() 63 TensorUInt128(HIGH y, LOW x) : high(y), low(x) { } in TensorUInt128() 71 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE HIGH upper() const { in upper() 72 return high; in upper() [all …]
|
| /external/clang/test/CodeGen/ |
| D | aarch64-neon-vcombine.c | 7 // CHECK-LABEL: define <16 x i8> @test_vcombine_s8(<8 x i8> %low, <8 x i8> %high) #0 { 8 // CHECK: [[SHUFFLE_I:%.*]] = shufflevector <8 x i8> %low, <8 x i8> %high, <16 x i32> <i32 0, i32… 10 int8x16_t test_vcombine_s8(int8x8_t low, int8x8_t high) { in test_vcombine_s8() argument 11 return vcombine_s8(low, high); in test_vcombine_s8() 14 // CHECK-LABEL: define <8 x i16> @test_vcombine_s16(<4 x i16> %low, <4 x i16> %high) #0 { 15 // CHECK: [[SHUFFLE_I:%.*]] = shufflevector <4 x i16> %low, <4 x i16> %high, <8 x i32> <i32 0, i3… 17 int16x8_t test_vcombine_s16(int16x4_t low, int16x4_t high) { in test_vcombine_s16() argument 18 return vcombine_s16(low, high); in test_vcombine_s16() 21 // CHECK-LABEL: define <4 x i32> @test_vcombine_s32(<2 x i32> %low, <2 x i32> %high) #0 { 22 // CHECK: [[SHUFFLE_I:%.*]] = shufflevector <2 x i32> %low, <2 x i32> %high, <4 x i32> <i32 0, i3… [all …]
|
| /external/compiler-rt/lib/builtins/ |
| D | udivmodti4.c | 38 if (n.s.high == 0) in __udivmodti4() 40 if (d.s.high == 0) in __udivmodti4() 58 /* n.s.high != 0 */ in __udivmodti4() 61 if (d.s.high == 0) in __udivmodti4() 68 *rem = n.s.high % d.s.low; in __udivmodti4() 69 return n.s.high / d.s.low; in __udivmodti4() 71 /* d.s.high != 0 */ in __udivmodti4() 80 r.s.high = n.s.high % d.s.high; in __udivmodti4() 84 return n.s.high / d.s.high; in __udivmodti4() 90 if ((d.s.high & (d.s.high - 1)) == 0) /* if d is a power of 2 */ in __udivmodti4() [all …]
|
| D | udivmoddi4.c | 36 if (n.s.high == 0) in __udivmoddi4() 38 if (d.s.high == 0) in __udivmoddi4() 56 /* n.s.high != 0 */ in __udivmoddi4() 59 if (d.s.high == 0) in __udivmoddi4() 66 *rem = n.s.high % d.s.low; in __udivmoddi4() 67 return n.s.high / d.s.low; in __udivmoddi4() 69 /* d.s.high != 0 */ in __udivmoddi4() 78 r.s.high = n.s.high % d.s.high; in __udivmoddi4() 82 return n.s.high / d.s.high; in __udivmoddi4() 88 if ((d.s.high & (d.s.high - 1)) == 0) /* if d is a power of 2 */ in __udivmoddi4() [all …]
|
| /external/openthread/third_party/mbedtls/repo/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 …]
|
| /external/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 …]
|
| /external/pcre/src/sljit/ |
| D | sljitNativeRISCV_64.c | 29 sljit_sw high; in load_immediate() local 57 high = imm >> 12; in load_immediate() 60 high = ~high; in load_immediate() 62 if (high > S32_MAX) { in load_immediate() 63 SLJIT_ASSERT((high & 0x800) != 0); in load_immediate() 65 FAIL_IF(push_inst(compiler, XORI | RD(dst_r) | RS1(dst_r) | IMM_I(high))); in load_immediate() 67 if ((high & 0x800) != 0) in load_immediate() 68 high += 0x1000; in load_immediate() 70 FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)(high & ~0xfff))); in load_immediate() 72 if ((high & 0xfff) != 0) in load_immediate() [all …]
|
| /external/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 …]
|
| /external/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 …]
|
| /external/renderscript-intrinsics-replacement-toolkit/renderscript-toolkit/src/main/cpp/ |
| D | Utils.h | 93 inline int4 clamp(int4 amount, int low, int high) { in clamp() argument 95 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x); in clamp() 96 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y); in clamp() 97 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z); in clamp() 98 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w); in clamp() 102 inline float4 clamp(float4 amount, float low, float high) { in clamp() argument 104 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x); in clamp() 105 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y); in clamp() 106 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z); in clamp() 107 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w); in clamp() [all …]
|
| /external/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 …]
|
| /external/mesa3d/src/freedreno/registers/adreno/ |
| 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> 513 <bitfield name="DST_OFF" low="0" high="15" type="uint"/> 514 <bitfield name="STATE_SRC" low="16" high="18" type="adreno_state_src"/> 515 <bitfield name="STATE_BLOCK" low="19" high="21" type="adreno_state_block"/> 516 <bitfield name="NUM_UNIT" low="22" high="31" type="uint"/> 519 <bitfield name="STATE_TYPE" low="0" high="1" type="adreno_state_type"/> 520 <bitfield name="EXT_SRC_ADDR" low="2" high="31" shr="2"/> 593 <bitfield name="DST_OFF" low="0" high="13" type="uint"/> 594 <bitfield name="STATE_SRC" low="16" high="17" type="a4xx_state_src"/> 595 <bitfield name="STATE_BLOCK" low="18" high="21" type="a4xx_state_block"/> [all …]
|
| D | a6xx.xml | 176 <bitfield name="BASE_ADDR" low="0" high="17"/> 177 <bitfield name="MASK_LEN" low="18" high="30"/> 871 8b unorm: 10 (sometimes 0, is the high bit part of something else?) 990 and b8..15 is a high threshold? 996 <bitfield name="RB_LO" low="0" high="7" shr="2"/> 997 <bitfield name="RB_HI" low="8" high="15" shr="2"/> 998 <bitfield name="IB1_START" low="16" high="23" shr="2"/> 999 <bitfield name="IB2_START" low="24" high="31" shr="2"/> 1013 <bitfield name="SDS_START" low="0" high="8" shr="2"/> 1015 <bitfield name="ROQ_SIZE" low="16" high="31" shr="2"/> [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 …]
|
| /external/cldr/common/transforms/ |
| D | my-my_FONIPA.xml | 53 $high = \u0301; 55 $coda = [$creaky $high $low ɴ ʔ ə]; # TODO: remove if unused 95 ၎င်း → lə\.ɡa $high ʊ̯ɴ; 108 င်း → ɪ $high ɴ; 114 ဉ်း → ɪ $high ɴ; 118 ည်း → ɛ $high; 122 ဏ်း → a $high ɴ; 128 န်း → a $high ɴ; 134 မ်း → a $high ɴ; 138 ယ်း → ɛ $high; [all …]
|
| /external/cronet/third_party/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 …]
|
| /external/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 …]
|
| /external/tensorflow/tensorflow/python/ops/distributions/ |
| D | uniform.py | 34 """Uniform distribution with `low` and `high` parameters. 48 - `high = b`, 53 The parameters `low` and `high` must be shaped in a way that supports 54 broadcasting (e.g., `high - low` is a valid operation). 60 u1 = Uniform(low=3.0, high=4.0) # a single uniform distribution [3, 4] 62 high=[3.0, 4.0]) # 2 distributions [1, 3], [2, 4] 65 high=[[1.5, 2.5], 71 u1 = Uniform(low=3.0, high=[5.0, 6.0, 7.0]) # 3 distributions 86 high=1., argument 94 have `low < high`. [all …]
|
| /external/linux-kselftest/tools/testing/selftests/drivers/net/netdevsim/ |
| D | ethtool-coalesce.sh | 32 ["rx-frames-high"]="rx-frame-high" 33 ["tx-frames-high"]="tx-frame-high" 46 ["pkt-rate-high"]="pkt-rate-high" 47 ["rx-usecs-high"]="rx-usecs-high" 48 ["tx-usecs-high"]="tx-usecs-high" 55 ["rx-frames-high"]="" 56 ["tx-frames-high"]="" 69 ["pkt-rate-high"]="" 70 ["rx-usecs-high"]="" 71 ["tx-usecs-high"]="" [all …]
|
| /external/rust/crates/rand/src/distributions/ |
| D | uniform.rs | 53 //! `low < high`). The example below merely wraps another back-end. 73 //! fn new<B1, B2>(low: B1, high: B2) -> Self 77 //! UniformMyF32(UniformFloat::<f32>::new(low.borrow().0, high.borrow().0)) 79 //! fn new_inclusive<B1, B2>(low: B1, high: B2) -> Self 85 //! high.borrow().0, 97 //! let (low, high) = (MyF32(17.0f32), MyF32(22.0f32)); 98 //! let uniform = Uniform::new(low, high); 141 /// values. Further, the implementations here give more weight to the high-bits 143 /// are of lower quality than the high bits. 145 /// Implementations must sample in `[low, high)` range for [all …]
|
| /external/deqp/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 …]
|
| /external/llvm/test/CodeGen/SystemZ/ |
| D | int-mul-08.ll | 1 ; Test high-part i64->i128 multiplications. 7 ; Check zero-extended multiplication in which only the high part is used. 17 %high = trunc i128 %highx to i64 18 ret i64 %high 21 ; Check sign-extended multiplication in which only the high part is used. 37 %high = trunc i128 %highx to i64 38 ret i64 %high 41 ; Check zero-extended multiplication in which only part of the high half 53 %high = trunc i128 %highx to i64 54 ret i64 %high [all …]
|