Searched defs:high (Results 1 - 25 of 95) sorted by relevance

1234

/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_sizes.c26 void ecc_sizes(int *low, int *high) argument
30 LTC_ARGCHKVD(high != NULL);
33 *high = 0;
38 if (ltc_ecc_sets[i].size > *high) {
39 *high = ltc_ecc_sets[i].size;
/external/e2fsprogs/e2fsck/
H A Ddx_dirinfo.c83 int low, high, mid; local
86 high = ctx->dx_dir_info_count-1;
91 if (ino == ctx->dx_dir_info[high].ino)
92 return &ctx->dx_dir_info[high];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
101 high = mid;
H A Ddirinfo.c178 int low, high, mid; local
218 high = ctx->dir_info->count-1;
227 if (ino == ctx->dir_info->array[high].ino) {
230 ctx->dir_info->array[high].dotdot,
231 ctx->dir_info->array[high].parent);
233 return &ctx->dir_info->array[high];
236 while (low < high) {
237 mid = (low+high)/2;
238 if (mid == low || mid == high)
249 high
[all...]
H A Dea_refcount.c155 int low, high, mid; local
162 high = (int) refcount->count-1;
164 (blk > refcount->list[high].ea_blk))) {
181 while (low <= high) {
183 mid = (low+high)/2;
185 if (low == high)
190 highval = refcount->list[high].ea_blk;
199 mid = low + ((int) (range * (high-low)));
207 high = mid-1;
213 * low (where high wil
[all...]
/external/e2fsprogs/lib/uuid/
H A Duuid_time.c49 uint32_t high; local
55 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
56 clock_reg = uuid.time_low | ((unsigned long long) high << 32);
/external/e2fsprogs/lib/blkid/
H A Dgetsize.c83 blkid_loff_t high, low; local
172 for (high = 1024; valid_offset(fd, high); high *= 2)
173 low = high;
174 while (low < high - 1)
176 const blkid_loff_t mid = (low + high) / 2;
181 high = mid;
/external/icu4c/extra/scrptrun/
H A Dscrptrun.cpp125 UChar high = charArray[scriptEnd]; local
126 UChar32 ch = high;
128 // if the character is a high surrogate and it's not the last one
130 if (high >= 0xD800 && high <= 0xDBFF && scriptEnd < charLimit - 1)
137 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
191 // end it before the high surrogate
/external/qemu/
H A Delf_ops.h188 uint64_t addr, low = (uint64_t)-1, high = 0; local
254 if ((addr + mem_size) > high)
255 high = addr + mem_size;
265 *highaddr = (uint64_t)(elf_sword)high;
H A Dcpu-defs.h113 uint16_t high; member in struct:icount_decr_u16
119 uint16_t high; member in struct:icount_decr_u16
163 /* Number of cycles left, with interrupt flag in high bit. \
/external/e2fsprogs/lib/ext2fs/
H A Dbadblocks.c164 int low, high, mid; local
173 high = bb->num-1;
176 if (blk == bb->list[high])
177 return high;
179 while (low < high) {
180 mid = (low+high)/2;
181 if (mid == low || mid == high)
186 high = mid;
/external/e2fsprogs/resize/
H A Dextent.c144 int low, high, mid; local
154 high = extent->num-1;
155 while (low <= high) {
157 mid = (low+high)/2;
159 if (low == high)
164 highval = extent->list[high].old_loc;
173 mid = low + ((int) (range * (high-low)));
181 high = mid-1;
/external/icu4c/layout/
H A DLEFontInstance.cpp60 LEUnicode16 high = chars[i]; local
61 LEUnicode32 code = high;
63 if (i < offset + count - 1 && high >= 0xD800 && high <= 0xDBFF) {
67 code = (high - 0xD800) * 0x400 + low - 0xDC00 + 0x10000;
/external/kernel-headers/original/asm-x86/
H A Dcmpxchg_32.h31 unsigned int low, unsigned int high)
42 "c"(high)
30 __set_64bit(unsigned long long * ptr, unsigned int low, unsigned int high) argument
/external/libxml2/
H A Dchvalid.c169 int low, high, mid; local
178 high = rptr->nbShortRange - 1;
180 while (low <= high) {
181 mid = (low + high) / 2;
183 high = mid - 1;
185 if ((unsigned short) val > sptr[mid].high) {
197 high = rptr->nbLongRange - 1;
199 while (low <= high) {
200 mid = (low + high) / 2;
202 high
[all...]
/external/libxml2/include/libxml/
H A Dchvalid.h32 unsigned short high; member in struct:_xmlChSRange
39 unsigned int high; member in struct:_xmlChLRange
/external/qemu/elff/
H A Ddwarf_die.cc132 * where that routine is inlined), or a pair "low PC, and high PC" describing
138 AddrType high; 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/bison/src/
H A Dlalr.c146 goto_number high; local
152 high = goto_map[sym - ntokens + 1] - 1;
156 assert (low <= high);
157 middle = (low + high) / 2;
164 high = middle - 1;
/external/chromium/third_party/icu/source/common/
H A Dusc_impl.c271 UChar high = scriptRun->textArray[scriptRun->scriptLimit]; local
272 UChar32 ch = high;
277 * if the character is a high surrogate and it's not the last one
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
337 * end it before the high surrogate
/external/chromium/third_party/icu/source/i18n/
H A Djapancal.cpp401 int32_t high = kEraCount; local
404 fprintf(stderr, " high=%d\n", high);
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);
433 high = i;
436 fprintf(stderr, ". low=%d, high=%d, i=%d, diff=%d.. %d\n", low, high,
[all...]
/external/chromium/third_party/icu/source/test/intltest/
H A Dtsnmfmt.cpp140 double high = (DBL_MAX/smallerThanMax)/10.0; local
141 double low = -high;
144 } while (low > it || it > high);
H A Dtzfmttst.cpp62 UDate low, high; local
66 high = cal->getTime(status);
182 if (!((BasicTimeZone*)&outtz)->hasEquivalentTransitions((BasicTimeZone&)*tz, low, high, TRUE, status)) {
/external/icu4c/common/
H A Dlocmap.c928 uint32_t high = gLocaleCount; local
929 uint32_t mid = high;
945 while (high > low) /*binary search*/{
947 mid = (high+low) >> 1; /*Finds median*/
954 high = mid;
H A Dunorm.cpp342 uint16_t high, low, h; local
349 high=(uint16_t)(c>>16);
352 /* each entry is a triplet { high(c), low(c), result } */
355 h=table[i]&0x1f; /* high word */
356 if(high<h || (high==h && low<table[i+1])) {
365 if(high==(h&0x1f) && low==table[start+1]) {
377 i|=((int32_t)h&0x1f00)<<8; /* add high bits from high(c) */
H A Dusc_impl.c271 UChar high = scriptRun->textArray[scriptRun->scriptLimit]; local
272 UChar32 ch = high;
277 * if the character is a high surrogate and it's not the last one
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
337 * end it before the high surrogate
/external/icu4c/i18n/
H A Djapancal.cpp401 int32_t high = kEraCount; local
404 fprintf(stderr, " high=%d\n", high);
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);
433 high = i;
436 fprintf(stderr, ". low=%d, high=%d, i=%d, diff=%d.. %d\n", low, high,
[all...]

Completed in 253 milliseconds

1234