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

12345678910

/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_sizes.c26 void ecc_sizes(int *low, int *high) argument
29 LTC_ARGCHKVD(low != NULL);
32 *low = INT_MAX;
35 if (ltc_ecc_sets[i].size < *low) {
36 *low = ltc_ecc_sets[i].size;
/external/compiler-rt/lib/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/net/base/
H A Dfile_stream_metrics_win.cc16 int low; member in struct:net::__anon8519::Range
128 if (error < kErrorRangeList[n].low)
/external/chromium_org/third_party/skia/src/gpu/
H A DGrTBSearch.h23 int low = 0; local
24 while (high > low) {
25 int index = (low + high) >> 1;
27 low = index + 1;
/external/clang/test/CodeGen/
H A D2002-09-18-UnionProblem.c5 char high, low; member in struct:DWstruct
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/
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.c41 union { uint64_t x; double d; } low = { .d = twop52 }; local
44 low.x |= a & UINT64_C(0x00000000ffffffff);
46 const double result = (high.d - twop84_plus_twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
/external/elfutils/tests/
H A Ddwfl-bug-addr-overflow.c59 Dwfl_Module *low = dwfl_report_module (dwfl, "low", local
62 assert (low);
74 assert (mod == 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.h23 int low = 0; local
24 while (high > low) {
25 int index = (low + high) >> 1;
27 low = index + 1;
/external/chromium_org/crypto/
H A Dghash.h56 uint64 low, hi; member in struct:crypto::GaloisHash::FieldElement
/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:__anon27860
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...]
H A Dcdsg.c6 uint64_t low; member in struct:__anon27861
28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
54 if (_op3.low != op3_before.low || _op3.high != op3_before.high) {
62 if (_op1.low !
[all...]
/external/chromium_org/third_party/WebKit/Source/core/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:WebCore::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/oprofile/module/x86/
H A Dop_x86_model.h18 uint low; member in struct:op_saved_msr
/external/valgrind/main/memcheck/tests/s390x/
H A Dcds.c6 uint64_t low; member in struct:__anon27738
29 // Return a quad-word that only bits low[32:63] are undefined
36 val.low |= 0xFFFFFFFF00000000ull;
49 op3.high = op3.low = 0xdeadbeefdeadbabeull;
58 op1.high = op1.low = 42;
60 op3.high = op3.low = 0xdeadbeefdeadbabeull;
69 op1.high = op1.low = 42;
H A Dcdsg.c6 uint64_t low; member in struct:__anon27739
37 op2.high = op2.low = 42;
38 op3.high = op3.low = 0xdeadbeefdeadbabeull;
46 op1.high = op1.low = 42;
48 op3.high = op3.low = 0xdeadbeefdeadbabeull;
56 op1.high = op1.low = 42;
/external/chromium/chrome/browser/safe_browsing/
H A Dchunk_range.cc98 int low = 0; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
110 low = mid + 1;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dchunk_range.cc98 int low = 0; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
110 low = mid + 1;

Completed in 627 milliseconds

12345678910