Searched defs:low (Results 1 - 25 of 282) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/builtins/ppc/
H A Dfloatditf.c15 doublebits low = { .d = twop52 }; local
16 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */
21 * high_addend and low.d, and we wish to return their sum
31 result.s.hi = high_addend + low.d;
32 result.s.lo = (high_addend - result.s.hi) + low.d;
H A Dfloatunditf.c19 doublebits low = { .d = twop52 }; local
22 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */
27 * high_addend and low.d, and we wish to return their sum
36 result.s.hi = high_addend + low.d;
37 result.s.lo = (high_addend - result.s.hi) + low.d;
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_analog.c42 uint8_t low, high; local
52 // 0 to 7 (MUX5 low) or 8 to 15 (MUX5 high).
57 // channel (low 4 bits). this also sets ADLAR (left-adjust result)
77 low = ADCL;
81 low = 0;
86 return (high << 8) | low;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrTBSearch.h22 int low = 0; local
23 while (high > low) {
24 int index = (low + high) >> 1;
26 low = index + 1;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dget_lsp_poly.c46 int16_t high, low; local
68 low = (int16_t)WEBRTC_SPL_RSHIFT_W32(fPtr[-1]-WEBRTC_SPL_LSHIFT_W32(((int32_t)high),16), 1);
71 WEBRTC_SPL_LSHIFT_W32(WEBRTC_SPL_MUL_16_16_RSFT(low, (*lspPtr), 15), 2);
H A Daugmented_cb_corr.c31 int16_t low, /* (i) Lag to start from (typically
47 for (lagcount=low; lagcount<=high; lagcount++) {
23 WebRtcIlbcfix_AugmentedCbCorr( int16_t *target, int16_t *buffer, int16_t *interpSamples, int32_t *crossDot, int16_t low, int16_t high, int16_t scale) argument
/external/clang/test/CodeGen/
H A D2002-09-18-UnionProblem.c5 char high, low; member in struct:DWstruct
H A Daarch64-neon-vcombine.c8 int8x16_t test_vcombine_s8(int8x8_t low, int8x8_t high) { argument
10 return vcombine_s8(low, high);
14 int16x8_t test_vcombine_s16(int16x4_t low, int16x4_t high) { argument
16 return vcombine_s16(low, high);
20 int32x4_t test_vcombine_s32(int32x2_t low, int32x2_t high) { argument
22 return vcombine_s32(low, high);
26 int64x2_t test_vcombine_s64(int64x1_t low, int64x1_t high) { argument
28 return vcombine_s64(low, high);
32 uint8x16_t test_vcombine_u8(uint8x8_t low, uint8x8_t high) { argument
34 return vcombine_u8(low, hig
38 test_vcombine_u16(uint16x4_t low, uint16x4_t high) argument
44 test_vcombine_u32(uint32x2_t low, uint32x2_t high) argument
50 test_vcombine_u64(uint64x1_t low, uint64x1_t high) argument
56 test_vcombine_p64(poly64x1_t low, poly64x1_t high) argument
62 test_vcombine_f16(float16x4_t low, float16x4_t high) argument
68 test_vcombine_f32(float32x2_t low, float32x2_t high) argument
74 test_vcombine_p8(poly8x8_t low, poly8x8_t high) argument
80 test_vcombine_p16(poly16x4_t low, poly16x4_t high) argument
86 test_vcombine_f64(float64x1_t low, float64x1_t high) argument
[all...]
H A D2005-09-24-BitFieldCrash.c8 unsigned long long low; member in struct:tree_int_cst::tree_int_cst_lowhi
/external/compiler-rt/lib/builtins/
H A Dfloatdidf.c38 union { int64_t x; double d; } low = { .d = twop52 }; local
41 low.x |= a & INT64_C(0x00000000ffffffff);
43 const double result = (high - twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
H A Dfloatundidf.c40 union { uint64_t x; double d; } low = { .d = twop52 }; local
43 low.x |= a & UINT64_C(0x00000000ffffffff);
45 const double result = (high.d - twop84_plus_twop52) + low.d;
103 fb.u.low = (su_int)a; /* mantissa-low */
/external/oprofile/module/ia64/
H A Dop_ia64_model.h19 uint low; member in struct:op_saved_msr
/external/skia/src/gpu/
H A DGrTBSearch.h22 int low = 0; local
23 while (high > low) {
24 int index = (low + high) >> 1;
26 low = index + 1;
/external/chromium_org/crypto/
H A Dghash.h56 uint64 low, hi; member in struct:crypto::GaloisHash::FieldElement
/external/lldb/include/lldb/Utility/
H A DRange.h28 Range (ValueType low = 0,
47 SetLow (ValueType low) argument
49 m_low = low;
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dtgt.h60 OPJ_INT32 low; member in struct:opj_tgt_node
/external/stlport/src/
H A Dcollate.cpp32 string collate<char>::do_transform(const char* low, const char* high) const argument
33 { return string(low, high); }
35 long collate<char>::do_hash(const char* low, const char* high) const { argument
37 for ( ; low < high; ++low)
38 result = 5 * result + *low;
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const argument
53 { return wstring(low, high); }
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const { argument
57 for ( ; low < hig
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dcds.c6 uint64_t low; member in struct:__anon33223
23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low);
25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low);
39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low);
41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low);
50 if (op3.low != op3_before.low || op3.high != op3_before.high) {
58 if (op1.low != op1_before.low || op1.high != op1_before.high) {
62 // lower 32 bits of op2 are the lower 32 bits of op3.low
[all...]
/external/vixl/examples/
H A Dcheck-bounds.cc33 // uint64_t check_bounds(uint64_t value, uint64_t low, uint64_t high)
36 // low -> x1
39 // First we compare 'value' with the 'low' bound. If x1 <= x0 the N flag will
62 uint64_t value, uint64_t low, uint64_t high) {
64 simulator->set_xreg(1, low);
70 low, high);
61 run_function(Simulator *simulator, Label *function, uint64_t value, uint64_t low, uint64_t high) argument
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODInterval.h84 PODInterval(const T& low, const T& high) argument
85 : m_low(low)
93 PODInterval(const T& low, const T& high, const UserData data) argument
94 : m_low(low)
101 const T& low() const { return m_low; } function in class:blink::PODInterval
105 bool overlaps(const T& low, const T& high) const argument
107 if (this->high() < low)
109 if (high < this->low())
116 return overlaps(other.low(), other.high());
120 // comparison is performed on the low endpoint
[all...]
/external/e2fsprogs/e2fsck/
H A Ddx_dirinfo.c83 int low, high, mid; local
85 low = 0;
89 if (ino == ctx->dx_dir_info[low].ino)
90 return &ctx->dx_dir_info[low];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
103 low = mid;
/external/eigen/test/
H A Dnullary.cpp44 Scalar low = (size == 1 ? high : internal::random<Scalar>(-500,500)); local
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);
55 n(i) = low+i*step;
60 m = VectorType::LinSpaced(size,low,high);
68 //VERIFY( m(0) == low );
71 m = VectorType::LinSpaced(Sequential,size,low,high);
76 //VERIFY( m(0) == low );
[all...]
/external/lldb/source/Utility/
H A DRange.cpp21 Range::Range (Range::ValueType low, argument
23 m_low(low),
/external/oprofile/module/x86/
H A Dop_x86_model.h18 uint low; member in struct:op_saved_msr
/external/qemu/util/
H A Dhost-utils.c39 uint32_t high, low; member in struct:__anon30255::__anon30256
41 uint32_t low, high;
51 rl.ll = (uint64_t)a0.l.low * b0.l.low;
52 rm.ll = (uint64_t)a0.l.low * b0.l.high;
53 rn.ll = (uint64_t)a0.l.high * b0.l.low;
56 c = (uint64_t)rl.l.high + rm.l.low + rn.l.low;
59 c = c + rm.l.high + rn.l.high + rh.l.low;
60 rh.l.low
[all...]

Completed in 402 milliseconds

1234567891011>>