/toolchain/binutils/binutils-2.25/bfd/ |
hash.c | 345 const unsigned long *low = &primes[0]; local 348 while (low != high) 350 const unsigned long *mid = low + (high - low) / 2; 352 low = mid + 1; 357 if (n >= *low) 360 return *low;
|
/external/opencv3/modules/imgproc/test/ |
test_moments.cpp | 65 void get_minmax_bounds( int i, int j, int type, Scalar& low, Scalar& high ); 86 void CV_MomentsTest::get_minmax_bounds( int i, int j, int type, Scalar& low, Scalar& high ) 88 cvtest::ArrayTest::get_minmax_bounds( i, j, type, low, high ); 93 low = Scalar::all(0); 98 low = Scalar::all(-1000); 103 low = Scalar::all(-1); 342 void get_minmax_bounds( int i, int j, int type, Scalar& low, Scalar& high ); 356 void CV_HuMomentsTest::get_minmax_bounds( int i, int j, int type, Scalar& low, Scalar& high ) 358 cvtest::ArrayTest::get_minmax_bounds( i, j, type, low, high ); 359 low = Scalar::all(-10000) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
StringTest.java | 163 // A high surrogate not followed by a low surrogate is an error replaced with '?'. 530 char high = '\uD83D', low = '\uDE02'; local 531 String surrogateCP = new String(new char[]{high, low, low}); 532 assertTrue(Arrays.equals(new int[]{high, low, low}, surrogateCP.chars().toArray())); 544 char high = '\uD83D', low = '\uDE02'; local 545 String surrogateCP = new String(new char[]{high, low, low, '0'}); 546 assertEquals(Character.toCodePoint(high, low), surrogateCP.codePoints().toArray()[0]) [all...] |
/external/opencv3/modules/ts/src/ |
ts_arrtest.cpp | 228 void ArrayTest::get_minmax_bounds( int i, int /*j*/, int type, Scalar& low, Scalar& high ) 249 low = Scalar::all(l); 260 Scalar low, high; local 262 get_minmax_bounds( i, j, arr.type(), low, high ); 263 randUni( ts->get_rng(), arr, low, high );
|
/external/v8/src/ |
list-inl.h | 250 int low = 0; local 252 while (low <= high) { 253 int mid = low + (high - low) / 2; 261 low = mid + 1;
|
unicode.cc | 58 unsigned int low = 0; local 60 while (high != low) { 61 unsigned int mid = low + ((high - low) >> 1); 68 low = mid; 71 low = mid + 1; 79 int32_t field = TableGet<kEntryDist>(table, low); 114 unsigned int low = 0; local 116 while (high != low) { 117 unsigned int mid = low + ((high - low) >> 1) [all...] |
/frameworks/base/core/java/android/view/ |
GhostView.java | 237 int low = firstGhost; local 240 while (low <= high) { 241 int mid = (low + high) / 2; 246 low = mid + 1; 253 return low;
|
/system/extras/libpagemap/ |
pm_process.c | 108 uint64_t low, uint64_t high, 116 if (!proc || (low > high) || !range_out || !len) 119 if (low == high) { 125 firstpage = low / proc->ker->pagesize; 126 numpages = (high - low) / proc->ker->pagesize;
|
/external/opencv3/modules/calib3d/src/ |
dls.h | 164 int low = 0; local 174 if (i < low || i > high) { 185 while (n1 >= low) { 189 while (l > low) { 262 for (int i = low; i <= high; i++) { 297 for (int i = low; i <= n1; i++) { 316 for (int i = low; i <= n1; i++) { 418 for (int i = low; i <= high; i++) { 430 } // while (n1 >= low) 572 if (i < low || i > high) 598 int low = 0; local [all...] |
/frameworks/base/core/java/android/text/ |
Layout.java | 1101 int high = getLineCount(), low = -1, guess; local 1124 int high = getLineCount(), low = -1, guess; local 1189 int high = there - 1 + 1, low = here + 1 - 1, guess; local [all...] |
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/ |
objcopy.exp | 298 set low "" 310 if {$low == "" || $vma < $low} { 311 set low $vma 318 if {$low == "" || $origstart == ""} then { 331 if {$vma != $low + 0x123} then { 332 send_log "$vma != $low + 0x123\n" 349 if {$vma == $low} then { 365 if {$vma != $low + 4} then { 366 send_log "$vma != $low + 4\n [all...] |
/external/gptfdisk/ |
gptcl.cc | 66 uint64_t low, high, startSector, endSector, sSize; local 288 low = FindFirstInLargest(); 289 Align(&low); 290 high = FindLastInFree(low); 291 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low);
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/ |
ICUZDump.java | 237 * <high_year> (exclusive). The default values are 1902(low) and 2038(high). 243 int low = 1902; local 258 low = Integer.parseInt(years[0]); 324 dumpZone(pw, lineSep, tzids[i], low, high, jdk); 338 dumpZone(w, lineSep, tzids[i], low, high, jdk); 347 private static void dumpZone(Writer w, String lineSep, String tzid, int low, int high, boolean isJdk) throws IOException { 356 dumper.setLowYear(low);
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/ftrandom/ |
ftrandom.c | 406 getRandom( int low, 409 if ( low - high < 0x10000L ) 410 return low + ( ( random() >> 8 ) % ( high + 1 - low ) ); 412 return low + ( random() % ( high + 1 - low ) );
|
/libcore/ojluni/src/main/java/java/lang/ |
Integer.java | 626 static final int low = -128; 639 h = Math.min(i, Integer.MAX_VALUE - (-low) -1); 643 cache = new Integer[(high - low) + 1]; 644 int j = low; 669 if (i >= IntegerCache.low && i <= IntegerCache.high) 670 return IntegerCache.cache[i + (-IntegerCache.low)]; [all...] |
FloatingDecimal.java | 82 * count number of bits from high-order 1 bit to low-order 1 bit, 299 // Discard non-significant low-order bits, while rounding, 310 // round up based on the low-order bits we're discarding 690 boolean low, high; 727 low = (b < m ); 743 high = low = false; 745 while( ! low && ! high ){ 751 low = (b < m ); 759 low = true; 780 low = (b < m ) [all...] |
/external/opencv3/doc/pattern_tools/ |
svgfig.py | [all...] |
/art/runtime/interpreter/mterp/mips/ |
op_mul_long.S | 42 SET_VREG64(v0, v1, a0) # vAA::vAA+1 <- v0(low) :: v1(high)
|
/art/runtime/jdwp/ |
jdwp_request.cc | 179 uint64_t low = Read4BE(); local 180 return (high << 32) | low;
|
/bootable/recovery/ |
wear_touch.cpp | 32 WearSwipeDetector::WearSwipeDetector(int low, int high, OnSwipeCallback callback, void* cookie): 33 mLowThreshold(low),
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
SwitchData.java | 211 long low = cases.get(0); local 213 long result = ((high - low + 1)) * 2 + 4;
|
/dalvik/dx/src/com/android/dx/dex/code/ |
SwitchData.java | 212 long low = cases.get(0); local 214 long result = ((high - low + 1)) * 2 + 4;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
SwitchData.java | 212 long low = cases.get(0); local 214 long result = ((high - low + 1)) * 2 + 4;
|
/external/guava/guava/src/com/google/common/hash/ |
Murmur3_32HashFunction.java | 92 int low = (int) input; local 95 int k1 = mixK1(low);
|
/external/icu/icu4c/source/test/perf/normperf/ |
dtfmtrtperf.h | 90 UDate low, high; local 92 low = cal->getTime(*status);
|