Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 1634) sorted by relevance

12345678910>>...66

/external/compiler-rt/lib/builtins/
Dudivmodti4.c38 if (n.s.high == 0) in __udivmodti4()
40 if (d.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()
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()
95 r.s.high = n.s.high & (d.s.high - 1); in __udivmodti4()
98 return n.s.high >> __builtin_ctzll(d.s.high); in __udivmodti4()
[all …]
Dudivmoddi4.c36 if (n.s.high == 0) in __udivmoddi4()
38 if (d.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()
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()
93 r.s.high = n.s.high & (d.s.high - 1); in __udivmoddi4()
96 return n.s.high >> __builtin_ctz(d.s.high); in __udivmoddi4()
[all …]
Dint_types.h40 si_int high; member
42 si_int high;
55 su_int high; member
57 su_int high;
80 di_int high; member
82 di_int high;
95 du_int high; member
97 du_int high;
105 r.s.high = h; in make_ti()
112 r.s.high = h; in make_tu()
[all …]
/external/clang/test/CodeGen/
Daarch64-neon-vcombine.c10 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()
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()
24 int32x4_t test_vcombine_s32(int32x2_t low, int32x2_t high) { in test_vcombine_s32() argument
25 return vcombine_s32(low, high); in test_vcombine_s32()
31 int64x2_t test_vcombine_s64(int64x1_t low, int64x1_t high) { in test_vcombine_s64() argument
32 return vcombine_s64(low, high); in test_vcombine_s64()
38 uint8x16_t test_vcombine_u8(uint8x8_t low, uint8x8_t high) { in test_vcombine_u8() argument
39 return vcombine_u8(low, high); in test_vcombine_u8()
[all …]
/external/valgrind/none/tests/s390x/
Dcdsg.c5 uint64_t high; member
28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low); in test()
29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low); in test()
30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low); in test()
44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low); in test()
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low); in test()
46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low); in test()
54 if (_op3.low != op3_before.low || _op3.high != op3_before.high) { in test()
62 if (_op1.low != op1_before.low || _op1.high != op1_before.high) { in test()
65 if (_op2.high != _op3.high || _op2.low != _op3.low) { in test()
[all …]
Dcds.c5 uint64_t high; member
23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low); in test()
25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low); in test()
39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low); in test()
41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low); in test()
50 if (op3.low != op3_before.low || op3.high != op3_before.high) { in test()
58 if (op1.low != op1_before.low || op1.high != op1_before.high) { in test()
67 if ((op2 >> 32) != (op3.high & 0xffffffff)) { in test()
79 if ((op1.high >> 32) != (op1_before.high >> 32) || in test()
87 if ((op1.high & 0xffffffff) != (op2 >> 32)) { in test()
[all …]
/external/selinux/libsepol/src/
Dport_record.c10 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()
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()
89 (port->high == key->high) && (port->proto == key->proto)) in sepol_port_compare()
98 else if (port->high < key->high) in sepol_port_compare()
[all …]
Dibpkey_record.c17 int low, high; member
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()
155 ibpkey->low, ibpkey->high); in hidden_def()
182 if (ibpkey->high < key->high) in sepol_ibpkey_compare()
[all …]
Dports.c58 int high = sepol_port_get_high(data); in port_from_record() local
73 tmp_port->u.port.high_port = high; in port_from_record()
103 low, high, sepol_port_get_proto_str(proto)); in port_from_record()
114 int high = port->u.port.high_port; in port_to_record() local
129 sepol_port_set_range(tmp_record, low, high); in port_to_record()
143 "to record", low, high, sepol_port_get_proto_str(rec_proto)); in port_to_record()
176 int low, high, proto; in sepol_port_exists() local
178 sepol_port_key_unpack(key, &low, &high, &proto); in sepol_port_exists()
190 if (proto == proto2 && low2 == low && high2 == high) { in sepol_port_exists()
201 low, high, proto_str); in sepol_port_exists()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorUInt128.h34 HIGH high; member
39 …TensorUInt128(const TensorUInt128<OTHER_HIGH, OTHER_LOW>& other) : high(other.high), low(other.low… in TensorUInt128()
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()
71 return high; in upper()
80 return (lhs.high == rhs.high) & (lhs.low == rhs.low);
87 return (lhs.high != rhs.high) | (lhs.low != rhs.low);
94 if (lhs.high != rhs.high) {
95 return lhs.high > rhs.high;
[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()
69 ir_constant *high; member in __anon7d4891e90111::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()
254 larger_constant(r0.high, r1.high); in combine_range()
275 if (!r0.high) in range_intersection()
[all …]
/external/tensorflow/tensorflow/contrib/distributions/python/ops/
Dquantized_distribution.py184 high=None, argument
219 [low, high])
225 if high is not None:
226 high = ops.convert_to_tensor(high, name="high")
228 tensors=[self.distribution, low, high])
235 if validate_args and low is not None and high is not None:
239 low, high, message=message))
247 if high is not None:
248 self._high = self._check_integer(high)
276 high = self._high
[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()
77 low = high; in testVectorType()
82 const Scalar step = ((size == 1) ? 1 : (high-low)/(size-1)); in testVectorType()
86 m.setLinSpaced(size,low,high); in testVectorType()
[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/libxml2/
Dchvalid.c169 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 …]
/external/syslinux/gpxe/src/drivers/net/
Detherfabric.h169 #define EFAB_EXTRACT_NATIVE( native_element, min ,max ,low ,high ) \ argument
170 ( ( ( low > max ) || ( high < min ) ) ? 0 : \
179 #define EFAB_EXTRACT64( element, min, max, low, high ) \ argument
180 EFAB_EXTRACT_NATIVE ( le64_to_cpu(element), min, max, low, high )
186 #define EFAB_EXTRACT32( element, min, max, low, high ) \ argument
187 EFAB_EXTRACT_NATIVE ( le32_to_cpu(element), min, max, low, high )
189 #define EFAB_EXTRACT_OWORD64( oword, low, high ) \ argument
190 ( EFAB_EXTRACT64 ( (oword).u64[0], 0, 63, low, high ) | \
191 EFAB_EXTRACT64 ( (oword).u64[1], 64, 127, low, high ) )
193 #define EFAB_EXTRACT_QWORD64( qword, low, high ) \ argument
[all …]
/external/python/cpython3/Lib/asyncio/
Dtransports.py68 def set_write_buffer_limits(self, high=None, low=None): argument
287 def _set_write_buffer_limits(self, high=None, low=None): argument
288 if high is None:
290 high = 64*1024
292 high = 4*low
294 low = high // 4
295 if not high >= low >= 0:
297 (high, low))
298 self._high_water = high
301 def set_write_buffer_limits(self, high=None, low=None): argument
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_inst.h48 unsigned high, unsigned low);
50 unsigned high, unsigned low,
53 #define FC(name, high, low, assertions) \ argument
60 brw_inst_set_bits(inst, high, low, v); \
68 return brw_inst_bits(inst, high, low); \
72 #define F(name, high, low) FC(name, high, low, true) argument
75 unsigned high, low; \
77 high = hi8; low = lo8; \
79 high = hi7; low = lo7; \
81 high = hi6; low = lo6; \
[all …]
/external/llvm/test/CodeGen/SystemZ/
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 …]
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 …]
/external/tensorflow/tensorflow/core/lib/random/
Ddistribution_sampler.cc40 std::vector<int> high; in DistributionSampler() local
41 high.reserve(n); in DistributionSampler()
52 high.push_back(i); in DistributionSampler()
57 while (!high.empty() && !low.empty()) { in DistributionSampler()
60 int h = high.back(); in DistributionSampler()
61 high.pop_back(); in DistributionSampler()
71 high.push_back(h); in DistributionSampler()
80 for (size_t i = 0; i < high.size(); i++) { in DistributionSampler()
81 int idx = high[i]; in DistributionSampler()
/external/vboot_reference/utility/
Dtpm-nvsize12 high=1500
13 try=$high
24 elif [ $try -lt $high ]; then
26 try=$(( ( $high + $low ) / 2 ))
31 high=$try
47 high=$try
48 try=$(( ( $high + $low ) / 2 ))
/external/python/cpython3/Modules/_sha3/kcp/
DKeccakP-1600-inplace32BI.c32 #define prepareToBitInterleaving(low, high, temp, temp0, temp1) \ argument
38 temp1 = (high); \
44 #define toBitInterleavingAndXOR(low, high, even, odd, temp, temp0, temp1) \ argument
45 prepareToBitInterleaving(low, high, temp, temp0, temp1) \
49 #define toBitInterleavingAndAND(low, high, even, odd, temp, temp0, temp1) \ argument
50 prepareToBitInterleaving(low, high, temp, temp0, temp1) \
54 #define toBitInterleavingAndSet(low, high, even, odd, temp, temp0, temp1) \ argument
55 prepareToBitInterleaving(low, high, temp, temp0, temp1) \
76 #define fromBitInterleaving(even, odd, low, high, temp, temp0, temp1) \ argument
79 high = temp1;
[all …]
/external/skqp/third_party/etc1/
Detc1.cpp209 etc1_uint32 high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3]; in etc1_decode_block() local
212 if (high & 2) { in etc1_decode_block()
214 int rBase = high >> 27; in etc1_decode_block()
215 int gBase = high >> 19; in etc1_decode_block()
216 int bBase = high >> 11; in etc1_decode_block()
218 r2 = convertDiff(rBase, high >> 24); in etc1_decode_block()
220 g2 = convertDiff(gBase, high >> 16); in etc1_decode_block()
222 b2 = convertDiff(bBase, high >> 8); in etc1_decode_block()
225 r1 = convert4To8(high >> 28); in etc1_decode_block()
226 r2 = convert4To8(high >> 24); in etc1_decode_block()
[all …]
/external/libvpx/libvpx/vpx_dsp/mips/
Dvariance_mmi.c412 uint32_t *sse, int high) { in vpx_variance64x() argument
422 MMI_L(%[tmp0], %[high], 0x00) in vpx_variance64x()
497 [high]"r"(&high), [sse]"r"(sse) in vpx_variance64x()
501 return *sse - (((int64_t)sum * sum) / (64 * high)); in vpx_variance64x()
585 uint32_t *sse, int high) { in vpx_variance32x() argument
595 MMI_L(%[tmp0], %[high], 0x00) in vpx_variance32x()
651 [high]"r"(&high), [sse]"r"(sse), [sum]"r"(&sum) in vpx_variance32x()
655 return *sse - (((int64_t)sum * sum) / (32 * high)); in vpx_variance32x()
670 uint32_t *sse, int high) { in vpx_variance16x() argument
680 MMI_L(%[tmp0], %[high], 0x00) in vpx_variance16x()
[all …]

12345678910>>...66