Home
last modified time | relevance | path

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

12

/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/src/modules/audio_processing/aec/
Daec_rdft_sse2.c87 int j0; in cftmdl_128_SSE2() local
90 for (j0 = 0; j0 < l; j0 += 2) { in cftmdl_128_SSE2()
91 const __m128i a_00 = _mm_loadl_epi64((__m128i*)&a[j0 + 0]); in cftmdl_128_SSE2()
92 const __m128i a_08 = _mm_loadl_epi64((__m128i*)&a[j0 + 8]); in cftmdl_128_SSE2()
93 const __m128i a_32 = _mm_loadl_epi64((__m128i*)&a[j0 + 32]); in cftmdl_128_SSE2()
94 const __m128i a_40 = _mm_loadl_epi64((__m128i*)&a[j0 + 40]); in cftmdl_128_SSE2()
104 const __m128i a_16 = _mm_loadl_epi64((__m128i*)&a[j0 + 16]); in cftmdl_128_SSE2()
105 const __m128i a_24 = _mm_loadl_epi64((__m128i*)&a[j0 + 24]); in cftmdl_128_SSE2()
106 const __m128i a_48 = _mm_loadl_epi64((__m128i*)&a[j0 + 48]); in cftmdl_128_SSE2()
107 const __m128i a_56 = _mm_loadl_epi64((__m128i*)&a[j0 + 56]); in cftmdl_128_SSE2()
[all …]
Daec_rdft.c318 int j0, j1, j2, j3, k, k1, k2, m2; in cftmdl_128_C() local
322 for (j0 = 0; j0 < l; j0 += 2) { in cftmdl_128_C()
323 j1 = j0 + 8; in cftmdl_128_C()
324 j2 = j0 + 16; in cftmdl_128_C()
325 j3 = j0 + 24; in cftmdl_128_C()
326 x0r = a[j0 + 0] + a[j1 + 0]; in cftmdl_128_C()
327 x0i = a[j0 + 1] + a[j1 + 1]; in cftmdl_128_C()
328 x1r = a[j0 + 0] - a[j1 + 0]; in cftmdl_128_C()
329 x1i = a[j0 + 1] - a[j1 + 1]; in cftmdl_128_C()
334 a[j0 + 0] = x0r + x2r; in cftmdl_128_C()
[all …]
/external/chromium_org/third_party/sqlite/src/test/
Dtkt3879.test38 FROM t3, t2 AS j0, t2 AS j1, t1
39 WHERE j0.m=t3.m AND t1.a=j0.a AND j1.n=j0.m;
46 FROM t3, t2 AS j0, t2 AS j1, t1
47 WHERE j0.m=t3.m AND t1.a=j0.a AND j1.n=j0.m
/external/eigen/test/
Dsparse_basic.cpp214 int j0 = internal::random<int>(0,rows-1); in sparse_basic() local
217 VERIFY_IS_APPROX(m2.innerVector(j0), refMat2.row(j0)); in sparse_basic()
219 VERIFY_IS_APPROX(m2.innerVector(j0), refMat2.col(j0)); in sparse_basic()
222 VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), refMat2.row(j0)+refMat2.row(j1)); in sparse_basic()
224 VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), refMat2.col(j0)+refMat2.col(j1)); in sparse_basic()
255 int j0 = internal::random<int>(0,rows-2); in sparse_basic() local
257 int n0 = internal::random<int>(1,rows-(std::max)(j0,j1)); in sparse_basic()
259 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(j0,0,n0,cols)); in sparse_basic()
261 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(0,j0,rows,n0)); in sparse_basic()
263 VERIFY_IS_APPROX(m2.innerVectors(j0,n0)+m2.innerVectors(j1,n0), in sparse_basic()
[all …]
/external/svox/pico/lib/
Dpicofftsg.c670 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; in bitrv2() local
680 j0 = 0; in bitrv2()
683 for (j = j0; j < j0 + k0; j += 4) { in bitrv2()
846 k1 = j0 + k0; in bitrv2()
907 for (i = nh >> 1; i > (j0 ^= i); i >>= 1) { in bitrv2()
912 j0 = 0; in bitrv2()
915 for (j = j0; j < j0 + k0; j += 4) { in bitrv2()
998 k1 = j0 + k0; in bitrv2()
1019 for (i = nh >> 1; i > (j0 ^= i); i >>= 1){ in bitrv2()
1029 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; in bitrv2conj() local
[all …]
/external/eigen/test/eigen2/
Deigen2_sparse_basic.cpp239 int j0 = ei_random(0,rows-1); in sparse_basic() local
241 VERIFY_IS_APPROX(m2.innerVector(j0), refMat2.col(j0)); in sparse_basic()
242 VERIFY_IS_APPROX(m2.innerVector(j0)+m2.innerVector(j1), refMat2.col(j0)+refMat2.col(j1)); in sparse_basic()
253 int j0 = ei_random(0,rows-2); in sparse_basic() local
255 int n0 = ei_random<int>(1,rows-std::max(j0,j1)); in sparse_basic()
256 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(0,j0,rows,n0)); in sparse_basic()
257 VERIFY_IS_APPROX(m2.innerVectors(j0,n0)+m2.innerVectors(j1,n0), in sparse_basic()
258 refMat2.block(0,j0,rows,n0)+refMat2.block(0,j1,rows,n0)); in sparse_basic()
/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]
Dtestconstants.ll9 define [2 x i32]* @testfunction(i32 %i0, i32 %j0) {
Dtestalloca.ll8 define i32 @testfunction(i32 %i0, i32 %j0) {
/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c555 GLint *i0, GLint *i1, GLint *j0, GLint *j1, GLint *slice, in linear_texcoord() argument
568 height, j0, j1, wj); in linear_texcoord()
577 texcoord[1], j0, j1, wj); in linear_texcoord()
584 *j0 = tex_array_slice(texcoord[1], height); in linear_texcoord()
585 *j1 = *j0; in linear_texcoord()
593 texcoord[1], j0, j1, wj); in linear_texcoord()
1156 GLint i0, j0, i1, j1; in sample_2d_linear() local
1162 linear_texel_locations(samp->WrapT, img, height, texcoord[1], &j0, &j1, &b); in sample_2d_linear()
1167 j0 += img->Border; in sample_2d_linear()
1173 if (j0 < 0 || j0 >= height) useBorderColor |= J0BIT; in sample_2d_linear()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
Ds_texfilter.c555 GLint *i0, GLint *i1, GLint *j0, GLint *j1, GLint *slice, in linear_texcoord() argument
568 height, j0, j1, wj); in linear_texcoord()
577 texcoord[1], j0, j1, wj); in linear_texcoord()
584 *j0 = tex_array_slice(texcoord[1], height); in linear_texcoord()
585 *j1 = *j0; in linear_texcoord()
593 texcoord[1], j0, j1, wj); in linear_texcoord()
1156 GLint i0, j0, i1, j1; in sample_2d_linear() local
1162 linear_texel_locations(samp->WrapT, img, height, texcoord[1], &j0, &j1, &b); in sample_2d_linear()
1167 j0 += img->Border; in sample_2d_linear()
1173 if (j0 < 0 || j0 >= height) useBorderColor |= J0BIT; in sample_2d_linear()
[all …]
/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/chromium_org/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/clang/test/SemaCXX/
Daddress-of-temporary.cpp46 void j0() { (void)S { Y().a }; } in j0() function
/external/llvm/test/Transforms/LoopDeletion/
Ddcetest.ll6 define i32 @"test function"(i32 %i0, i32 %j0) {
/external/llvm/test/Transforms/SCCP/
Dsccptest.ll24 define i32 @test2(i32 %i0, i32 %j0) {
/external/openssl/crypto/pkcs7/t/
Dmsie-enc-02.pem85 ga6IJcyuQeUZ9ptgiwpwcUKja3Xe5fJk9/TNI9OS4PQSH3bCoL2m8DeC+usJR+j0
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/t/
Dmsie-enc-02.pem85 ga6IJcyuQeUZ9ptgiwpwcUKja3Xe5fJk9/TNI9OS4PQSH3bCoL2m8DeC+usJR+j0
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_nk0_kdt_mgc3.pkb23 �>2���+�j0�1�-yr~���a *<C ���:O
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/it-IT/
Dit-IT_cm0_kdt_mgc3.pkb97 ՗13�?j0���"������h�=KL:@xa pdQ����4�q�:��Gx1f6L\Q�?� :�lЄ?Q���H%6��Q��JpbX��o���\�E*�õ_…
/external/llvm/test/Transforms/BBVectorize/
Dsimple-ldstr-ptrs.ll99 %j0 = extractelement <2 x i64*> %i0, i32 0
101 %ptr0 = getelementptr inbounds i64* %j0, i64 %o1

12