Home
last modified time | relevance | path

Searched refs:low (Results 1 – 25 of 978) sorted by relevance

12345678910>>...40

/external/valgrind/main/none/tests/s390x/
Dcdsg.c6 uint64_t low; member
28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low); in test()
29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low); in test()
30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low); in test()
44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low); in test()
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low); in test()
46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low); in test()
54 if (_op3.low != op3_before.low || _op3.high != op3_before.high) { in test()
62 if (_op1.low != op1_before.low || _op1.high != op1_before.high) { in test()
65 if (_op2.high != _op3.high || _op2.low != _op3.low) { in test()
[all …]
Dcds.c6 uint64_t low; member
23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low); in test()
25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low); in test()
39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low); in test()
41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low); in test()
50 if (op3.low != op3_before.low || op3.high != op3_before.high) { in test()
58 if (op1.low != op1_before.low || op1.high != op1_before.high) { in test()
63 if ((op2 & 0xffffffff) != (op3.low & 0xffffffff)) { in test()
80 (op1.low >> 32) != (op1_before.low >> 32)) { in test()
84 if ((op1.low & 0xffffffff) != (op2 & 0xffffffff)) { in test()
[all …]
/external/compiler-rt/lib/
Dudivmodti4.c47 *rem = n.s.low % d.s.low; in __udivmodti4()
48 return n.s.low / d.s.low; in __udivmodti4()
55 *rem = n.s.low; in __udivmodti4()
59 if (d.s.low == 0) in __udivmodti4()
68 *rem = n.s.high % d.s.low; in __udivmodti4()
69 return n.s.high / d.s.low; in __udivmodti4()
72 if (n.s.low == 0) in __udivmodti4()
81 r.s.low = 0; in __udivmodti4()
94 r.s.low = n.s.low; in __udivmodti4()
115 q.s.low = 0; in __udivmodti4()
[all …]
Dudivmoddi4.c45 *rem = n.s.low % d.s.low; in __udivmoddi4()
46 return n.s.low / d.s.low; in __udivmoddi4()
53 *rem = n.s.low; in __udivmoddi4()
57 if (d.s.low == 0) in __udivmoddi4()
66 *rem = n.s.high % d.s.low; in __udivmoddi4()
67 return n.s.high / d.s.low; in __udivmoddi4()
70 if (n.s.low == 0) in __udivmoddi4()
79 r.s.low = 0; in __udivmoddi4()
92 r.s.low = n.s.low; in __udivmoddi4()
113 q.s.low = 0; in __udivmoddi4()
[all …]
Dint_types.h35 su_int low; member
39 su_int low;
50 su_int low; member
54 su_int low;
70 du_int low; member
74 du_int low;
85 du_int low; member
89 du_int low;
97 r.s.low = l; in make_ti()
104 r.s.low = l; in make_tu()
[all …]
Dmulti3.c28 r.s.low = (a & lower_mask) * (b & lower_mask); in __mulddi3()
29 du_int t = r.s.low >> bits_in_dword_2; in __mulddi3()
30 r.s.low &= lower_mask; in __mulddi3()
32 r.s.low += (t & lower_mask) << bits_in_dword_2; in __mulddi3()
34 t = r.s.low >> bits_in_dword_2; in __mulddi3()
35 r.s.low &= lower_mask; in __mulddi3()
37 r.s.low += (t & lower_mask) << bits_in_dword_2; in __mulddi3()
53 r.all = __mulddi3(x.s.low, y.s.low); in __multi3()
54 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high; in __multi3()
Dmuldi3.c26 r.s.low = (a & lower_mask) * (b & lower_mask); in __muldsi3()
27 su_int t = r.s.low >> bits_in_word_2; in __muldsi3()
28 r.s.low &= lower_mask; in __muldsi3()
30 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
32 t = r.s.low >> bits_in_word_2; in __muldsi3()
33 r.s.low &= lower_mask; in __muldsi3()
35 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
53 r.all = __muldsi3(x.s.low, y.s.low); in ARM_EABI_FNALIAS()
54 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high; in ARM_EABI_FNALIAS()
/external/libsepol/src/
Dport_record.c10 int low, high; member
21 int low, high; member
29 int low, int high, int proto, in sepol_port_key_create() argument
41 tmp_key->low = low; in sepol_port_key_create()
52 int *low, int *high, int *proto) in hidden_def()
55 *low = key->low; in hidden_def()
68 (handle, port->low, port->high, port->proto, key_ptr) < 0) { in hidden_def()
72 port->low, port->high); in hidden_def()
88 if ((port->low == key->low) && in sepol_port_compare()
92 if (port->low < key->low) in sepol_port_compare()
[all …]
/external/oprofile/module/x86/
Dop_model_ppro.c48 uint low, high; in ppro_setup_ctrs() local
53 CTRL_READ(low, high, msrs, i); in ppro_setup_ctrs()
54 CTRL_CLEAR(low); in ppro_setup_ctrs()
55 CTRL_WRITE(low, high, msrs, i); in ppro_setup_ctrs()
68 CTRL_READ(low, high, msrs, i); in ppro_setup_ctrs()
69 CTRL_CLEAR(low); in ppro_setup_ctrs()
70 CTRL_SET_ENABLE(low); in ppro_setup_ctrs()
71 CTRL_SET_USR(low, sysctl.ctr[i].user); in ppro_setup_ctrs()
72 CTRL_SET_KERN(low, sysctl.ctr[i].kernel); in ppro_setup_ctrs()
73 CTRL_SET_UM(low, sysctl.ctr[i].unit_mask); in ppro_setup_ctrs()
[all …]
Dop_model_athlon.c52 uint low, high; in athlon_setup_ctrs() local
57 CTRL_READ(low, high, msrs, i); in athlon_setup_ctrs()
58 CTRL_CLEAR(low); in athlon_setup_ctrs()
59 CTRL_WRITE(low, high, msrs, i); in athlon_setup_ctrs()
72 CTRL_READ(low, high, msrs, i); in athlon_setup_ctrs()
73 CTRL_CLEAR(low); in athlon_setup_ctrs()
74 CTRL_SET_ENABLE(low); in athlon_setup_ctrs()
75 CTRL_SET_USR(low, sysctl.ctr[i].user); in athlon_setup_ctrs()
76 CTRL_SET_KERN(low, sysctl.ctr[i].kernel); in athlon_setup_ctrs()
77 CTRL_SET_UM(low, sysctl.ctr[i].unit_mask); in athlon_setup_ctrs()
[all …]
Dop_model_p4.c372 #define CCCR_READ(low, high, i) do {rdmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0) argument
373 #define CCCR_WRITE(low, high, i) do {wrmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0) argument
549 unsigned int low, high; in p4_setup_ctrs() local
555 rdmsr(MSR_IA32_MISC_ENABLE, low, high); in p4_setup_ctrs()
556 if (!MISC_PMC_ENABLED_P(low)) { in p4_setup_ctrs()
563 rdmsr(p4_counters[VIRT_CTR(stag, i)].cccr_address, low, high); in p4_setup_ctrs()
564 CCCR_CLEAR(low); in p4_setup_ctrs()
565 CCCR_SET_REQUIRED_BITS(low); in p4_setup_ctrs()
566 wrmsr(p4_counters[VIRT_CTR(stag, i)].cccr_address, low, high); in p4_setup_ctrs()
571 rdmsr(p4_unused_cccr[i], low, high); in p4_setup_ctrs()
[all …]
/external/chromium_org/third_party/tcmalloc/vendor/packages/deb/
Dchangelog1 gperftools (2.0-1) unstable; urgency=low
8 google-perftools (1.10-1) unstable; urgency=low
14 google-perftools (1.9-1) unstable; urgency=low
20 google-perftools (1.8-1) unstable; urgency=low
26 google-perftools (1.7-1) unstable; urgency=low
32 google-perftools (1.6-1) unstable; urgency=low
38 google-perftools (1.5-1) unstable; urgency=low
44 google-perftools (1.4-1) unstable; urgency=low
50 google-perftools (1.3-1) unstable; urgency=low
56 google-perftools (1.2-1) unstable; urgency=low
[all …]
/external/stlport/src/
Dcollate.cpp32 string collate<char>::do_transform(const char* low, const char* high) const in do_transform() argument
33 { return string(low, high); } in do_transform()
35 long collate<char>::do_hash(const char* low, const char* high) const { in do_hash() argument
37 for ( ; low < high; ++low) in do_hash()
38 result = 5 * result + *low; in do_hash()
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const in do_transform() argument
53 { return wstring(low, high); } in do_transform()
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const { in do_hash() argument
57 for ( ; low < high; ++low) in do_hash()
58 result = 5 * result + *low; in do_hash()
/external/chromium_org/third_party/WebKit/Source/platform/
DPODInterval.h84 PODInterval(const T& low, const T& high) in PODInterval() argument
85 : m_low(low) in PODInterval()
93 PODInterval(const T& low, const T& high, const UserData data) in PODInterval() argument
94 : m_low(low) in PODInterval()
101 const T& low() const { return m_low; } in low() function
105 bool overlaps(const T& low, const T& high) const in overlaps() argument
107 if (this->high() < low) in overlaps()
109 if (high < this->low()) in overlaps()
116 return overlaps(other.low(), other.high()); in overlaps()
123 return low() < other.low();
[all …]
/external/qemu/fpu/
Dsoftfloat-specialize.h55 uint64_t high, low; member
122 z.low = 0; in float16ToCommonNaN()
213 z.low = 0; in float32ToCommonNaN()
459 z.low = 0; in float64ToCommonNaN()
539 aLow = a.low & ~ LIT64( 0x4000000000000000 ); in floatx80_is_quiet_nan()
543 && ( a.low == aLow ); in floatx80_is_quiet_nan()
546 && (LIT64( 0x8000000000000000 ) <= ((uint64_t) ( a.low<<1 ))); in floatx80_is_quiet_nan()
560 && (LIT64( 0x8000000000000000 ) <= ((uint64_t) ( a.low<<1 ))); in floatx80_is_signaling_nan()
564 aLow = a.low & ~ LIT64( 0x4000000000000000 ); in floatx80_is_signaling_nan()
568 && ( a.low == aLow ); in floatx80_is_signaling_nan()
[all …]
/external/llvm/test/CodeGen/SystemZ/
Dinsert-06.ll1 ; Test insertions of i32s into the low half of an i64.
11 %low = zext i32 %b to i64
13 %res = or i64 %high, %low
23 %low = zext i32 %b to i64
25 %res = or i64 %low, %high
35 %low = and i64 %b, 4294967295
37 %res = or i64 %high, %low
47 %low = and i64 %b, 4294967295
49 %res = or i64 %low, %high
53 ; Unary operations can be done directly into the low half.
[all …]
/external/libxml2/
Dchvalid.c169 int low, high, mid; in xmlCharInRange() local
177 low = 0; in xmlCharInRange()
180 while (low <= high) { in xmlCharInRange()
181 mid = (low + high) / 2; in xmlCharInRange()
182 if ((unsigned short) val < sptr[mid].low) { in xmlCharInRange()
186 low = mid + 1; in xmlCharInRange()
196 low = 0; in xmlCharInRange()
199 while (low <= high) { in xmlCharInRange()
200 mid = (low + high) / 2; in xmlCharInRange()
201 if (val < lptr[mid].low) { in xmlCharInRange()
[all …]
/external/chromium_org/third_party/libxml/src/
Dchvalid.c169 int low, high, mid; in xmlCharInRange() local
177 low = 0; in xmlCharInRange()
180 while (low <= high) { in xmlCharInRange()
181 mid = (low + high) / 2; in xmlCharInRange()
182 if ((unsigned short) val < sptr[mid].low) { in xmlCharInRange()
186 low = mid + 1; in xmlCharInRange()
196 low = 0; in xmlCharInRange()
199 while (low <= high) { in xmlCharInRange()
200 mid = (low + high) / 2; in xmlCharInRange()
201 if (val < lptr[mid].low) { in xmlCharInRange()
[all …]
/external/chromium_org/crypto/
Dghash.cc60 product_table_[0].low = 0; in GaloisHash()
75 y_.low = 0; in Reset()
117 y_.low ^= additional_bytes_*8; in Finish()
128 Put64(result, y_.low); in Finish()
140 FieldElement z = {x.low^y.low, x.hi^y.hi}; in Add()
151 xx.hi |= x.low << 63; in Double()
152 xx.low = x.low >> 1; in Double()
161 xx.low ^= 0xe100000000000000ULL; in Double()
184 word = x->low; in MulAfterPrecomputation()
192 z.low ^= t.low; in MulAfterPrecomputation()
[all …]
/external/srec/srec/clib/
Dvoc_read.c167 const char* low; in get_prons() local
177 low = voc->first_entry; in get_prons()
181 middle = low + ((high - low) >> 1) - 1; in get_prons()
189 if (low == high) return 0; in get_prons()
199 if (diff > 0) low = middle; in get_prons()
204 low = middle; in get_prons()
205 while (voc->first_entry < low) { in get_prons()
207 for (lo = low - 2; *lo != '\n'; lo--) ; in get_prons()
210 low = lo; in get_prons()
225 while (low <= high) { in get_prons()
[all …]
/external/chromium_org/sdch/open-vcdiff/packages/deb/
Dchangelog1 open-vcdiff (0.8.3-1) unstable; urgency=low
7 open-vcdiff (0.8.2-1) unstable; urgency=low
13 open-vcdiff (0.8.1-1) unstable; urgency=low
19 open-vcdiff (0.8-1) unstable; urgency=low
31 open-vcdiff (0.6-1) unstable; urgency=low
37 open-vcdiff (0.5-1) unstable; urgency=low
43 open-vcdiff (0.4-1) unstable; urgency=low
49 open-vcdiff (0.3-1) unstable; urgency=low
55 open-vcdiff (0.2-1) unstable; urgency=low
61 open-vcdiff (0.1-1) unstable; urgency=low
/external/open-vcdiff/packages/deb/
Dchangelog1 open-vcdiff (0.8.3-1) unstable; urgency=low
7 open-vcdiff (0.8.2-1) unstable; urgency=low
13 open-vcdiff (0.8.1-1) unstable; urgency=low
19 open-vcdiff (0.8-1) unstable; urgency=low
31 open-vcdiff (0.6-1) unstable; urgency=low
37 open-vcdiff (0.5-1) unstable; urgency=low
43 open-vcdiff (0.4-1) unstable; urgency=low
49 open-vcdiff (0.3-1) unstable; urgency=low
55 open-vcdiff (0.2-1) unstable; urgency=low
61 open-vcdiff (0.1-1) unstable; urgency=low
/external/eigen/test/
Dnullary.cpp44 Scalar low = (size == 1 ? high : internal::random<Scalar>(-500,500)); in testVectorType() local
45 if (low>high) std::swap(low,high); in testVectorType()
47 const Scalar step = ((size == 1) ? 1 : (high-low)/(size-1)); in testVectorType()
51 m.setLinSpaced(size,low,high); in testVectorType()
55 n(i) = low+i*step; in testVectorType()
60 m = VectorType::LinSpaced(size,low,high); in testVectorType()
71 m = VectorType::LinSpaced(Sequential,size,low,high); in testVectorType()
81 row_vector.setLinSpaced(size,low,high); in testVectorType()
82 col_vector.setLinSpaced(size,low,high); in testVectorType()
86 size_changer.setLinSpaced(size,low,high); in testVectorType()
[all …]
/external/openssl/crypto/bn/
Dbn_lcl.h268 # define BN_UMULT_LOHI(low,high,a,b) \
270 : "=a"(low),"=d"(high) \
281 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high)))
287 # define BN_UMULT_LOHI(low,high,a,b) ({ \
289 (high)=ret>>64; (low)=ret; })
297 # define BN_UMULT_LOHI(low,high,a,b)\
299 : "=l"(low),"=h"(high) \
348 BN_ULONG high,low,ret,tmp=(a); \
350 BN_UMULT_LOHI(low,high,w,tmp); \
354 ret += low; \
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
Dbn_lcl.h268 # define BN_UMULT_LOHI(low,high,a,b) \
270 : "=a"(low),"=d"(high) \
281 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high)))
287 # define BN_UMULT_LOHI(low,high,a,b) ({ \
289 (high)=ret>>64; (low)=ret; })
297 # define BN_UMULT_LOHI(low,high,a,b)\
299 : "=l"(low),"=h"(high) \
348 BN_ULONG high,low,ret,tmp=(a); \
350 BN_UMULT_LOHI(low,high,w,tmp); \
354 ret += low; \
[all …]

12345678910>>...40