Searched refs:high (Results 101 - 125 of 531) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMeterElement.cpp116 double HTMLMeterElement::high() const function in class:blink::HTMLMeterElement
118 double high = getFloatingPointAttribute(highAttr, max()); local
119 return std::min(std::max(high, low()), max());
122 void HTMLMeterElement::setHigh(double high) argument
124 setFloatingPointAttribute(highAttr, high);
141 double highValue = high();
155 // The optimum range stays over high
163 // The optimum range stays between high and low.
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Drdpmc.c16 unsigned int low, high; local
18 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter));
20 return low | ((u64)high) << 32;
25 unsigned int low, high; local
27 asm volatile("rdtsc" : "=a" (low), "=d" (high));
29 return low | ((u64)high) << 32;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dcycleclock.h99 uint64 low, high;
100 __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high));
101 return (high << 32) | low;
109 // high 32 bits in tbu1; low 32 bits in tbl (tbu0 is garbage)
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dcycleclock.h97 uint64 low, high;
98 __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high));
99 return (high << 32) | low;
107 // high 32 bits in tbu1; low 32 bits in tbl (tbu0 is garbage)
/external/compiler-rt/test/builtins/Unit/
H A Dnegvti2_test.c40 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
H A Dmulti3_test.c36 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
37 expectedt.s.high, expectedt.s.low);
H A Dfixdfti_test.c39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
H A Dfixunsdfti_test.c41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
H A Dmuloti4_test.c43 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
44 expectedt.s.high, expectedt.s.low);
59 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
60 expectedt.s.high, expectedt.s.low);
/external/e2fsprogs/lib/uuid/
H A Duuid_time.c60 uint32_t high; local
65 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
66 clock_reg = uuid.time_low | ((uint64_t) high << 32);
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_analog.c42 uint8_t low, high; local
52 // 0 to 7 (MUX5 low) or 8 to 15 (MUX5 high).
56 // set the analog reference (high two bits of ADMUX) and select the
78 high = ADCH;
82 high = 0;
86 return (high << 8) | low;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dchunk_range.cc99 int high = ranges.size() - 1; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
112 high = mid - 1;
/external/compiler-rt/lib/builtins/
H A Dfloatdixf.c40 fb.u.high.s.low = ((su_int)s & 0x00008000) | /* sign */
/external/kernel-headers/original/uapi/linux/
H A Dbcache.h23 __u64 high; member in struct:bkey
44 KEY_FIELD(KEY_PTRS, high, 60, 3)
45 KEY_FIELD(HEADER_SIZE, high, 58, 2)
46 KEY_FIELD(KEY_CSUM, high, 56, 2)
47 KEY_FIELD(KEY_PINNED, high, 55, 1)
48 KEY_FIELD(KEY_DIRTY, high, 36, 1)
50 KEY_FIELD(KEY_SIZE, high, 20, KEY_SIZE_BITS)
51 KEY_FIELD(KEY_INODE, high, 0, 20)
66 * The high bit being set is a relic from when we used it to do binary
72 .high
[all...]
/external/oprofile/module/x86/
H A Dop_x86_model.h17 uint high; member in struct:op_saved_msr
/external/valgrind/main/exp-bbv/tests/ppc32-linux/
H A Dmillion.S8 lis 15,499997@ha # load high 16-bits of counter
/external/icu/icu4c/source/i18n/
H A Ducoleitr.cpp53 int32_t high; member in struct:RCEI
109 buffer[bufferIndex].high = ixHigh;
164 buffer[bufferIndex].high = ixHigh;
325 uint32_t low = 0, high = 0; local
336 high = cei->getOffset();
351 *ixHigh = high;
378 int32_t low = 0, high = 0; local
393 high = cei->getOffset();
405 rceb.put((uint32_t)ce, low, high);
415 pceBuffer.put(result, rcei->low, rcei->high);
[all...]
/external/qemu/include/fpu/
H A Dsoftfloat.h126 uint16_t high; member in struct:__anon29704
129 #define make_floatx80_init(exp, mant) { .low = mant, .high = exp }
132 uint64_t high, low; member in struct:__anon29705
134 uint64_t low, high;
137 #define make_float128(high_, low_) ((float128) { .high = high_, .low = low_ })
138 #define make_float128_init(high_, low_) { .high = high_, .low = low_ }
517 a.high &= 0x7fff;
523 a.high ^= 0x8000;
529 return (a.high & 0x7fff) == 0x7fff && a.low == 0x8000000000000000LL;
534 return a.high >> 1
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODIntervalTree.h116 IntervalSearchAdapterType adapter(result, interval.low(), interval.high());
129 static IntervalType createInterval(const T& low, const T& high, const UserData data = 0) argument
131 return IntervalType(low, high, data);
188 const T* curMax = &node->data().high();
226 *currentMaxValue = node->data().high();
227 return (node->data().high() == node->data().maxHigh());
238 if (localMaxValue < node->data().high())
239 localMaxValue = node->data().high();
/external/e2fsprogs/lib/ext2fs/
H A Dbadblocks.c164 int low, high, mid; local
173 high = bb->num-1;
176 if (blk == bb->list[high])
177 return high;
179 while (low < high) {
180 mid = ((unsigned)low + (unsigned)high)/2;
181 if (mid == low || mid == high)
186 high = mid;
H A Dgetsize.c146 ext2_loff_t high, low;
255 for (high = 1024; valid_offset(fd, high); high *= 2)
256 low = high;
257 while (low < high - 1) {
258 const ext2_loff_t mid = (low + high) / 2;
263 high = mid;
/external/e2fsprogs/resize/
H A Dextent.c144 __s64 low, high, mid; local
154 high = extent->num-1;
155 while (low <= high) {
157 mid = (low+high)/2;
159 if (low == high)
164 highval = extent->list[high].old_loc;
178 mid = low + ((__u64) (range * (high-low)));
186 high = mid-1;
/external/lldb/source/Utility/
H A DRange.cpp22 Range::ValueType high) :
24 m_high(high)
21 Range(Range::ValueType low, Range::ValueType high) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSparseArray.java338 int high = start + len, low = start - 1, guess;
340 while (high - low > 1) {
341 guess = (high + low) / 2;
346 high = guess;
349 if (high == start + len)
351 else if (a[high] == key)
352 return high;
354 return ~high;
/external/smali/util/src/main/java/org/jf/util/
H A DSparseArray.java343 int high = start + len, low = start - 1, guess;
345 while (high - low > 1) {
346 guess = (high + low) / 2;
351 high = guess;
354 if (high == start + len)
356 else if (a[high] == key)
357 return high;
359 return ~high;

Completed in 2743 milliseconds

1234567891011>>