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

1 2 3 4 5 67 8 91011>>

  /external/kernel-headers/original/uapi/linux/
bcache.h 23 __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 = (1ULL << 63) | ((__u64) (size) << 20) | (inode),
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 38 public static int constrain(int amount, int low, int high) {
39 return amount < low ? low : (amount > high ? high : amount);
42 public static long constrain(long amount, long low, long high) {
43 return amount < low ? low : (amount > high ? high : amount);
46 public static float constrain(float amount, float low, float high) {
47 return amount < low ? low : (amount > high ? high : amount);
  /external/opencv3/modules/flann/include/opencv2/flann/
kdtree_single_index.h 278 DistanceType low, high; member in struct:cvflann::KDTreeSingleIndex::Interval
319 bbox[i].high = (DistanceType)dataset_[0][i];
324 if (dataset_[k][i]>bbox[i].high) bbox[i].high = (DistanceType)dataset_[k][i];
352 bbox[i].high = (DistanceType)dataset_[vind_[left]][i];
357 if (bbox[i].high<dataset_[vind_[k]][i]) bbox[i].high=(DistanceType)dataset_[vind_[k]][i];
370 left_bbox[cutfeat].high = cutval;
377 node->divlow = left_bbox[cutfeat].high;
382 bbox[i].high = std::max(left_bbox[i].high, right_bbox[i].high)
    [all...]
  /external/boringssl/src/crypto/ec/
p256-64.c 330 s64 high, low; local
342 /* We perform two partial reductions where we eliminate the high-word of
365 high = tmp[3] >> 64;
366 /* As tmp[3] < 2^65, high is either 1 or 0 */
367 high <<= 63;
368 high >>= 63;
369 /* high is:
370 * all ones if the high word of tmp[3] is 1
371 * all zeros if the high word of tmp[3] if 0 */
385 mask = (mask & low) | high;
421 u64 high, low; local
510 u64 high, low; local
    [all...]
  /external/icu/icu4c/source/i18n/
ucoleitr.cpp 47 int32_t high; member in struct:RCEI
110 buffer[bufferIndex].high = ixHigh;
172 buffer[bufferIndex].high = ixHigh;
333 uint32_t low = 0, high = 0; local
344 high = cei->getOffset();
359 *ixHigh = high;
386 int32_t low = 0, high = 0; local
401 high = cei->getOffset();
413 rceb.put((uint32_t)ce, low, high, *status);
423 pceBuffer.put(result, rcei->low, rcei->high, *status)
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_const.S 4 FETCH r1, 2 @ r1<- BBBB (high)
  /art/runtime/interpreter/mterp/mips/
op_const.S 4 FETCH(a1, 2) # a1 <- BBBB (high)
op_const_wide_32.S 4 FETCH_S(a2, 2) # a2 <- ssssBBBB (high)
  /art/runtime/interpreter/mterp/mips64/
op_const.S 4 lh a1, 4(rPC) # a1 <- BBBB (high)
op_const_string_jumbo.S 5 lh a4, 4(rPC) # a4 <- BBBB (high)
op_const_wide_32.S 4 lh a1, 4(rPC) # a1 <- BBBB (high)
  /art/runtime/interpreter/mterp/x86/
op_sget_wide.S 19 SET_VREG_HIGH %edx, rINST # fp[A+1]<- high part
  /development/ndk/platforms/android-9/arch-mips/include/asm/
div64.h 25 #define do_div64_32(res, high, low, base) ({ unsigned long __quot32, __mod32; unsigned long __cf, __tmp, __tmp2, __i; __asm__(".set push\n\t" ".set noat\n\t" ".set noreorder\n\t" "move %2, $0\n\t" "move %3, $0\n\t" "b 1f\n\t" " li %4, 0x21\n" "0:\n\t" "sll $1, %0, 0x1\n\t" "srl %3, %0, 0x1f\n\t" "or %0, $1, %5\n\t" "sll %1, %1, 0x1\n\t" "sll %2, %2, 0x1\n" "1:\n\t" "bnez %3, 2f\n\t" " sltu %5, %0, %z6\n\t" "bnez %5, 3f\n" "2:\n\t" " addiu %4, %4, -1\n\t" "subu %0, %0, %z6\n\t" "addiu %2, %2, 1\n" "3:\n\t" "bnez %4, 0b\n\t" " srl %5, %1, 0x1f\n\t" ".set pop" : "=&r" (__mod32), "=&r" (__tmp), "=&r" (__quot32), "=&r" (__cf), "=&r" (__i), "=&r" (__tmp2) : "Jr" (base), "0" (high), "1" (low)); (res) = __quot32; __mod32; })
  /external/autotest/client/site_tests/hardware_Thermal/
hardware_Thermal.py 58 low, high = TEMP_RANGE[units]
61 if not low <= ts.get_reading() <= high:
  /external/compiler-rt/test/builtins/Unit/
fixtfti_test.c 38 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunstfti_test.c 44 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
muloti4_test.c 43 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/ext2fs/
badblocks.c 164 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;
getsize.c 146 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/
extent.c 144 __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/elfutils/config/
known-dwarf.awk 50 if (elt ~ /(low?|hi|high)_user$/)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseArray.java 338 int high = start + len, low = start - 1, guess; local
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/selinux/libsemanage/include/semanage/
port_record.h 28 int low, int high, int proto,
51 extern void semanage_port_set_range(semanage_port_t * port, int low, int high);
  /external/smali/util/src/main/java/org/jf/util/
SparseArray.java 343 int high = start + len, low = start - 1, guess; local
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;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 307 int high = start + len, low = start - 1, guess; local
309 while (high - low > 1) {
310 guess = (high + low) / 2;
315 high = guess;
318 if (high == start + len)
320 else if (a[high] == key)
321 return high;
323 return ~high;

Completed in 606 milliseconds

1 2 3 4 5 67 8 91011>>