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

<<11121314151617181920>>

  /external/libxml2/
chvalid.c 169 int low, high, mid; local
177 low = 0;
180 while (low <= high) {
181 mid = (low + high) / 2;
182 if ((unsigned short) val < sptr[mid].low) {
186 low = mid + 1;
196 low = 0;
199 while (low <= high) {
200 mid = (low + high) / 2;
201 if (val < lptr[mid].low) {
    [all...]
  /external/opencv3/modules/imgproc/src/
colormap.cpp 86 int low = 0; local
89 if(XI.at<_Tp>(i,0) < X.at<_Tp>(low, 0))
92 low = high - 1;
94 while((high-low)>1) {
95 const int c = low + ((high - low) >> 1);
97 low = c;
103 yi.at<_Tp>(i,0) += Y.at<_Tp>(low,0)
104 + (XI.at<_Tp>(i,0) - X.at<_Tp>(low,0))
105 * (Y.at<_Tp>(high,0) - Y.at<_Tp>(low,0)
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java 99 * count number of bits from high-order 1 bit to low-order 1 bit,
316 // Discard non-significant low-order bits, while rounding,
327 // round up based on the low-order bits we're discarding
757 boolean low, high;
794 low = (b < m );
810 high = low = false;
812 while( ! low && ! high ){
818 low = (b < m );
826 low = true;
847 low = (b < m )
    [all...]
  /external/selinux/checkpolicy/
policy_define.c 1733 uint16_t low; member in struct:av_ioctl_range
2103 uint8_t low, high; local
2141 uint16_t low, high; local
2183 uint16_t low, high; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3lexer.h 158 ANTLR3_BOOLEAN (*matchRange) (struct ANTLR3_LEXER_struct * lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high);
  /external/autotest/client/common_lib/cros/graphite/
es_utils.py 292 @param range_constraints: list of tuples of (field, low, high) pairs
316 for key, low, high in range_constraints:
317 if low is None and high is None:
320 if low is not None:
321 temp_dict['gte'] = low
  /external/boringssl/src/crypto/bn/
internal.h 269 # define BN_UMULT_LOHI(low,high,a,b) \
271 : "=a"(low),"=d"(high) \
276 # define BN_UMULT_LOHI(low, high, a, b) ((low) = _umul128((a), (b), &(high)))
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_tokenizer.py 143 low = int(m.group(2), 16)
144 if 0xD800 <= high <= 0xDBFF and 0xDC00 <= low <= 0xDFFF:
145 cp = ((high - 0xD800) << 10) + (low - 0xDC00) + 0x10000
148 return unichr(high) + unichr(low)
  /external/compiler-rt/test/builtins/Unit/
clzti2_test.c 33 at.s.high, at.s.low, x, expected);
popcountti2_test.c 41 at.s.high, at.s.low, x, expected);
  /external/jetty/src/java/org/eclipse/jetty/util/
IPAddressMap.java 287 int low = 0, high = 255; local
297 low = Integer.parseInt(bounds[0]);
304 if (low > high)
309 _mask.set(low, high+1);
  /external/kernel-headers/original/uapi/linux/
bcache.h 24 __u64 low; member in struct:bkey
57 return k->low;
62 k->low = v;
73 .low = (offset) \
  /external/opencv3/modules/imgproc/test/
test_distancetransform.cpp 58 void get_minmax_bounds( int i, int j, int type, Scalar& low, Scalar& high );
117 void CV_DisTransTest::get_minmax_bounds( int i, int j, int type, Scalar& low, Scalar& high )
119 cvtest::ArrayTest::get_minmax_bounds( i, j, type, low, high );
122 low = Scalar::all(0);
  /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;
344 low = guess;
  /external/skia/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 22 static inline int16x8_t sbpsm_clamp_tile8(int32x4_t low, int32x4_t high, unsigned max) {
26 res = vuzpq_s16(vreinterpretq_s16_s32(low), vreinterpretq_s16_s32(high)).val[1];
64 static inline int16x8_t sbpsm_repeat_tile8(int32x4_t low, int32x4_t high, unsigned max) {
69 res = vuzpq_u16(vreinterpretq_u16_s32(low), vreinterpretq_u16_s32(high)).val[0];
  /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;
349 low = guess;
  /external/srtp/crypto/include/
integers.h 104 extern uint64_t make64(uint32_t high, uint32_t low);
  /frameworks/av/media/libeffects/testlibs/
AudioEqualizer.h 29 // The EQ is composed of a low-shelf, zero or more peaking filters and a high
145 // For the low shelf, the low bound is 0 and the high bound is the band
147 // For the high shelf, the low bound is the band frequency and the high
150 void getBandRange(int band, uint32_t & low, uint32_t & high) const;
221 // The low-shelving filter.
  /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;
313 low = guess;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
defaultquery.py 42 ("low", "high", "low_high")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
mls.py 213 This only compares the low and high levels of the range.
215 to levels between the low and high levels of the range.
220 self.low = LevelWrapper(range_.low)
225 return self.low == other.low and \
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 278 long low = currentDate; local
280 while (low - high > EPSILON) {
281 long mid = (high + low)/2;
283 if (midOffset == low) {
284 low = mid;
289 inflectionPoints.add(new Long(low));
290 lastInflection = low;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 274 long low = currentDate; local
276 while (low - high > EPSILON) {
277 long mid = (high + low)/2;
279 if (midOffset == low) {
280 low = mid;
285 inflectionPoints.add(new Long(low));
286 lastInflection = low;
  /external/opencv/cv/src/
cvthresh.cpp 209 double low = 0, high = 0, delta = 0; local
225 low = hist->thresh[0][0];
230 low = 0;
234 delta = (high-low)/count;
235 low += delta*0.5;
245 mu += (i*delta + low)*h[i];
269 val_i = i*delta + low;
  /hardware/bsp/intel/peripheral/libupm/src/h3lis331dl/
h3lis331dl.cxx 551 uint8_t low, high; local
554 low = m_i2c.readReg(REG_OUT_X_L);
556 m_rawX = ((high << 8) | low);
559 low = m_i2c.readReg(REG_OUT_Y_L);
561 m_rawY = ((high << 8) | low);
564 low = m_i2c.readReg(REG_OUT_Z_L);
566 m_rawZ = ((high << 8) | low);

Completed in 1985 milliseconds

<<11121314151617181920>>