HomeSort by relevance Sort by last modified time
    Searched defs:high (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /bionic/libm/src/
s_fabs.c 27 u_int32_t high; local
28 GET_HIGH_WORD(high,x);
29 SET_HIGH_WORD(x,high&0x7fffffff);
s_modf.c 39 if(j0<20) { /* integer part in high x */
46 u_int32_t high; local
48 GET_HIGH_WORD(high,x);
49 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
57 u_int32_t high; local
59 GET_HIGH_WORD(high,x);
60 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
65 u_int32_t high; local
67 GET_HIGH_WORD(high,x);
68 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 *
    [all...]
e_hypot.c 119 u_int32_t high; local
121 GET_HIGH_WORD(high,t1);
122 SET_HIGH_WORD(t1,high+(k<<20));
s_cbrtf.c 44 u_int32_t high; local
57 GET_FLOAT_WORD(high,t);
58 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
68 GET_FLOAT_WORD(high,t);
69 SET_FLOAT_WORD(t,(high&0xfffff000)+0x00001000);
s_cbrt.c 42 u_int32_t high,low; local
70 GET_HIGH_WORD(high,t);
71 SET_HIGH_WORD(t,sign|((high&0x7fffffff)/3+B2));
81 GET_HIGH_WORD(high,t);
82 INSERT_WORDS(t,high+0x00000001,0);
e_jn.c 253 u_int32_t high; local
257 GET_HIGH_WORD(high,b);
258 for(i=1;i<n&&high!=0xfff00000;i++){
261 GET_HIGH_WORD(high,b);
s_expm1.c 140 hx &= 0x7fffffff; /* high word of |x| */
197 u_int32_t high; local
199 GET_HIGH_WORD(high,y);
200 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
205 u_int32_t high; local
208 GET_HIGH_WORD(high,y);
209 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
211 u_int32_t high; local
215 GET_HIGH_WORD(high,y);
216 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent *
    [all...]
e_rem_pio2.c 83 GET_HIGH_WORD(hx,x); /* high word of x */
121 u_int32_t high; local
124 GET_HIGH_WORD(high,y[0]);
125 i = j-((high>>20)&0x7ff);
132 GET_HIGH_WORD(high,y[0]);
133 i = j-((high>>20)&0x7ff);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
BinarySearch.java 34 int low = 0, high = data.length() - 1; local
35 while (low <= high) {
36 int mid = (low + high) >> 1;
41 high = mid - 1;
59 int low = 0, mid = -1, high = data.length() - 1; local
60 while (low <= high) {
61 mid = (low + high) >> 1;
68 high = mid - 1;
  /external/e2fsprogs/e2fsck/
dx_dirinfo.c 83 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;
  /external/e2fsprogs/lib/uuid/
uuid_time.c 49 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);
  /frameworks/base/media/libmedia/
autodetect.cpp 852 int high = rangeCount; local
854 while (low < high) {
855 int i = (low + high) / 2;
862 high = i;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
double-int.h 57 HOST_WIDE_INT high; member in struct:__anon12791
77 r.high = cst < 0 ? -1 : 0;
99 r.high = 0;
154 return cst.low == 0 && cst.high == 0;
162 return cst.low == 1 && cst.high == 0;
170 return (cst.low == ALL_ONES && cst.high == -1);
178 return cst1.low == cst2.low && cst1.high == cst2.high;
  /external/e2fsprogs/lib/blkid/
getsize.c 83 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/
scrptrun.cpp 125 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/icu4c/layout/
LEFontInstance.cpp 60 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/qemu/
elf_ops.h 188 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;
  /frameworks/base/core/java/android/util/
SparseBooleanArray.java 211 int high = start + len, low = start - 1, guess; local
213 while (high - low > 1) {
214 guess = (high + low) / 2;
219 high = guess;
222 if (high == start + len)
224 else if (a[high] == key)
225 return high;
227 return ~high;
  /dalvik/libcore/luni/src/main/native/
org_apache_harmony_luni_util_NumberConvert.c 96 int high, low, i; local
236 high = compareHighPrecision (Temp, TempLength, S, SLength) >= 0;
238 if (low || high)
255 if (low && !high)
257 else if (high && !low)
  /dalvik/vm/
Bits.h 59 u4 low, high; local
61 high = pSrc[0];
62 high = (high << 8) | pSrc[1];
63 high = (high << 8) | pSrc[2];
64 high = (high << 8) | pSrc[3];
70 return ((u8) high << 32) | (u8) low;
101 u4 low, high; local
156 u4 low, high; local
204 u4 low, high; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
badblocks.c 164 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/
extent.c 144 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/i18n/
japancal.cpp 401 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, i, diff, year)
    [all...]
  /external/icu4c/test/intltest/
tsnmfmt.cpp 140 double high = (DBL_MAX/smallerThanMax)/10.0; local
141 double low = -high;
144 } while (low > it || it > high);
  /external/libxml2/
chvalid.c 169 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 = mid - 1
    [all...]

Completed in 816 milliseconds

1 2 3 4 5 6