HomeSort by relevance Sort by last modified time
    Searched defs:low (Results 126 - 150 of 1136) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/cmds/incident/
main.cpp 100 size_t low = 0; local
103 while (low <= high) {
104 size_t mid = (low + high) >> 1;
109 low = mid + 1;
  /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;
  /libcore/luni/src/test/java/libcore/java/lang/
StringBuilderTest.java 144 char high = '\uD83D', low = '\uDE02'; local
145 StringBuilder surrogateCP = new StringBuilder().append(new char[]{high, low, low});
146 assertTrue(Arrays.equals(new int[]{high, low, low}, surrogateCP.chars().toArray()));
158 char high = '\uD83D', low = '\uDE02'; local
159 StringBuilder surrogateCP = new StringBuilder().append(new char[]{high, low, low, '0'});
160 assertEquals(Character.toCodePoint(high, low), surrogateCP.codePoints().toArray()[0]);
161 assertEquals((int) low, surrogateCP.codePoints().toArray()[1]); // Unmatched surrogate
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
SparseLongArray.java 226 int high = start + len, low = start - 1, guess; local
228 while (high - low > 1) {
229 guess = (high + low) / 2;
232 low = guess;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
EndianUtils.java 29 * the low-order byte is stored in memory at the lowest address, and
185 long low = ( ( ( data[ offset + 0 ] & 0xff ) << 0 ) + local
191 return (high << 24) + (0xffffffffL & low);
220 long low = local
230 return (high << 32) + (0xffffffffL & low);
374 long low = ( ( ( value1 & 0xff ) << 0 ) + local
380 return (high << 24) + (0xffffffffL & low);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
mls.py 193 low = level_factory(policy, levels[0].strip())
202 high = low
206 policy_range = qpol.qpol_mls_range_t(policy, low.qpol_symbol, high.qpol_symbol)
209 format(sym, low, high))
223 This is a low-level policy detail exposed for internal use only.
433 low = self.low
434 if high == low:
435 return str(low)
437 return "{0} - {1}".format(low, high
462 def low(self): member in class:Range
    [all...]
  /system/core/libcutils/
fs_config.c 49 uint32_t low, high; local
51 low = src[0] | (src[1] << 8) | (src[2] << 16) | (src[3] << 24);
53 return ((uint64_t)high << 32) | (uint64_t)low;
  /art/compiler/optimizing/
intrinsics.h 129 low(0),
139 // Value of java.lang.IntegerCache#low.
140 int32_t low; member in struct:art::IntrinsicVisitor::IntegerValueOfInfo
locations.h 137 static Location RegisterPairLocation(int low, int high) {
138 return Location(kRegisterPair, low << 16 | high);
141 static Location FpuRegisterPairLocation(int low, int high) {
142 return Location(kFpuRegisterPair, low << 16 | high);
170 int low() const { function in class:art::Location
195 return static_cast<T>(low());
207 return static_cast<T>(low());
222 return Location::RegisterLocation(low());
224 return Location::FpuRegisterLocation(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;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.c 327 unsigned low, size; local
342 low = 0;
344 if ((low % 7) == 0) printf("\n ");
345 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op,
346 state.lencode[low].bits, state.lencode[low].val);
347 if (++low == size) break;
353 low = 0;
355 if ((low % 6) == 0) printf("\n ");
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.c 271 unsigned low, size; local
286 low = 0;
288 if ((low % 7) == 0) printf("\n ");
289 printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits,
290 state.lencode[low].val);
291 if (++low == size) break;
297 low = 0;
299 if ((low % 6) == 0) printf("\n ");
300 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits,
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 323 final int low = FastMath.max(iMin + 1, (9 * iMin + iMax) / 10); local
325 if (index < low) {
326 index = low;
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 463 int low = (binaryData[i] & 0x0f); local
466 buffer[(i * 2) + 1] = HEXADECIMAL[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/bison/src/
lalr.c 136 goto_number low; local
140 low = goto_map[sym - ntokens];
145 aver (low <= high);
146 middle = (low + high) / 2;
151 low = middle + 1;
  /external/e2fsprogs/e2fsck/
dirinfo.c 207 int low, high, mid; local
248 low = 0;
250 if (ino == ctx->dir_info->array[low].ino) {
253 ctx->dir_info->array[low].dotdot,
254 ctx->dir_info->array[low].parent);
256 return &ctx->dir_info->array[low];
267 while (low < high) {
268 mid = (low+high)/2;
269 if (mid == low || mid == high)
282 low = mid
    [all...]
ea_refcount.c 158 int low, high, mid; local
163 low = 0;
183 while (low <= high) {
184 mid = (low+high)/2;
192 low = mid+1;
196 * low (where high will be left at low-1).
204 return insert_refcount_el(refcount, blk, low);
  /external/elfutils/libdwfl/
linux-proc-maps.c 179 do_report (Dwfl *dwfl, char **plast_file, Dwarf_Addr low, Dwarf_Addr high)
184 low, high);
193 #define report() do_report(dwfl, &last_file, low, high)
201 Dwarf_Addr low = 0, high = 0; local
235 low = start;
260 low = start;
  /external/gptfdisk/
gptcl.cc 66 uint64_t low, high, startSector, endSector, sSize; local
292 low = FindFirstInLargest();
293 Align(&low);
294 high = FindLastInFree(low);
295 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low);
support.cc 48 // Get a numeric value from the user, between low and high (inclusive).
51 // (If def is outside of the low-high range, an explicit response
53 int GetNumber(int low, int high, int def, const string & prompt) {
57 if (low != high) { // bother only if low and high differ...
65 if ((response < low) || (response > high))
70 } while ((response < low) || (response > high));
71 } else { // low == high, so return this value
72 cout << "Using " << low << "\n"; local
73 response = low;
    [all...]
  /external/icu/icu4c/source/common/
locmap.c 1113 uint32_t low = 0; local
    [all...]
uniset.cpp 53 // LOW <= all valid values. ZERO for codepoints
418 if (c >= UNICODESET_HIGH) { // Don't need to check LOW bound
581 * Returns <tt>true</tt> if this set contains any character whose low byte
597 UChar32 low = getRangeStart(i); local
599 if ((low & ~0xFF) == (high & ~0xFF)) {
600 if ((low & 0xFF) <= v && v <= (high & 0xFF)) {
603 } else if ((low & 0xFF) <= v || v <= (high & 0xFF)) {
    [all...]
usc_impl.c 278 * in the text, see if it's followed by a low surrogate
281 UChar low = scriptRun->textArray[scriptRun->scriptLimit + 1]; local
284 * if it is followed by a low surrogate,
287 if (low >= 0xDC00 && low <= 0xDFFF) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;

Completed in 533 milliseconds

1 2 3 4 56 7 8 91011>>