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

1 2 3 4 5 6 7 8 91011>>

  /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...]
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);
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_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...]
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_sizes.c 26 void ecc_sizes(int *low, int *high)
30 LTC_ARGCHKVD(high != NULL);
33 *high = 0;
38 if (ltc_ecc_sets[i].size > *high) {
39 *high = ltc_ecc_sets[i].size;
  /cts/tests/tests/media/src/android/media/cts/
CameraProfileTest.java 36 private void checkQuality(int low, int mid, int high) {
37 Log.v(TAG, "low = " + low + ", mid = " + mid + ", high = " + high);
40 assertTrue(high >= 0 && high <= 100);
41 assertTrue(low <= mid && mid <= high);
54 int high = CameraProfile.getJpegEncodingQualityParameter(CameraProfile.QUALITY_HIGH); local
55 checkQuality(low, mid, high);
70 int high = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_HIGH); local
71 checkQuality(low, mid, high);
    [all...]
  /external/stlport/src/
collate.cpp 32 string collate<char>::do_transform(const char* low, const char* high) const
33 { return string(low, high); }
35 long collate<char>::do_hash(const char* low, const char* high) const {
37 for ( ; low < high; ++low)
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const
53 { return wstring(low, high); }
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const {
57 for ( ; low < high; ++low)
  /ndk/sources/android/stlport/src/
collate.cpp 32 string collate<char>::do_transform(const char* low, const char* high) const
33 { return string(low, high); }
35 long collate<char>::do_hash(const char* low, const char* high) const {
37 for ( ; low < high; ++low)
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const
53 { return wstring(low, high); }
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const {
57 for ( ; low < 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/qemu/fpu/
softfloat-specialize.h 56 bits64 high, low; member in struct:__anon6275
117 z.high = ( (bits64) float32_val(a) )<<41;
128 bits32 mantissa = a.high>>41;
131 ( ( (bits32) a.sign )<<31 ) | 0x7F800000 | ( a.high>>41 ) );
249 z.high = float64_val(a)<<12;
260 bits64 mantissa = a.high>>12;
266 | ( a.high>>12 ));
326 | `high' and `low' values hold the most- and least-significant bits,
349 ( ( a.high & 0x7FFF ) == 0x7FFF )
353 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 )
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /development/ndk/platforms/android-5/arch-x86/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /dalvik/vm/mterp/armv5te/
OP_CONST_WIDE.S 5 FETCH(r2, 3) @ r2<- hhhh (high middle)
7 FETCH(r3, 4) @ r3<- HHHH (high)
9 orr r1, r2, r3, lsl #16 @ r1<- HHHHhhhh (high word)
  /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;
  /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:__anon13039
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;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
double-int.h 57 HOST_WIDE_INT high; member in struct:__anon13396
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;
  /libcore/luni/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 32 * which can be called if the character is not the high one in
35 * isInEncoding(char high, char low);
37 * which can be called if the two characters from a high/low surrogate pair.
118 * character formed by the high/low pair is in the encoding.
119 * @param high a char that the a high char of a high/low surrogate pair.
120 * @param low a char that is the low char of a high/low surrogate pair.
125 public boolean isInEncoding(char high, char low) {
134 return m_encoding.isInEncoding(high, low);
    [all...]
  /external/bison/src/
tables.h 90 YYLAST ( = high) the number of the last element of YYTABLE, i.e.,
114 extern int high;
  /frameworks/base/media/libeffects/testlibs/
AudioPeakingFilter.cpp 105 void AudioPeakingFilter::getBandRange(uint32_t & low, uint32_t & high) const {
111 high = mNiquistFreq;
113 high = static_cast<uint32_t>((static_cast<uint64_t>(mNominalFrequency) * Effects_exp2(halfBW + (16 << 15))) >> 16);
114 if (UNLIKELY(high > mNiquistFreq)) {
115 high = mNiquistFreq;
  /external/srec/srec/clib/
voc_read.c 169 const char* high; local
178 high = voc->last_entry;
181 middle = low + ((high - low) >> 1) - 1;
189 if (low == high) return 0;
191 /* 'middle' aligned to 'high', so move 'high' down */
192 if (middle == high) {
193 high -= 2;
194 while (*high != '\n') high--
    [all...]
  /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;
  /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;

Completed in 488 milliseconds

1 2 3 4 5 6 7 8 91011>>