Home
last modified time | relevance | path

Searched refs:hi (Results 1 – 25 of 931) sorted by relevance

12345678910>>...38

/external/compiler-rt/lib/builtins/ppc/
Ddivtc3.c13 (x).s.hi = crt_copysign(crt_isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \
24 const double logbw = crt_logb(crt_fmax(crt_fabs(cDD.s.hi), crt_fabs(dDD.s.hi) )); in __divtc3()
30 cDD.s.hi = crt_scalbn(cDD.s.hi, -ilogbw); in __divtc3()
32 dDD.s.hi = crt_scalbn(dDD.s.hi, -ilogbw); in __divtc3()
43 real.s.hi = crt_scalbn(real.s.hi, -ilogbw); in __divtc3()
45 imag.s.hi = crt_scalbn(imag.s.hi, -ilogbw); in __divtc3()
48 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) in __divtc3()
54 if ((rDD.s.hi == 0.0) && (!crt_isnan(aDD.s.hi) || in __divtc3()
55 !crt_isnan(bDD.s.hi))) in __divtc3()
57 real.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * aDD.s.hi; in __divtc3()
[all …]
Dmultc3.c9 (x).s.hi = crt_copysign(crt_isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \
14 if (crt_isnan((x).s.hi)) { \
15 (x).s.hi = crt_copysign(0.0, (x).s.hi); \
31 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) in __multc3()
40 if (crt_isinf(aDD.s.hi) || crt_isinf(bDD.s.hi)) in __multc3()
49 if (crt_isinf(cDD.s.hi) || crt_isinf(dDD.s.hi)) in __multc3()
65 if (crt_isinf(acDD.s.hi) || crt_isinf(bdDD.s.hi) || in __multc3()
66 crt_isinf(adDD.s.hi) || crt_isinf(bcDD.s.hi)) in __multc3()
78 real.s.hi = CRT_INFINITY * (aDD.s.hi*cDD.s.hi - bDD.s.hi*dDD.s.hi); in __multc3()
80 imag.s.hi = CRT_INFINITY * (aDD.s.hi*dDD.s.hi + bDD.s.hi*cDD.s.hi); in __multc3()
/external/libvorbis/lib/
Dvorbisenc.c85 int hi; member
251 g->ampmax_att_per_sec=ci->hi.amplitude_track_dBpersec; in vorbis_encode_global_psych_setup()
256 const highlevel_encode_setup *const hi, in vorbis_encode_global_stereo() argument
258 float s=hi->stereo_point_setting; in vorbis_encode_global_stereo()
268 if(hi->managed){ in vorbis_encode_global_stereo()
311 highlevel_encode_setup *hi=&ci->hi; in vorbis_encode_psyset_setup() local
324 if(hi->noise_normalize_p){ in vorbis_encode_psyset_setup()
405 p->noisewindowhimin=guard[block].hi; in vorbis_encode_noisebias_setup()
429 p->ath_adjatt=ci->hi.ath_floating_dB; in vorbis_encode_ath_setup()
430 p->ath_maxatt=ci->hi.ath_absolute_dB; in vorbis_encode_ath_setup()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
DSorterTemplate.java27 protected void quickSort(int lo, int hi) { in quickSort() argument
28 quickSortHelper(lo, hi); in quickSort()
29 insertionSort(lo, hi); in quickSort()
32 private void quickSortHelper(int lo, int hi) { in quickSortHelper() argument
34 int diff = hi - lo; in quickSortHelper()
38 int i = (hi + lo) / 2; in quickSortHelper()
42 if (compare(lo, hi) > 0) { in quickSortHelper()
43 swap(lo, hi); in quickSortHelper()
45 if (compare(i, hi) > 0) { in quickSortHelper()
46 swap(i, hi); in quickSortHelper()
[all …]
/external/pdfium/third_party/libopenjpeg20/
Dmct.c229 __m128i lo, hi; in opj_mct_encode_real() local
236 hi = _mm_shuffle_epi32(r, _MM_SHUFFLE(3, 3, 1, 1)); in opj_mct_encode_real()
238 hi = _mm_mul_epi32(hi, ry); in opj_mct_encode_real()
240 hi = _mm_add_epi64(hi, mulround); in opj_mct_encode_real()
242 hi = _mm_slli_epi64(hi, 32-13); in opj_mct_encode_real()
243 y = _mm_blend_epi16(lo, hi, 0xCC); in opj_mct_encode_real()
246 hi = _mm_shuffle_epi32(g, _MM_SHUFFLE(3, 3, 1, 1)); in opj_mct_encode_real()
248 hi = _mm_mul_epi32(hi, gy); in opj_mct_encode_real()
250 hi = _mm_add_epi64(hi, mulround); in opj_mct_encode_real()
252 hi = _mm_slli_epi64(hi, 32-13); in opj_mct_encode_real()
[all …]
/external/v8/test/webkit/
Ddfg-getter-throw-expected.txt129 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
130 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
131 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
132 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
133 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
134 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
135 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
136 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
137 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
138 PASS bar(o) is "Threw exception: Oh hi, I'm an exception!"
[all …]
Ddfg-to-string-side-effect-clobbers-toString-expected.txt179 hi!
181 hi!
183 hi!
185 hi!
187 hi!
189 hi!
191 hi!
193 hi!
195 hi!
197 hi!
[all …]
/external/skia/src/core/
DSkFilterProc.cpp54 #define COMBINE(lo, hi) (((lo) & ~0xFF00) | (((hi) & ~0xFF00) << 8)) argument
63 uint32_t hi = (3 * HI_PAIR(c00) + HI_PAIR(c01)) >> 2; in bilerp4_01() local
64 return COMBINE(lo, hi); in bilerp4_01()
68 uint32_t hi = (HI_PAIR(c00) + HI_PAIR(c01)) >> 1; in bilerp4_02() local
69 return COMBINE(lo, hi); in bilerp4_02()
73 uint32_t hi = (HI_PAIR(c00) + 3 * HI_PAIR(c01)) >> 2; in bilerp4_03() local
74 return COMBINE(lo, hi); in bilerp4_03()
79 uint32_t hi = (3 * HI_PAIR(c00) + HI_PAIR(c10)) >> 2; in bilerp4_10() local
80 return COMBINE(lo, hi); in bilerp4_10()
84 uint32_t hi = (9 * HI_PAIR(c00) + 3 * (HI_PAIR(c01) + HI_PAIR(c10)) + HI_PAIR(c11)) >> 4; in bilerp4_11() local
[all …]
DSkBitmapProcState_filter.h33 uint32_t hi = ((a00 >> 8) & mask) * scale; in Filter_32_opaque() local
37 hi += ((a01 >> 8) & mask) * scale; in Filter_32_opaque()
41 hi += ((a10 >> 8) & mask) * scale; in Filter_32_opaque()
44 hi += ((a11 >> 8) & mask) * xy; in Filter_32_opaque()
46 *dstColor = ((lo >> 8) & mask) | (hi & ~mask); in Filter_32_opaque()
63 uint32_t hi = ((a00 >> 8) & mask) * scale; in Filter_32_alpha() local
67 hi += ((a01 >> 8) & mask) * scale; in Filter_32_alpha()
71 hi += ((a10 >> 8) & mask) * scale; in Filter_32_alpha()
74 hi += ((a11 >> 8) & mask) * xy; in Filter_32_alpha()
77 hi = ((hi >> 8) & mask) * alphaScale; in Filter_32_alpha()
[all …]
DSkTSearch.cpp28 int hi = count - 1; in SkStrSearch() local
30 while (lo < hi) in SkStrSearch()
32 int mid = (hi + lo) >> 1; in SkStrSearch()
39 hi = mid; in SkStrSearch()
44 const char* elem = index_into_base(base, hi, elemSize); in SkStrSearch()
49 hi += 1; in SkStrSearch()
50 hi = ~hi; in SkStrSearch()
52 return hi; in SkStrSearch()
/external/compiler-rt/test/builtins/Unit/ppc/
Dqadd_test.c109 a.hi = edgeCases[i].xhi; in testEdgeCases()
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
113 r.hi = edgeCases[i].rhi; in testEdgeCases()
120 if (r.hi != r.hi) { in testEdgeCases()
121 if (c.hi == c.hi) in testEdgeCases()
129 else if (r.hi == 0.0) in testEdgeCases()
133 error = ((c.hi != r.hi) || (c.lo != r.lo)); in testEdgeCases()
136 …ror on edge case %a + %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo); in testEdgeCases()
1818 a.hi = accuracyTests[i].xhi; in testAccuracy()
1820 b.hi = accuracyTests[i].yhi; in testAccuracy()
[all …]
Dqsub_test.c109 a.hi = edgeCases[i].xhi; in testEdgeCases()
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
113 r.hi = edgeCases[i].rhi; in testEdgeCases()
122 if (r.hi != r.hi) { in testEdgeCases()
123 if (c.hi == c.hi) in testEdgeCases()
131 else if (r.hi == 0.0) in testEdgeCases()
135 error = ((c.hi != r.hi) || (c.lo != r.lo)); in testEdgeCases()
138 …ror on edge case %a - %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo); in testEdgeCases()
1820 a.hi = accuracyTests[i].xhi; in testAccuracy()
1822 b.hi = -accuracyTests[i].yhi; in testAccuracy()
[all …]
Dqdiv_test.c109 a.hi = edgeCases[i].xhi; in testEdgeCases()
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
113 r.hi = edgeCases[i].rhi; in testEdgeCases()
120 if (r.hi != r.hi) { in testEdgeCases()
121 if (c.hi == c.hi) in testEdgeCases()
129 else if (r.hi == 0.0) in testEdgeCases()
133 error = ((c.hi != r.hi) || (c.lo != r.lo)); in testEdgeCases()
136 …ror on edge case %a / %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo); in testEdgeCases()
741 a.hi = accuracyTests[i].xhi; in testAccuracy()
743 b.hi = accuracyTests[i].yhi; in testAccuracy()
[all …]
Dqmul_test.c109 a.hi = edgeCases[i].xhi; in testEdgeCases()
111 b.hi = edgeCases[i].yhi; in testEdgeCases()
113 r.hi = edgeCases[i].rhi; in testEdgeCases()
120 if (r.hi != r.hi) { in testEdgeCases()
121 if (c.hi == c.hi) in testEdgeCases()
129 else if (r.hi == 0.0) in testEdgeCases()
133 error = ((c.hi != r.hi) || (c.lo != r.lo)); in testEdgeCases()
136 …ror on edge case %a x %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo); in testEdgeCases()
739 a.hi = accuracyTests[i].xhi; in testAccuracy()
741 b.hi = accuracyTests[i].yhi; in testAccuracy()
[all …]
/external/boringssl/src/crypto/modes/
Dgcm.c79 V.lo = (V.hi << 63) | (V.lo >> 1); \
80 V.hi = (V.hi >> 1) ^ T; \
83 V.lo = (V.hi << 63) | (V.lo >> 1); \
84 V.hi = (V.hi >> 1) ^ ((uint64_t)T << 32); \
95 Htable[0].hi = 0; in gcm_init_4bit()
97 V.hi = H[0]; in gcm_init_4bit()
107 Htable[3].hi = V.hi ^ Htable[2].hi, Htable[3].lo = V.lo ^ Htable[2].lo; in gcm_init_4bit()
109 Htable[5].hi = V.hi ^ Htable[1].hi, Htable[5].lo = V.lo ^ Htable[1].lo; in gcm_init_4bit()
110 Htable[6].hi = V.hi ^ Htable[2].hi, Htable[6].lo = V.lo ^ Htable[2].lo; in gcm_init_4bit()
111 Htable[7].hi = V.hi ^ Htable[3].hi, Htable[7].lo = V.lo ^ Htable[3].lo; in gcm_init_4bit()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DNodeVector.java644 int hi = hi0; in sort() local
647 if (lo >= hi) in sort()
651 else if (lo == hi - 1) in sort()
657 if (a[lo] > a[hi]) in sort()
661 a[lo] = a[hi]; in sort()
662 a[hi] = T; in sort()
671 int pivot = a[(lo + hi) / 2]; in sort()
673 a[(lo + hi) / 2] = a[hi]; in sort()
674 a[hi] = pivot; in sort()
676 while (lo < hi) in sort()
[all …]
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dwarp_shuffle.hpp75 int hi = __double2hiint(val); in shfl() local
78 hi = __shfl(hi, srcLane, width); in shfl()
80 return __hiloint2double(hi, lo); in shfl()
107 int hi = __double2hiint(val); in shfl_down() local
110 hi = __shfl_down(hi, delta, width); in shfl_down()
112 return __hiloint2double(hi, lo); in shfl_down()
139 int hi = __double2hiint(val); in shfl_up() local
142 hi = __shfl_up(hi, delta, width); in shfl_up()
144 return __hiloint2double(hi, lo); in shfl_up()
/external/skia/src/animator/
DSkGetCondensedInfo.cpp24 int hi = count - 1; in _searchByName() local
25 while (lo < hi) { in _searchByName()
26 int mid = (hi + lo) >> 1; in _searchByName()
30 hi = mid; in _searchByName()
32 if (strcmp(&strings[lengths[hi << 2]], target) != 0) in _searchByName()
34 return hi; in _searchByName()
40 int hi = kTypeIDs - 1; in _searchByType() local
41 while (lo < hi) { in _searchByType()
42 int mid = (hi + lo) >> 1; in _searchByType()
46 hi = mid; in _searchByType()
[all …]
/external/valgrind/none/tests/mips32/
Dvfp.stdout.exp-mips32r2-BE91 ldxc1 $f0, $a3($v0) :: ft lo: 0x66666666, ft hi: 0x4095a266
92 ldxc1 $f0, $a3($v0) :: ft lo: 0x0, ft hi: 0xbff00000
93 ldxc1 $f0, $a3($v0) :: ft lo: 0x0, ft hi: 0x3ff00000
94 ldxc1 $f0, $a3($v0) :: ft lo: 0x262d2d2a, ft hi: 0x252a2e2b
95 ldxc1 $f0, $a3($v0) :: ft lo: 0xffffffff, ft hi: 0xffffffff
96 ldxc1 $f0, $a3($v0) :: ft lo: 0xb487e5c9, ft hi: 0x41d26580
97 ldxc1 $f0, $a3($v0) :: ft lo: 0xb750e388, ft hi: 0x42026580
98 ldxc1 $f0, $a3($v0) :: ft lo: 0xe2308c3a, ft hi: 0x3e45798e
99 ldxc1 $f0, $a3($v0) :: ft lo: 0x3746f65f, ft hi: 0x3fbf9add
100 ldxc1 $f0, $a3($v0) :: ft lo: 0x66666666, ft hi: 0x4095a266
[all …]
Dvfp.stdout.exp-mips32r2-LE91 ldxc1 $f0, $a3($v0) :: ft lo: 0x4095a266, ft hi: 0x66666666
92 ldxc1 $f0, $a3($v0) :: ft lo: 0xbff00000, ft hi: 0x0
93 ldxc1 $f0, $a3($v0) :: ft lo: 0x3ff00000, ft hi: 0x0
94 ldxc1 $f0, $a3($v0) :: ft lo: 0x252a2e2b, ft hi: 0x262d2d2a
95 ldxc1 $f0, $a3($v0) :: ft lo: 0xffffffff, ft hi: 0xffffffff
96 ldxc1 $f0, $a3($v0) :: ft lo: 0x41d26580, ft hi: 0xb487e5c9
97 ldxc1 $f0, $a3($v0) :: ft lo: 0x42026580, ft hi: 0xb750e388
98 ldxc1 $f0, $a3($v0) :: ft lo: 0x3e45798e, ft hi: 0xe2308c3a
99 ldxc1 $f0, $a3($v0) :: ft lo: 0x3fbf9add, ft hi: 0x3746f65f
100 ldxc1 $f0, $a3($v0) :: ft lo: 0x4095a266, ft hi: 0x66666666
[all …]
/external/clang/test/CodeGen/
Davx-shuffle-builtins.c178 __m256 test_mm256_set_m128(__m128 hi, __m128 lo) { in test_mm256_set_m128() argument
181 return _mm256_set_m128(hi, lo); in test_mm256_set_m128()
184 __m256d test_mm256_set_m128d(__m128d hi, __m128d lo) { in test_mm256_set_m128d() argument
187 return _mm256_set_m128d(hi, lo); in test_mm256_set_m128d()
190 __m256i test_mm256_set_m128i(__m128i hi, __m128i lo) { in test_mm256_set_m128i() argument
193 return _mm256_set_m128i(hi, lo); in test_mm256_set_m128i()
196 __m256 test_mm256_setr_m128(__m128 hi, __m128 lo) { in test_mm256_setr_m128() argument
199 return _mm256_setr_m128(lo, hi); in test_mm256_setr_m128()
202 __m256d test_mm256_setr_m128d(__m128d hi, __m128d lo) { in test_mm256_setr_m128d() argument
205 return _mm256_setr_m128d(lo, hi); in test_mm256_setr_m128d()
[all …]
/external/regex-re2/re2/
Dcompile.cc174 Frag ByteRange(int lo, int hi, bool foldcase);
193 void AddRuneRange(Rune lo, Rune hi, bool foldcase);
194 void AddRuneRangeLatin1(Rune lo, Rune hi, bool foldcase);
195 void AddRuneRangeUTF8(Rune lo, Rune hi, bool foldcase);
199 int RuneByteSuffix(uint8 lo, uint8 hi, bool foldcase, int next);
200 int UncachedRuneByteSuffix(uint8 lo, uint8 hi, bool foldcase, int next);
392 Frag Compiler::ByteRange(int lo, int hi, bool foldcase) { in ByteRange() argument
396 inst_[id].InitByteRange(lo, hi, foldcase, 0); in ByteRange()
398 prog_->MarkByteRange(lo, hi); in ByteRange()
399 if (foldcase && lo <= 'z' && hi >= 'a') { in ByteRange()
[all …]
/external/skia/include/private/
DSkTSearch.h49 int hi = count - 1; in SkTSearch() local
51 while (lo < hi) { in SkTSearch()
52 int mid = lo + ((hi - lo) >> 1); in SkTSearch()
58 hi = mid; in SkTSearch()
61 const T* elem = (const T*)((const char*)base + hi * elemSize); in SkTSearch()
63 hi += 1; in SkTSearch()
64 hi = ~hi; in SkTSearch()
66 hi = ~hi; in SkTSearch()
68 return hi; in SkTSearch()
/external/freetype/src/base/
Dftcalc.c54 FT_UInt32 hi; member
298 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; in ft_multo64() local
307 hi = hi1 * hi2; in ft_multo64()
311 hi += (FT_UInt32)( i1 < i2 ) << 16; in ft_multo64()
313 hi += i1 >> 16; in ft_multo64()
318 hi += ( lo < i1 ); in ft_multo64()
321 z->hi = hi; in ft_multo64()
326 ft_div64by32( FT_UInt32 hi, in ft_div64by32() argument
334 if ( hi >= y ) in ft_div64by32()
342 i = 31 - FT_MSB( hi ); in ft_div64by32()
[all …]
/external/compiler-rt/lib/builtins/
Dfp_lib.h54 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { in wideMultiply() argument
56 *hi = product >> 32; in wideMultiply()
86 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { in wideMultiply() argument
97 *hi = hiWord(plohi) + hiWord(philo) + hiWord(r1) + phihi; in wideMultiply()
151 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { in wideMultiply() argument
195 *hi = (r1 >> 64) + in wideMultiply()
247 static __inline void wideLeftShift(rep_t *hi, rep_t *lo, int count) { in wideLeftShift() argument
248 *hi = *hi << count | *lo >> (typeWidth - count); in wideLeftShift()
252 static __inline void wideRightShiftWithSticky(rep_t *hi, rep_t *lo, unsigned int count) { in wideRightShiftWithSticky() argument
255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; in wideRightShiftWithSticky()
[all …]

12345678910>>...38