Home
last modified time | relevance | path

Searched full:high (Results 1 – 25 of 5545) sorted by relevance

12345678910>>...222

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorUInt128.h31 template <typename HIGH = uint64_t, typename LOW = uint64_t>
34 HIGH high; member
39 …TensorUInt128(const TensorUInt128<OTHER_HIGH, OTHER_LOW>& other) : high(other.high), low(other.low… in TensorUInt128()
40 EIGEN_STATIC_ASSERT(sizeof(OTHER_HIGH) <= sizeof(HIGH), YOU_MADE_A_PROGRAMMING_MISTAKE); in TensorUInt128()
47 EIGEN_STATIC_ASSERT(sizeof(OTHER_HIGH) <= sizeof(HIGH), YOU_MADE_A_PROGRAMMING_MISTAKE);
49 high = other.high;
56 explicit TensorUInt128(const T& x) : high(0), low(x) { in TensorUInt128()
62 TensorUInt128(HIGH y, LOW x) : high(y), low(x) { } in TensorUInt128()
70 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE HIGH upper() const { in upper()
71 return high; in upper()
[all …]
/external/clang/test/CodeGen/
Daarch64-neon-vcombine.c7 // 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/
Dudivmoddi4.c36 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 …]
Dudivmodti4.c38 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 …]
/external/selinux/libsepol/src/
Dport_record.c9 /* 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()
52 int *low, int *high, int *proto) in hidden_def()
56 *high = key->high; in hidden_def()
68 (handle, port->low, port->high, port->proto, key_ptr) < 0) { in hidden_def()
72 port->low, port->high); in hidden_def()
[all …]
Dibpkey_record.c16 /* 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
101 int low, int high, in sepol_ibpkey_key_create() argument
116 tmp_key->high = high; in sepol_ibpkey_key_create()
127 subnet_prefix, low, high); in sepol_ibpkey_key_create()
134 uint64_t *subnet_prefix, int *low, int *high) in hidden_def()
138 *high = key->high; in hidden_def()
152 (handle, subnet_prefix_str, ibpkey->low, ibpkey->high, key_ptr) < 0) { in hidden_def()
[all …]
Dports.c54 * a high level representation */
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()
82 ERR(handle, "low port %d exceeds high port %d", 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()
[all …]
/external/ltp/testcases/open_posix_testsuite/Documentation/
DCOVERAGE.threads21 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/icu/icu4c/source/data/translit/
Dmy_my_FONIPA.txt43 $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 …]
/external/cldr/common/transforms/
Dmy-my_FONIPA.xml53 $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/u-boot/arch/x86/include/asm/
Dmsr.h50 unsigned long low, high; in native_read_tscp() local
52 : "=a" (low), "=d" (high), "=c" (*aux)); in native_read_tscp()
53 return low | ((u64)high << 32); in native_read_tscp()
63 #define DECLARE_ARGS(val, low, high) unsigned low, high argument
64 #define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32)) argument
65 #define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high) argument
66 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) argument
68 #define DECLARE_ARGS(val, low, high) unsigned long long val argument
69 #define EAX_EDX_VAL(val, low, high) (val) argument
70 #define EAX_EDX_ARGS(val, low, high) "A" (val) argument
[all …]
/external/tensorflow/tensorflow/python/ops/distributions/
Duniform.py38 """Uniform distribution with `low` and `high` parameters.
52 - `high = b`,
57 The parameters `low` and `high` must be shaped in a way that supports
58 broadcasting (e.g., `high - low` is a valid operation).
64 u1 = Uniform(low=3.0, high=4.0) # a single uniform distribution [3, 4]
66 high=[3.0, 4.0]) # 2 distributions [1, 3], [2, 4]
69 high=[[1.5, 2.5],
75 u1 = Uniform(low=3.0, high=[5.0, 6.0, 7.0]) # 3 distributions
90 high=1., argument
98 have `low < high`.
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dint-mul-10.ll1 ; Test signed high-part i64->i128 multiplications on z14.
7 ; Check sign-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 part of the high half
33 %high = trunc i128 %highx to i64
34 ret i64 %high
38 ; high and low halves.
49 %high = trunc i128 %highx to i64
51 %or = or i64 %high, %low
[all …]
Dint-mul-08.ll1 ; 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 …]
Dint-mul-07.ll1 ; Test high-part i32->i64 multiplications.
8 ; Check zero-extended multiplication in which only the high part is used.
17 %high = trunc i64 %highx to i32
18 ret i32 %high
21 ; Check sign-extended multiplication in which only the high part is used.
30 %high = trunc i64 %highx to i32
31 ret i32 %high
35 ; high and low halves.
44 %high = trunc i64 %highx to i32
46 %or = or i32 %high, %low
[all …]
/external/tensorflow/tensorflow/contrib/distributions/python/ops/
Dquantized_distribution.py65 := P[X > high - 1], y == high,
66 := 0, if j < low or y > high,
93 = 1, if y >= high,
118 = 0, if y >= high,
146 4. If Y > high, reset Y <-- high
157 := P[X > high - 1], j == high,
158 := 0, if j < low or j > high,
172 If `low = 0`, and `high = 2`, then the intervals are redrawn
217 high=2**16 - 1.)
236 [2]: Aaron van den Oord et al. Parallel WaveNet: Fast High-Fidelity Speech
[all …]
Dstatistical_testing.py41 samples, low=0., high=1., expected=expected_mean,
48 num_samples, low=0., high=1.0,
163 def _do_maximum_mean(samples, envelope, high, name=None): argument
165 with ops.name_scope(name, "do_maximum_mean", [samples, envelope, high]):
180 # - and adding `envelope * high` at the end.
193 samples * max_mean_contrib, axis=-1) + envelope * high
196 def _maximum_mean(samples, envelope, high, name=None): argument
209 broadcast together with `envelope` and `high`, and operated on
215 The other dimensions must broadcast with `envelope` and `high`.
218 high: Floating-point `Tensor` of upper bounds on the distributions'
[all …]
/external/u-boot/arch/nios2/lib/
Dlibgcc.c24 struct DWstruct { Wtype low, high;}; member
63 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
70 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
88 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3()
89 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3()
90 w.s.low = uu.s.high >> -bm; in __ashrdi3()
94 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
96 w.s.high = uu.s.high >> b; in __ashrdi3()
115 w.s.high = 0; in __lshrdi3()
116 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
[all …]
/external/llvm/test/CodeGen/SystemZ/
Dint-mul-08.ll1 ; 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 …]
Dint-mul-07.ll1 ; Test high-part i32->i64 multiplications.
8 ; Check zero-extended multiplication in which only the high part is used.
17 %high = trunc i64 %highx to i32
18 ret i32 %high
21 ; Check sign-extended multiplication in which only the high part is used.
30 %high = trunc i64 %highx to i32
31 ret i32 %high
35 ; high and low halves.
44 %high = trunc i64 %highx to i32
46 %or = or i32 %high, %low
[all …]
/external/deqp/framework/common/
DtcuCompressedTexture.cpp431 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/mesa3d/src/compiler/glsl/
Dopt_minmax.cpp57 minmax_range(ir_constant *low = NULL, ir_constant *high = NULL) in minmax_range() argument
60 this->high = high; in minmax_range()
63 /* low is the lower limit of the range, high is the higher limit. NULL on
64 * low means negative infinity (unlimited) and on high positive infinity
69 ir_constant *high; member in __anon886a0d750111::minmax_range
248 if (!r0.high) { in combine_range()
249 ret.high = ismin ? r1.high : r0.high; in combine_range()
250 } else if (!r1.high) { in combine_range()
251 ret.high = ismin ? r0.high : r1.high; in combine_range()
253 ret.high = ismin ? smaller_constant(r0.high, r1.high) : in combine_range()
[all …]
/external/u-boot/arch/arc/lib/
Dlibgcc2.c20 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
25 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
42 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3()
43 w.s.high = uu.s.high >> (W_TYPE_SIZE - 1); in __ashrdi3()
44 w.s.low = uu.s.high >> -bm; in __ashrdi3()
46 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
48 w.s.high = uu.s.high >> b; in __ashrdi3()
66 w.s.high = 0; in __lshrdi3()
67 w.s.low = (UWtype)uu.s.high >> -bm; in __lshrdi3()
69 const UWtype carries = (UWtype)uu.s.high << bm; in __lshrdi3()
[all …]
/external/eigen/test/
Dnullary.cpp37 …nst VectorType &v, const typename VectorType::Scalar &low, const typename VectorType::Scalar &high) in check_extremity_accuracy() argument
52 …Scalar ref = (low*RealScalar(size-i-1))/RealScalar(size-1) + (high*RealScalar(i))/RealScalar(size-… in check_extremity_accuracy()
56 …) << " ; required precision: " << prec << " ; range: " << low << "," << high << " ; i: " << i <… in check_extremity_accuracy()
57 …VERIFY(internal::isApprox(v(i), (low*RealScalar(size-i-1))/RealScalar(size-1) + (high*RealScalar(i… in check_extremity_accuracy()
71 Scalar high = internal::random<Scalar>(-500,500); in testVectorType() local
72 Scalar low = (size == 1 ? high : internal::random<Scalar>(-500,500)); in testVectorType()
73 if (low>high) std::swap(low,high); in testVectorType()
75 // check low==high in testVectorType()
77 low = high; in testVectorType()
78 // check abs(low) >> abs(high) in testVectorType()
[all …]
/external/u-boot/include/linux/
Dmath64.h189 u32 high, low; in mul_u64_u64_shr() member
191 u32 low, high; in mul_u64_u64_shr()
201 rm.ll = mul_u32_u32(a0.l.low, b0.l.high); in mul_u64_u64_shr()
202 rn.ll = mul_u32_u32(a0.l.high, b0.l.low); in mul_u64_u64_shr()
203 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr()
208 * multiplication, the high 32-bits are carried into the next step. in mul_u64_u64_shr()
210 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr()
211 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr()
212 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr()
216 * shift it right and throw away the high part of the result. in mul_u64_u64_shr()
[all …]

12345678910>>...222