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

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_sizes.c 26 void ecc_sizes(int *low, int *high)
29 LTC_ARGCHKVD(low != NULL);
32 *low = INT_MAX;
35 if (ltc_ecc_sets[i].size < *low) {
36 *low = ltc_ecc_sets[i].size;
  /frameworks/compile/libbcc/runtime/lib/
cmpdi2.c 33 if (x.s.low < y.s.low)
35 if (x.s.low > y.s.low)
cmpti2.c 35 if (x.s.low < y.s.low)
37 if (x.s.low > y.s.low)
ucmpdi2.c 33 if (x.s.low < y.s.low)
35 if (x.s.low > y.s.low)
ucmpti2.c 35 if (x.s.low < y.s.low)
37 if (x.s.low > y.s.low)
fixunsxfdi.c 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
41 return fb.u.low.all >> (63 - e);
fixunsxfsi.c 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
41 return fb.u.low.s.high >> (31 - e);
ashldi3.c 30 result.s.low = 0;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
ashlti3.c 32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
muldi3.c 26 r.s.low = (a & lower_mask) * (b & lower_mask);
27 su_int t = r.s.low >> bits_in_word_2;
28 r.s.low &= lower_mask;
30 r.s.low += (t & lower_mask) << bits_in_word_2;
32 t = r.s.low >> bits_in_word_2;
33 r.s.low &= lower_mask;
35 r.s.low += (t & lower_mask) << bits_in_word_2;
51 r.all = __muldsi3(x.s.low, y.s.low);
52 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high
    [all...]
multi3.c 28 r.s.low = (a & lower_mask) * (b & lower_mask);
29 du_int t = r.s.low >> bits_in_dword_2;
30 r.s.low &= lower_mask;
32 r.s.low += (t & lower_mask) << bits_in_dword_2;
34 t = r.s.low >> bits_in_dword_2;
35 r.s.low &= lower_mask;
37 r.s.low += (t & lower_mask) << bits_in_dword_2;
53 r.all = __mulddi3(x.s.low, y.s.low);
54 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high
    [all...]
udivmoddi4.c 45 *rem = n.s.low % d.s.low;
46 return n.s.low / d.s.low;
53 *rem = n.s.low;
57 if (d.s.low == 0)
66 *rem = n.s.high % d.s.low;
67 return n.s.high / d.s.low;
70 if (n.s.low == 0)
79 r.s.low = 0
    [all...]
udivmodti4.c 47 *rem = n.s.low % d.s.low;
48 return n.s.low / d.s.low;
55 *rem = n.s.low;
59 if (d.s.low == 0)
68 *rem = n.s.high % d.s.low;
69 return n.s.high / d.s.low;
72 if (n.s.low == 0)
81 r.s.low = 0
    [all...]
fixunsxfti.c 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
41 tu_int r = fb.u.low.all;
fixxfdi.c 35 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
39 di_int r = fb.u.low.all;
fixxfti.c 35 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
39 ti_int r = fb.u.low.all;
int_lib.h 42 su_int low; member in struct:__anon15756::__anon15757
46 su_int low;
57 su_int low; member in struct:__anon15758::__anon15759
61 su_int low;
77 du_int low; member in struct:__anon15760::__anon15761
81 du_int low;
92 du_int low; member in struct:__anon15762::__anon15763
96 du_int low;
104 r.s.low = l;
111 r.s.low = l
132 udwords low; member in struct:__anon15766
    [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)
38 result = 5 * result + *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
    [all...]
  /ndk/sources/cxx-stl/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)
38 result = 5 * result + *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
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODInterval.h 84 PODInterval(const T& low, const T& high)
85 : m_low(low)
93 PODInterval(const T& low, const T& high, const UserData data)
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
107 if (this->high() < low)
109 if (high < this->low())
116 return overlaps(other.low(), other.high());
120 // comparison is performed on the low endpoints of the intervals
    [all...]
  /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);
38 assertTrue(low >= 0 && low <= 100);
41 assertTrue(low <= mid && mid <= high);
52 int low = CameraProfile.getJpegEncodingQualityParameter(CameraProfile.QUALITY_LOW); local
55 checkQuality(low, mid, high);
68 int low = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_LOW); local
71 checkQuality(low, mid, high)
    [all...]
  /external/skia/gpu/include/
GrTBSearch.h 30 int low = 0; local
31 while (high > low) {
32 int index = (low + high) >> 1;
34 low = index + 1;
  /frameworks/compile/libbcc/runtime/lib/ppc/
floatditf.c 16 doublebits low = { .d = twop52 }; local
17 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */
22 * high_addend and low.d, and we wish to return their sum
32 result.s.hi = high_addend + low.d;
33 result.s.lo = (high_addend - result.s.hi) + low.d;
floatunditf.c 20 doublebits low = { .d = twop52 }; local
23 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */
28 * high_addend and low.d, and we wish to return their sum
37 result.s.hi = high_addend + low.d;
38 result.s.lo = (high_addend - result.s.hi) + low.d;
  /external/oprofile/module/x86/
op_model_athlon.c 52 uint low, high; local
57 CTRL_READ(low, high, msrs, i);
58 CTRL_CLEAR(low);
59 CTRL_WRITE(low, high, msrs, i);
72 CTRL_READ(low, high, msrs, i);
73 CTRL_CLEAR(low);
74 CTRL_SET_ENABLE(low);
75 CTRL_SET_USR(low, sysctl.ctr[i].user);
76 CTRL_SET_KERN(low, sysctl.ctr[i].kernel);
77 CTRL_SET_UM(low, sysctl.ctr[i].unit_mask)
89 uint low, high; local
105 uint low, high; local
119 uint low, high; local
    [all...]

Completed in 759 milliseconds

1 2 3 4 5 6 7 8 91011>>