HomeSort by relevance Sort by last modified time
    Searched defs:low (Results 26 - 50 of 167) sorted by null

12 3 4 5 6 7

  /external/e2fsprogs/resize/
extent.c 144 int low, high, mid; local
153 low = 0;
155 while (low <= high) {
157 mid = (low+high)/2;
159 if (low == high)
160 mid = low;
163 lowval = extent->list[low].old_loc;
173 mid = low + ((int) (range * (high-low)));
183 low = mid+1
    [all...]
  /external/icu4c/common/
locmap.c 927 uint32_t low = 0; local
945 while (high > low) /*binary search*/{
947 mid = (high+low) >> 1; /*Finds median*/
957 low = mid;
    [all...]
  /external/icu4c/i18n/
japancal.cpp 384 int32_t low = 0; local
395 low = kCurrentEra;
397 fprintf(stderr, " low=%d (special)\n", low);
406 while (low < high - 1) {
407 int32_t i = (low + high) / 2;
411 fprintf(stderr, " d=%d low=%d, high=%d. Considering %d:M%d D%d Y%d. { we are ?:M%d D%d Y%d }\n",
412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year);
431 low = i;
436 fprintf(stderr, ". low=%d, high=%d, i=%d, diff=%d.. %d\n", low, high, i, diff, year)
    [all...]
  /external/icu4c/test/intltest/
tsnmfmt.cpp 141 double low = -high; local
144 } while (low > it || it > high);
  /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/libxml2/include/libxml/
chvalid.h 31 unsigned short low; member in struct:_xmlChSRange
38 unsigned int low; member in struct:_xmlChLRange
  /external/qemu/
cpu-defs.h 114 uint16_t low; member in struct:icount_decr_u16
118 uint16_t low; member in struct:icount_decr_u16
  /external/qemu/elff/
dwarf_die.cc 132 * where that routine is inlined), or a pair "low PC, and high PC" describing
137 AddrType low; local
140 while (elf_file()->get_range(range_off, &low, &high) &&
141 (low != 0 || high != 0)) {
142 if (address >= low && address < high) {
212 Elf_Xword low, high; local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
214 (low != 0 || high != 0)) {
216 low, high);
220 Elf_Word low, high; local
    [all...]
  /external/srec/srec/clib/
voc_read.c 167 const char* low; local
177 low = voc->first_entry;
181 middle = low + ((high - low) >> 1) - 1;
189 if (low == high) return 0;
199 if (diff > 0) low = middle;
204 low = middle;
205 while (voc->first_entry < low) {
207 for (lo = low - 2; *lo != '\n'; lo--) ;
210 low = lo
    [all...]
  /external/webkit/WebCore/platform/graphics/
WidthIterator.cpp 105 // Make sure we have another character and it's a low surrogate.
108 UChar low = cp[1]; local
109 if (!U16_IS_TRAIL(low))
111 c = U16_GET_SUPPLEMENTARY(c, low);
  /frameworks/base/core/java/android/util/
SparseArray.java 306 int high = start + len, low = start - 1, guess; local
308 while (high - low > 1) {
309 guess = (high + low) / 2;
312 low = guess;
SparseIntArray.java 217 int high = start + len, low = start - 1, guess; local
219 while (high - low > 1) {
220 guess = (high + low) / 2;
223 low = guess;
  /frameworks/base/media/libeffects/testlibs/
AudioEqualizer.cpp 172 void AudioEqualizer::getBandRange(int band, uint32_t & low,
176 low = 0;
179 low = mpHighShelf->getFrequency();
182 mpPeakingFilters[band - 1].getBandRange(low, high);
256 uint32_t low = mpLowShelf->getFrequency(); local
257 if (targetFreq <= low) {
272 low = freq;
274 // Now, low is right below the target and high is right above. See which one
276 low = Effects_log2(low);
    [all...]
  /libcore/luni/src/main/native/
java_nio_charset_Charsets.cpp 209 jchar low = (i + 1 != end) ? chars[i + 1] : 0; local
210 if (!U16_IS_SURROGATE_LEAD(high) || !U16_IS_SURROGATE_TRAIL(low)) {
216 // Now we know we have a *valid* surrogate pair, we can consume the low surrogate.
218 ch = U16_GET_SUPPLEMENTARY(high, low);
  /packages/apps/Email/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);
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationTest.java 39 LOW (100, 140),
44 private int low; field in class:ConfigurationTest.Density
47 Density(int low, int high) {
48 this.low = low;
55 if (value >= d.low && value <= d.high) {
177 * QVGA | low (100-140) | small
178 * WQVGA | low (100-140) | normal
192 // QVGA | low (100-140) | small
193 new ScreenConfiguration(240, 320, Density.LOW, Configuration.SCREENLAYOUT_SIZE_SMALL)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 211 long low = cases.get(0); local
213 long result = ((high - low + 1)) * 2 + 4;
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 458 int low = (binaryData[i] & 0x0f); local
461 buffer[(i * 2) + 1] = HEXADECIMAL[low];
  /external/bison/src/
lalr.c 147 goto_number low; local
151 low = goto_map[sym - ntokens];
156 assert (low <= high);
157 middle = (low + high) / 2;
162 low = middle + 1;
  /external/chromium/third_party/icu/source/common/
uniset.cpp 49 // LOW <= all valid values. ZERO for codepoints
414 if (c >= UNICODESET_HIGH) { // Don't need to check LOW bound
577 * Returns <tt>true</tt> if this set contains any character whose low byte
593 UChar32 low = getRangeStart(i); local
595 if ((low & ~0xFF) == (high & ~0xFF)) {
596 if ((low & 0xFF) <= v && v <= (high & 0xFF)) {
599 } 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;
  /external/chromium/third_party/icu/source/test/intltest/
tzfmttst.cpp 62 UDate low, high; local
64 low = cal->getTime(status);
182 if (!((BasicTimeZone*)&outtz)->hasEquivalentTransitions((BasicTimeZone&)*tz, low, high, TRUE, status)) {
  /external/chromium/third_party/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/e2fsprogs/e2fsck/
dirinfo.c 178 int low, high, mid; local
217 low = 0;
219 if (ino == ctx->dir_info->array[low].ino) {
222 ctx->dir_info->array[low].dotdot,
223 ctx->dir_info->array[low].parent);
225 return &ctx->dir_info->array[low];
236 while (low < high) {
237 mid = (low+high)/2;
238 if (mid == low || mid == high)
251 low = mid
    [all...]
ea_refcount.c 155 int low, high, mid; local
161 low = 0;
181 while (low <= high) {
183 mid = (low+high)/2;
185 if (low == high)
186 mid = low;
189 lowval = refcount->list[low].ea_blk;
199 mid = low + ((int) (range * (high-low)));
209 low = mid+1
    [all...]

Completed in 968 milliseconds

12 3 4 5 6 7