Home
last modified time | relevance | path

Searched refs:j0 (Results 1 – 25 of 237) sorted by relevance

12345678910

/external/fdlibm/
Ds_ceil.c38 int i0,i1,j0; local
42 j0 = ((i0>>20)&0x7ff)-0x3ff;
43 if(j0<20) {
44 if(j0<0) { /* raise inexact if x != 0 */
50 i = (0x000fffff)>>j0;
53 if(i0>0) i0 += (0x00100000)>>j0;
57 } else if (j0>51) {
58 if(j0==0x400) return x+x; /* inf or NaN */
61 i = ((unsigned)(0xffffffff))>>(j0-20);
65 if(j0==20) i0+=1;
[all …]
Ds_floor.c38 int i0,i1,j0; local
42 j0 = ((i0>>20)&0x7ff)-0x3ff;
43 if(j0<20) {
44 if(j0<0) { /* raise inexact if x != 0 */
51 i = (0x000fffff)>>j0;
54 if(i0<0) i0 += (0x00100000)>>j0;
58 } else if (j0>51) {
59 if(j0==0x400) return x+x; /* inf or NaN */
62 i = ((unsigned)(0xffffffff))>>(j0-20);
66 if(j0==20) i0+=1;
[all …]
Ds_rint.c43 int i0,j0,sx; local
49 j0 = ((i0>>20)&0x7ff)-0x3ff;
50 if(j0<20) {
51 if(j0<0) {
63 i = (0x000fffff)>>j0;
67 if(j0==19) i1 = 0x40000000; else
68 i0 = (i0&(~i))|((0x20000)>>j0);
71 } else if (j0>51) {
72 if(j0==0x400) return x+x; /* inf or NaN */
75 i = ((unsigned)(0xffffffff))>>(j0-20);
[all …]
Ds_modf.c39 int i0,i1,j0; local
43 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
44 if(j0<20) { /* integer part in high x */
45 if(j0<0) { /* |x|<1 */
50 i = (0x000fffff)>>j0;
62 } else if (j0>51) { /* no fraction part */
68 i = ((unsigned)(0xffffffff))>>(j0-20);
/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_rdft.c311 int j0, j1, j2, j3, k, k1, k2, m2; in cftmdl_128_C() local
315 for (j0 = 0; j0 < l; j0 += 2) { in cftmdl_128_C()
316 j1 = j0 + 8; in cftmdl_128_C()
317 j2 = j0 + 16; in cftmdl_128_C()
318 j3 = j0 + 24; in cftmdl_128_C()
319 x0r = a[j0 + 0] + a[j1 + 0]; in cftmdl_128_C()
320 x0i = a[j0 + 1] + a[j1 + 1]; in cftmdl_128_C()
321 x1r = a[j0 + 0] - a[j1 + 0]; in cftmdl_128_C()
322 x1i = a[j0 + 1] - a[j1 + 1]; in cftmdl_128_C()
327 a[j0 + 0] = x0r + x2r; in cftmdl_128_C()
[all …]
Daec_rdft_sse2.c84 int j0; in cftmdl_128_SSE2() local
87 for (j0 = 0; j0 < l; j0 += 2) { in cftmdl_128_SSE2()
88 const __m128i a_00 = _mm_loadl_epi64((__m128i*)&a[j0 + 0]); in cftmdl_128_SSE2()
89 const __m128i a_08 = _mm_loadl_epi64((__m128i*)&a[j0 + 8]); in cftmdl_128_SSE2()
90 const __m128i a_32 = _mm_loadl_epi64((__m128i*)&a[j0 + 32]); in cftmdl_128_SSE2()
91 const __m128i a_40 = _mm_loadl_epi64((__m128i*)&a[j0 + 40]); in cftmdl_128_SSE2()
101 const __m128i a_16 = _mm_loadl_epi64((__m128i*)&a[j0 + 16]); in cftmdl_128_SSE2()
102 const __m128i a_24 = _mm_loadl_epi64((__m128i*)&a[j0 + 24]); in cftmdl_128_SSE2()
103 const __m128i a_48 = _mm_loadl_epi64((__m128i*)&a[j0 + 48]); in cftmdl_128_SSE2()
104 const __m128i a_56 = _mm_loadl_epi64((__m128i*)&a[j0 + 56]); in cftmdl_128_SSE2()
[all …]
/external/eigen/test/
Dsparse_block.cpp126 Index j0 = internal::random<Index>(0,outer-1); in sparse_block() local
131 VERIFY_IS_APPROX(m2.innerVector(j0), innervec(refMat2,j0)); in sparse_block()
132 …VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), innervec(refMat2,j0)+innervec(refMat2,j1)); in sparse_block()
134 m2.innerVector(j0) *= Scalar(2); in sparse_block()
135 innervec(refMat2,j0) *= Scalar(2); in sparse_block()
177 VERIFY(m3.innerVector(j0).nonZeros() == m3.transpose().innerVector(j0).nonZeros()); in sparse_block()
190 Index j0 = internal::random<Index>(0,outer-2); in sparse_block() local
192 Index n0 = internal::random<Index>(1,outer-(std::max)(j0,j1)); in sparse_block()
194 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(j0,0,n0,cols)); in sparse_block()
196 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(0,j0,rows,n0)); in sparse_block()
[all …]
Dsparseqr.cpp28 int j0 = internal::random<int>(0,cols-1); in generate_sparse_rectangular_problem() local
31 A.col(j0) = s * A.col(j1); in generate_sparse_rectangular_problem()
32 dA.col(j0) = s * dA.col(j1); in generate_sparse_rectangular_problem()
/external/python/cpython3/Mac/BuildScript/scripts/
Dpostflight.framework10 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
15 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
20 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
25 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
Dpostflight.ensurepip21 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
26 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
/external/llvm/test/Feature/
Dtestlogical.ll5 define i32 @simpleAdd(i32 %i0, i32 %j0) {
6 %t1 = xor i32 %i0, %j0 ; <i32> [#uses=1]
7 %t2 = or i32 %i0, %j0 ; <i32> [#uses=1]
/external/swiftshader/third_party/LLVM/test/Feature/
Dtestlogical.ll5 define i32 @simpleAdd(i32 %i0, i32 %j0) {
6 %t1 = xor i32 %i0, %j0 ; <i32> [#uses=1]
7 %t2 = or i32 %i0, %j0 ; <i32> [#uses=1]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Feature/
Dtestlogical.ll5 define i32 @simpleAdd(i32 %i0, i32 %j0) {
6 %t1 = xor i32 %i0, %j0 ; <i32> [#uses=1]
7 %t2 = or i32 %i0, %j0 ; <i32> [#uses=1]
/external/libaom/libaom/aom_dsp/
Dfastssim.c156 int j0; in fs_downsample_level0() local
158 j0 = 2 * j; in fs_downsample_level0()
159 j1 = FS_MINI(j0 + 1, _h); in fs_downsample_level0()
167 _src1[j0 * _s1ystride + i0] + _src1[j0 * _s1ystride + i1] + in fs_downsample_level0()
170 _src2[j0 * _s2ystride + i0] + _src2[j0 * _s2ystride + i1] + in fs_downsample_level0()
175 dst1[j * w + i] = (src1s[j0 * _s1ystride + i0] >> shift) + in fs_downsample_level0()
176 (src1s[j0 * _s1ystride + i1] >> shift) + in fs_downsample_level0()
179 dst2[j * w + i] = (src2s[j0 * _s2ystride + i0] >> shift) + in fs_downsample_level0()
180 (src2s[j0 * _s2ystride + i1] >> shift) + in fs_downsample_level0()
/external/libvpx/libvpx/vpx_dsp/
Dfastssim.c154 int j0; in fs_downsample_level0() local
156 j0 = 2 * j; in fs_downsample_level0()
157 j1 = FS_MINI(j0 + 1, _h); in fs_downsample_level0()
165 _src1[j0 * _s1ystride + i0] + _src1[j0 * _s1ystride + i1] + in fs_downsample_level0()
168 _src2[j0 * _s2ystride + i0] + _src2[j0 * _s2ystride + i1] + in fs_downsample_level0()
173 dst1[j * w + i] = (src1s[j0 * _s1ystride + i0] >> shift) + in fs_downsample_level0()
174 (src1s[j0 * _s1ystride + i1] >> shift) + in fs_downsample_level0()
177 dst2[j * w + i] = (src2s[j0 * _s2ystride + i0] >> shift) + in fs_downsample_level0()
178 (src2s[j0 * _s2ystride + i1] >> shift) + in fs_downsample_level0()
/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c558 GLint *i0, GLint *i1, GLint *j0, GLint *j1, GLint *slice, in linear_texcoord() argument
571 height, j0, j1, wj); in linear_texcoord()
580 texcoord[1], j0, j1, wj); in linear_texcoord()
587 *j0 = tex_array_slice(texcoord[1], height); in linear_texcoord()
588 *j1 = *j0; in linear_texcoord()
596 texcoord[1], j0, j1, wj); in linear_texcoord()
1159 GLint i0, j0, i1, j1; in sample_2d_linear() local
1165 linear_texel_locations(samp->WrapT, img, height, texcoord[1], &j0, &j1, &b); in sample_2d_linear()
1170 j0 += img->Border; in sample_2d_linear()
1176 if (j0 < 0 || j0 >= height) useBorderColor |= J0BIT; in sample_2d_linear()
[all …]
/external/deqp/framework/common/
DtcuTexCompareVerifier.cpp674 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isNearestMipmapLinearCompareResultValid() local
678 …0 = lookupDepth(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), coordZ); in isNearestMipmapLinearCompareResultValid()
731 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isLinearMipmapLinearCompareResultValid() local
737 const float minB0 = de::clamp((vBounds0.x()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearCompareResultValid()
738 const float maxB0 = de::clamp((vBounds0.y()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearCompareResultValid()
744 const int y0 = wrap(sampler.wrapT, j0 , h0); in isLinearMipmapLinearCompareResultValid()
745 const int y1 = wrap(sampler.wrapT, j0+1, h0); in isLinearMipmapLinearCompareResultValid()
913 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isSeamplessLinearMipmapLinearCompareResultValid() local
919 const float minB0 = de::clamp((vBounds0.x()-0.5f)-float(j0), 0.0f, 1.0f); in isSeamplessLinearMipmapLinearCompareResultValid()
920 const float maxB0 = de::clamp((vBounds0.y()-0.5f)-float(j0), 0.0f, 1.0f); in isSeamplessLinearMipmapLinearCompareResultValid()
[all …]
DtcuTexLookupVerifier.cpp934 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isNearestMipmapLinearSampleResultValid() local
942 …= lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), coordZ); in isNearestMipmapLinearSampleResultValid()
993 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isNearestMipmapLinearSampleResultValid() local
1003 …p<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), wrap(sampler.w… in isNearestMipmapLinearSampleResultValid()
1140 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isLinearMipmapLinearSampleResultValid() local
1150 const int y0 = wrap(sampler.wrapT, j0 , h0); in isLinearMipmapLinearSampleResultValid()
1151 const int y1 = wrap(sampler.wrapT, j0+1, h0); in isLinearMipmapLinearSampleResultValid()
1162 const float minB0 = de::clamp((vBounds0.x()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearSampleResultValid()
1163 const float maxB0 = de::clamp((vBounds0.y()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearSampleResultValid()
1252 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isLinearMipmapLinearSampleResultValid() local
[all …]
DtcuFuzzyImageCompare.cpp136 int j0 = de::clamp(y0, 0, h-1); in bilinearSample() local
142 deUint32 p00 = readUnorm8<NumChannels>(src, i0, j0); in bilinearSample()
143 deUint32 p10 = readUnorm8<NumChannels>(src, i1, j0); in bilinearSample()
/external/openssh/openbsd-compat/
Dchacha_private.h92 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; in chacha_encrypt_bytes() local
99 j0 = x->input[0]; in chacha_encrypt_bytes()
123 x0 = j0; in chacha_encrypt_bytes()
149 x0 = PLUS(x0,j0); in chacha_encrypt_bytes()
/external/openssh/
Dchacha.c93 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; in chacha_encrypt_bytes() local
100 j0 = x->input[0]; in chacha_encrypt_bytes()
124 x0 = j0; in chacha_encrypt_bytes()
150 x0 = PLUS(x0,j0); in chacha_encrypt_bytes()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECAlgorithms.java441 int j0 = i << 1, j1 = j0 + 1;
443 BigInteger kj0 = ks[j0]; negs[j0] = kj0.signum() < 0; kj0 = kj0.abs();
449 infos[j0] = WNafUtil.getWNafPreCompInfo(P);
451 wnafs[j0] = WNafUtil.generateWindowNaf(width, kj0);
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/
DECAlgorithms.java445 int j0 = i << 1, j1 = j0 + 1;
447 BigInteger kj0 = ks[j0]; negs[j0] = kj0.signum() < 0; kj0 = kj0.abs();
453 infos[j0] = WNafUtil.getWNafPreCompInfo(P);
455 wnafs[j0] = WNafUtil.generateWindowNaf(width, kj0);
/external/v8/benchmarks/
Dnavier-stokes.js225 var j0 = y | 0;
226 var j1 = j0 + 1;
229 var t1 = y - j0;
231 var row1 = j0 * rowSize;
/external/ltp/testcases/misc/math/float/
Dfloat_bessel.c29 {FUNC_NORMAL, 30, j0, "j0", "j0_inp.ref", "j0_out.ref2",

12345678910