HomeSort by relevance Sort by last modified time
    Searched refs:low (Results 176 - 200 of 1479) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/selinux/libsemanage/src/
port_record.c 53 int low, int high, int proto,
57 return sepol_port_key_create(handle->sepolh, low, high, proto, key_ptr);
128 void semanage_port_set_range(semanage_port_t * port, int low, int high)
131 sepol_port_set_range(port, low, high);
  /external/valgrind/exp-bbv/tests/ppc32-linux/
million.S 9 addi 15,15,499997@l # load low 16-bits of counter
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ase-errors-1.s 9 .set mips32 # ERROR: too low
25 .set mips32 # ERROR: too low
39 .set mips32 # ERROR: too low
58 .set mips32 # ERROR: too low
68 .set mips32 # ERROR: too low
77 .set mips2 # ERROR: too low
88 .set mips32 # ERROR: too low
100 .set mips32 # ERROR: too low
  /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
318 bbox[i].low = (DistanceType)dataset_[0][i];
323 if (dataset_[k][i]<bbox[i].low) bbox[i].low = (DistanceType)dataset_[k][i];
351 bbox[i].low = (DistanceType)dataset_[vind_[left]][i];
356 if (bbox[i].low>dataset_[vind_[k]][i]) bbox[i].low=(DistanceType)dataset_[vind_[k]][i];
374 right_bbox[cutfeat].low = cutval;
378 node->divhigh = right_bbox[cutfeat].low;
381 bbox[i].low = std::min(left_bbox[i].low, right_bbox[i].low)
    [all...]
  /external/icu/icu4c/source/i18n/
ucoleitr.cpp 46 int32_t low; member in struct:RCEI
109 buffer[bufferIndex].low = ixLow;
171 buffer[bufferIndex].low = ixLow;
333 uint32_t low = 0, high = 0; local
342 low = cei->getOffset();
355 *ixLow = low;
386 int32_t low = 0, high = 0; local
403 low = cei->getOffset();
413 rceb.put((uint32_t)ce, low, high, *status);
423 pceBuffer.put(result, rcei->low, rcei->high, *status)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcproxy.h 138 #define IID_BS_LOOKUP_SETUP int result,low=-1;
139 #define IID_BS_LOOKUP_INITIAL_TEST(name,sz,split) result = name##_CHECK_IID(split); if (result > 0) { low = sz - split; } else if (!result) { low = split; goto found_label; }
140 #define IID_BS_LOOKUP_NEXT_TEST(name,split) result = name##_CHECK_IID(low + split); if (result >= 0) { low = low + split; if (!result) goto found_label; }
141 #define IID_BS_LOOKUP_RETURN_RESULT(name,sz,index) low = low + 1; if (low >= sz) goto not_found_label; result = name##_CHECK_IID(low); if (result) goto not_found_label; found_label: (index) = low; return 1; not_found_label: return (…)
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_const.S 3 FETCH r0, 1 @ r0<- bbbb (low)
  /art/runtime/interpreter/mterp/mips/
op_const.S 3 FETCH(a0, 1) # a0 <- bbbb (low)
op_const_wide_32.S 2 FETCH(a0, 1) # a0 <- 0000bbbb (low)
  /art/runtime/interpreter/mterp/mips64/
op_const.S 3 lh a0, 2(rPC) # a0 <- bbbb (low)
op_const_string_jumbo.S 4 lh a0, 2(rPC) # a0 <- bbbb (low)
op_const_wide_32.S 3 lh a0, 2(rPC) # a0 <- bbbb (low)
  /art/runtime/interpreter/mterp/x86/
op_sget_wide.S 18 SET_VREG %eax, rINST # fp[A]<- low part
  /development/ndk/platforms/android-3/include/linux/
hardirq.h 28 #error HARDIRQ_BITS is too low!
47 #error PREEMPT_ACTIVE is too low!
  /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; })
  /device/google/dragon/
enctune.conf 8 QualityLevel low
  /device/htc/flounder/
enctune.conf 8 QualityLevel low
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 123 * the 16 low-order bits of the given integer value; the 16 high-order bits
215 // of a Unicode surrogate pair and low char of the pair
226 // Avoid spanning by including the low
231 * and it is the high char of a high/low pair with
232 * no low char provided.
235 * of a high/low surrogate pair, but there is
236 * no corresponding low as the high is the last char
282 * [1101 11yy] [yyxx xxxx] (low surrogate)
287 char high, low; local
290 low = chars[i]
415 char high, low; local
    [all...]
  /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/clang/test/OpenMP/
ordered_codegen.cpp 218 void foo_simd(int low, int up) {
222 for (int i = low; i < up; ++i) {
  /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
172 low = 0;
174 if (blk == bb->list[low])
175 return low;
179 while (low < high) {
180 mid = ((unsigned)low + (unsigned)high)/2;
181 if (mid == low || mid == high)
188 low = mid;

Completed in 648 milliseconds

1 2 3 4 5 6 78 91011>>