HomeSort by relevance Sort by last modified time
    Searched refs:low (Results 1 - 25 of 793) 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;
  /external/compiler-rt/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);
int_types.h 35 su_int low; member in struct:__anon6449::__anon6450
39 su_int low;
50 su_int low; member in struct:__anon6451::__anon6452
54 su_int low;
70 du_int low; member in struct:__anon6453::__anon6454
74 du_int low;
85 du_int low; member in struct:__anon6455::__anon6456
89 du_int low;
97 r.s.low = l;
104 r.s.low = l
125 udwords low; member in struct:__anon6459
    [all...]
ashldi3.c 32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_word);
39 result.s.low = input.s.low << b;
40 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));
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...]
  /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...]
  /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...]

Completed in 194 milliseconds

1 2 3 4 5 6 7 8 91011>>