HomeSort by relevance Sort by last modified time
    Searched refs:high (Results 76 - 100 of 1418) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/builtins/
floatundidf.c 39 union { uint64_t x; double d; } high = { .d = twop84 }; local
42 high.x |= a >> 32;
45 const double result = (high.d - twop84_plus_twop52) + low.d;
101 fb.u.high = ((e + 1023) << 20) | /* exponent */
102 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
floatundixf.c 37 fb.u.high.s.low = (e + 16383); /* exponent */
  /external/compiler-rt/test/builtins/Unit/
divti3_test.c 38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
39 expectedt.s.high, expectedt.s.low);
modti3_test.c 38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
39 expectedt.s.high, expectedt.s.low);
subvti3_test.c 42 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
43 expectedt.s.high, expectedt.s.low);
udivti3_test.c 38 at.s.high, at.s.low, bt.s.high, bt.s.low, qt.s.high, qt.s.low,
39 expected_qt.s.high, expected_qt.s.low);
umodti3_test.c 38 at.s.high, at.s.low, bt.s.high, bt.s.low, rt.s.high, rt.s.low,
39 expected_rt.s.high, expected_rt.s.low);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
bspec805.s 5 TETRA 0 % Decent high-part of section length. However...
8 % length, high part.
  /art/compiler/utils/x86/
managed_register_x86.cc 43 Register high; member in struct:art::x86::RegisterPairDescriptor
48 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
69 Register high = AsRegisterPairHigh(); local
71 X86ManagedRegister::FromCpuRegister(high).Overlaps(other);
94 return kRegisterPairs[r].high;
  /art/compiler/utils/x86_64/
managed_register_x86_64.cc 42 Register high; member in struct:art::x86_64::RegisterPairDescriptor
47 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
64 Register high = AsRegisterPairHigh().AsRegister(); local
66 X86_64ManagedRegister::FromCpuRegister(high).Overlaps(other);
89 return kRegisterPairs[r].high;
  /external/google-breakpad/src/processor/
contained_range_map-inl.h 59 AddressType high = base + size - 1; local
62 if (size <= 0 || high < base) {
68 // << HexString(size) << ", " << HexString(high);
76 MapIterator iterator_high = map_->lower_bound(high);
86 // containing child's high address.
87 if (iterator_base->second->base_ == base && iterator_base->first == high) {
99 // is higher than the new range's high address. Set contains_high to true
103 high >= iterator_high->second->base_;
108 (contains_high && high < iterator_high->first)) {
140 // Store the new range in the map by its high address. Any children tha
    [all...]
  /frameworks/av/media/libeffects/testlibs/
AudioPeakingFilter.cpp 103 void AudioPeakingFilter::getBandRange(uint32_t & low, uint32_t & high) const {
109 high = mNiquistFreq;
111 high = static_cast<uint32_t>((static_cast<uint64_t>(mNominalFrequency) * Effects_exp2(halfBW + (16 << 15))) >> 16);
112 if (CC_UNLIKELY(high > mNiquistFreq)) {
113 high = mNiquistFreq;
  /frameworks/volley/src/test/java/com/android/volley/
RequestTest.java 35 TestRequest high = new TestRequest(Priority.HIGH); local
36 high.setSequence(sequence++);
41 assertTrue(low.compareTo(high) > 0);
42 assertTrue(high.compareTo(low) < 0);
45 assertTrue(immediate.compareTo(high) < 0);
  /art/runtime/interpreter/mterp/arm/
op_const_wide.S 4 FETCH r2, 3 @ r2<- hhhh (high middle)
6 FETCH r3, 4 @ r3<- HHHH (high)
8 orr r1, r2, r3, lsl #16 @ r1<- HHHHhhhh (high word)
  /art/runtime/interpreter/mterp/mips/
op_mul_long_2addr.S 8 LOAD64(a0, a1, t0) # vAA.low / high
12 LOAD64(a2, a3, t1) # vBB.low / high
30 SET_VREG64(v0, v1, rOBJ) # vAA+1 <- v1 (high)
  /external/selinux/libsepol/src/
ports.c 40 * a high level representation */
51 int high = sepol_port_get_high(data); local
66 tmp_port->u.port.high_port = high;
68 ERR(handle, "low port %d exceeds high port %d",
96 low, high, sepol_port_get_proto_str(proto));
107 int high = port->u.port.high_port; local
122 sepol_port_set_range(tmp_record, low, high);
136 "to record", low, high, sepol_port_get_proto_str(rec_proto));
170 int low, high, proto; local
172 sepol_port_key_unpack(key, &low, &high, &proto)
208 int low, high, proto; local
248 int low, high, proto; local
    [all...]
  /art/runtime/interpreter/mterp/x86/
op_move_result_wide.S 3 movl 4(%eax), %ecx # Get high
  /external/e2fsprogs/lib/blkid/
getsize.c 78 blkid_loff_t high, low; local
179 for (high = 1024; valid_offset(fd, high); high *= 2)
180 low = high;
181 while (low < high - 1) {
182 const blkid_loff_t mid = (low + high) / 2;
187 high = mid;
  /external/smali/util/src/main/java/org/jf/util/
SparseIntArray.java 246 int high = start + len, low = start - 1, guess; local
248 while (high - low > 1) {
249 guess = (high + low) / 2;
254 high = guess;
257 if (high == start + len)
259 else if (a[high] == key)
260 return high;
262 return ~high;
  /external/webrtc/webrtc/base/
random.h 41 // Uniformly distributed pseudo-random number in the interval [low, high].
42 uint32_t Rand(uint32_t low, uint32_t high);
44 // Uniformly distributed pseudo-random number in the interval [low, high].
45 int32_t Rand(int32_t low, int32_t high);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
augmented_cb_corr.c 33 size_t high, /* (i) Lag to end at (typically 39) */
47 for (lagcount=low; lagcount<=high; lagcount++) {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
SparseLongArray.java 226 int high = start + len, low = start - 1, guess; local
228 while (high - low > 1) {
229 guess = (high + low) / 2;
234 high = guess;
237 if (high == start + len)
239 else if (a[high] == key)
240 return high;
242 return ~high;
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
njd.h 60 #define CALCULATE_HINDO(freq, base, high, div) \
61 ((NJ_HINDO)((((freq) * ((high) - (base))) / (div)) + (base)))
  /toolchain/binutils/binutils-2.25/gas/
flonum-copy.c 38 out_length = out->high - out->low;
44 /* For defensive programming, zero any high-order
66 out->leader = out->high;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumb2_mul-bad.s 9 # Cannot use 16-bit encoding because of use of high register.
18 # Cannot use high registers with "muls".

Completed in 1103 milliseconds

1 2 34 5 6 7 8 91011>>