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

1 2 3 4 5 6 7 8 9

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabs.c 27 u_int32_t high; local
28 GET_HIGH_WORD(high,x);
29 SET_HIGH_WORD(x,high&0x7fffffff);
s_cbrtf.c 37 u_int32_t high; local
50 GET_FLOAT_WORD(high,t);
51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
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
63 GET_HIGH_WORD(high,x);
64 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
69 u_int32_t high; local
71 GET_HIGH_WORD(high,x);
72 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 *
    [all...]
e_hypot.c 121 u_int32_t high; local
123 GET_HIGH_WORD(high,t1);
124 SET_HIGH_WORD(t1,high+(k<<20));
s_cbrt.c 46 u_int32_t high,low; local
73 GET_HIGH_WORD(high,t);
74 INSERT_WORDS(t,sign|((high&0x7fffffff)/3+B2),0);
  /external/chromium_org/third_party/skia/src/gpu/
GrTBSearch.h 21 int high = count - 1; local
23 while (high > low) {
24 int index = (low + high) >> 1;
28 high = index;
33 if (EQ(array[high], target)) {
34 return high;
38 if (LT(array[high], target)) {
39 high += 1;
41 return ~high;
  /external/arduino/hardware/arduino/cores/arduino/
wiring_analog.c 42 uint8_t low, high; local
52 // 0 to 7 (MUX5 low) or 8 to 15 (MUX5 high).
56 // set the analog reference (high two bits of ADMUX) and select the
78 high = ADCH;
82 high = 0;
86 return (high << 8) | low;
107 digitalWrite(pin, HIGH);
255 digitalWrite(pin, HIGH);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
get_lsp_poly.c 46 int16_t high, low; local
67 high = (int16_t)WEBRTC_SPL_RSHIFT_W32(fPtr[-1], 16);
68 low = (int16_t)WEBRTC_SPL_RSHIFT_W32(fPtr[-1]-WEBRTC_SPL_LSHIFT_W32(((int32_t)high),16), 1);
70 tmpW32 = WEBRTC_SPL_LSHIFT_W32(WEBRTC_SPL_MUL_16_16(high, (*lspPtr)), 2) +
  /external/clang/test/CodeGen/
2002-09-18-UnionProblem.c 5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
2005-09-24-BitFieldCrash.c 9 long long high; member in struct:tree_int_cst::tree_int_cst_lowhi
  /external/compiler-rt/lib/builtins/
floatdidf.c 40 const double high = (int32_t)(a >> 32) * twop32; local
43 const double result = (high - twop52) + low.d;
101 fb.u.high = ((su_int)s & 0x80000000) | /* sign */
103 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
floatundidf.c 39 union { uint64_t x; double d; } high = { .d = twop84 }; local
42 high.x |= a >> 32;
45 const double result = (high.d - twop84_plus_twop52) + low.d;
101 fb.u.high = ((e + 1023) << 20) | /* exponent */
102 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
  /external/compiler-rt/lib/builtins/ppc/
floatunditf.c 18 doublebits high = { .d = twop84 }; local
21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */
24 const double high_addend = high.d - twop84_plus_twop52;
  /external/oprofile/module/ia64/
op_ia64_model.h 18 uint high; member in struct:op_saved_msr
  /art/compiler/utils/arm/
managed_register_arm.cc 30 Register high = AsRegisterPairHigh(); local
32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other);
38 SRegister high = AsOverlappingDRegisterHigh(); local
40 return (low == other_sreg) || (high == other_sreg);
  /art/compiler/utils/arm64/
managed_register_arm64.cc 87 int high = RegNo(); local
89 high += kNumberOfCoreRegIds + kNumberOfWRegIds;
91 return high;
  /art/compiler/utils/mips/
managed_register_mips.cc 31 Register high = AsRegisterPairHigh(); local
33 MipsManagedRegister::FromCoreRegister(high).Overlaps(other);
39 FRegister high = AsOverlappingDRegisterHigh(); local
41 return (low == other_freg) || (high == other_freg);
  /art/compiler/utils/x86/
managed_register_x86.cc 43 Register high; member in struct:art::x86::RegisterPairDescriptor
48 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
65 Register high = AsRegisterPairHigh(); local
67 X86ManagedRegister::FromCpuRegister(high).Overlaps(other);
90 return kRegisterPairs[r].high;
  /art/compiler/utils/x86_64/
managed_register_x86_64.cc 42 Register high; member in struct:art::x86_64::RegisterPairDescriptor
47 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
64 Register high = AsRegisterPairHigh().AsRegister(); local
66 X86_64ManagedRegister::FromCpuRegister(high).Overlaps(other);
89 return kRegisterPairs[r].high;
  /cts/tests/tests/media/src/android/media/cts/
CameraProfileTest.java 31 private void checkQuality(int low, int mid, int high) {
32 Log.v(TAG, "low = " + low + ", mid = " + mid + ", high = " + high);
35 assertTrue(high >= 0 && high <= 100);
36 assertTrue(low <= mid && mid <= high);
42 int high = CameraProfile.getJpegEncodingQualityParameter(CameraProfile.QUALITY_HIGH); local
43 checkQuality(low, mid, high);
51 int high = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_HIGH); local
52 checkQuality(low, mid, high);
    [all...]
  /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 60 uint32_t high; local
65 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
66 clock_reg = uuid.time_low | ((uint64_t) high << 32);
  /external/chromium_org/chrome/browser/safe_browsing/
chunk_range.cc 99 int high = ranges.size() - 1; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
112 high = mid - 1;
  /external/chromium_org/third_party/WebKit/Source/platform/
PODInterval.h 84 PODInterval(const T& low, const T& high)
86 , m_high(high)
88 , m_maxHigh(high)
93 PODInterval(const T& low, const T& high, const UserData data)
95 , m_high(high)
97 , m_maxHigh(high)
102 const T& high() const { return m_high; } function in class:blink::PODInterval
105 bool overlaps(const T& low, const T& high) const
107 if (this->high() < low)
109 if (high < this->low()
    [all...]
  /external/eigen/test/
nullary.cpp 43 Scalar high = internal::random<Scalar>(-500,500); local
44 Scalar low = (size == 1 ? high : internal::random<Scalar>(-500,500));
45 if (low>high) std::swap(low,high);
47 const Scalar step = ((size == 1) ? 1 : (high-low)/(size-1));
51 m.setLinSpaced(size,low,high);
60 m = VectorType::LinSpaced(size,low,high);
67 //VERIFY( m(m.size()-1) == high );
71 m = VectorType::LinSpaced(Sequential,size,low,high);
75 //VERIFY( m(m.size()-1) == high );
    [all...]

Completed in 665 milliseconds

1 2 3 4 5 6 7 8 9