/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/ |
D | apiviewer.js | 9 if (!window.qx) window.qx = {}; 11 qx.$$start = new Date(); 21 if (!qx.$$libraries) qx.$$libraries = {}; 23 for (var k in libinfo) qx.$$libraries[k] = libinfo[k]; 25 qx.$$resources = {}; 26 qx.$$translations = {}; 27 qx.$$locales = {}; 28 qx.$$packageData = {}; 30 qx.$$loader = { 42 var libs = qx.$$libraries; [all …]
|
/external/fdlibm/ |
D | k_cos.c | 71 double a,hz,z,r,qx; local 83 qx = 0.28125; 85 __HI(qx) = ix-0x00200000; /* x/4 */ 86 __LO(qx) = 0; 88 hz = 0.5*z-qx; 89 a = one-qx;
|
/external/chromium-trace/catapult/third_party/flot/ |
D | jquery.flot.fillbetween.js | 79 px, py, intery, qx, qy, bottom, 135 qx = otherpoints[ j ]; 139 if ( px === qx ) { 151 } else if ( px > qx ) { 157 intery = py + ( points[ i - ps + 1 ] - py ) * ( qx - px ) / ( points[ i - ps ] - px ); 158 newpoints.push( qx ); 185 …= qy + ( otherpoints[ j - otherps + 1 ] - qy ) * ( px - qx ) / ( otherpoints[ j - otherps ] - qx );
|
D | jquery.flot.fillbetween.min.js | 7 …qx,qy,bottom,withlines=s.lines.show,withbottom=ps>2&&datapoints.format[2].y,withsteps=withlines&&s…
|
D | jquery.flot.stack.js | 70 px, py, intery, qx, qy, bottom, 111 qx = otherpoints[j + keyOffset]; 115 if (px == qx) { 125 else if (px > qx) { 129 …intery = py + (points[i - ps + accumulateOffset] - py) * (qx - px) / (points[i - ps + keyOffset] -… 130 newpoints.push(qx); 152 …oints[j - otherps + accumulateOffset] - qy) * (px - qx) / (otherpoints[j - otherps + keyOffset] - …
|
D | jquery.flot.stack.min.js | 7 …qx,qy,bottom,withlines=s.lines.show,horizontal=s.bars.horizontal,withbottom=ps>2&&(horizontal?data…
|
/external/speex/libspeex/ |
D | lsp.c | 236 spx_word32_t *qx; in lpc_to_lsp() local 254 qx = Q; in lpc_to_lsp() 256 q = qx; in lpc_to_lsp() 260 *qx++ = LPC_SCALING; in lpc_to_lsp() 263 *qx++ = ADD32(SUB32(EXTEND32(a[i]),EXTEND32(a[lpcrdr-i-1])), *q++); in lpc_to_lsp() 266 qx = Q; in lpc_to_lsp() 274 *qx = PSHR32(*qx,2); in lpc_to_lsp() 276 qx++; in lpc_to_lsp() 283 *qx++ = LPC_SCALING; in lpc_to_lsp() 286 *qx++ = (a[i]-a[lpcrdr-1-i]) + *q++; in lpc_to_lsp() [all …]
|
/external/opencv3/samples/python2/ |
D | peopledetect.py | 14 qx, qy, qw, qh = q 15 return rx > qx and ry > qy and rx + rw < qx + qw and ry + rh < qy + qh
|
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/ |
D | vec4.js | 470 qx = q[0], qy = q[1], qz = q[2], qw = q[3], 474 iy = qw * y + qz * x - qx * z, 475 iz = qw * z + qx * y - qy * x, 476 iw = -qx * x - qy * y - qz * z; 479 out[0] = ix * qw + iw * -qx + iy * -qz - iz * -qy; 480 out[1] = iy * qw + iw * -qy + iz * -qx - ix * -qz; 481 out[2] = iz * qw + iw * -qz + ix * -qy - iy * -qx;
|
D | vec3.js | 536 qx = q[0], qy = q[1], qz = q[2], qw = q[3], 540 iy = qw * y + qz * x - qx * z, 541 iz = qw * z + qx * y - qy * x, 542 iw = -qx * x - qy * y - qz * z; 545 out[0] = ix * qw + iw * -qx + iy * -qz - iz * -qy; 546 out[1] = iy * qw + iw * -qy + iz * -qx - ix * -qz; 547 out[2] = iz * qw + iw * -qz + ix * -qy - iy * -qx;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/ |
D | ParticleControllerFinalizerInfluencer.java | 43 float qx=0, qy=0, qz=0, qw=1; in update() local 46 qx = rotationChannel.data[rotationOffset + ParticleChannels.XOffset]; in update() 54 qx,qy,qz,qw, scale); in update()
|
D | DynamicsInfluencer.java | 185 qx = rotationChannel.data[offset + ParticleChannels.XOffset], in update() local 189 …TMP_Q.set(wx, wy, wz, 0).mul(qx, qy, qz, qw).mul(0.5f*controller.deltaTime).add(qx, qy, qz, qw).no… in update()
|
/external/opencv3/modules/imgproc/src/ |
D | moments.cpp | 232 __m128i z = _mm_setzero_si128(), qx0 = z, qx1 = z, qx2 = z, qx3 = z, qx = qx_init; in operator ()() local 237 __m128i sx = _mm_mullo_epi16(qx, qx); in operator ()() 240 qx1 = _mm_add_epi32(qx1, _mm_madd_epi16(p, qx)); in operator ()() 242 qx3 = _mm_add_epi32(qx3, _mm_madd_epi16( _mm_mullo_epi16(p, qx), sx)); in operator ()() 244 qx = _mm_add_epi16(qx, dx); in operator ()() 282 uint16x4_t qx = qx_init; in operator ()() local 289 uint32x4_t v_qx = vmovl_u16(qx); in operator ()() 291 uint32x4_t v_px = vmull_u16(qx, v_p); in operator ()() 298 qx = vadd_u16(qx, v_step); in operator ()() 301 v_qx = vmovl_u16(qx); in operator ()() [all …]
|
/external/eigen/Eigen/src/Core/arch/SSE/ |
D | MathFunctions.h | 229 Packet2d qx = p2d_cephes_exp_q0; variable 230 qx = pmadd(qx, x2, p2d_cephes_exp_q1); 231 qx = pmadd(qx, x2, p2d_cephes_exp_q2); 232 qx = pmadd(qx, x2, p2d_cephes_exp_q3); 234 x = pdiv(px,psub(qx,px));
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/renderers/ |
D | ModelInstanceRenderer.java | 49 float qx=0, qy=0, qz=0, qw=1; in update() local 52 qx = renderData.rotationChannel.data[rotationOffset + ParticleChannels.XOffset]; in update() 61 qx, qy, qz, qw, in update()
|
/external/opencv3/modules/videostab/src/ |
D | inpainting.cpp | 433 int qx = x + lut[i][0]; in operator ()() local 435 if (qy >= 0 && qy < mask.rows && qx >= 0 && qx < mask.cols && mask(qy,qx)) in operator ()() 437 c1 += frame.at<uchar>(qy,3*qx); in operator ()() 438 c2 += frame.at<uchar>(qy,3*qx+1); in operator ()() 439 c3 += frame.at<uchar>(qy,3*qx+2); in operator ()()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_aatriangle.c | 55 const GLfloat qx = v2[0] - v0[0]; in compute_plane() local 61 const GLfloat b = pz * qx - px * qz; in compute_plane() 62 const GLfloat c = px * qy - py * qx; in compute_plane()
|
D | s_aaline.c | 97 const GLfloat qx = -py; in compute_plane() 101 const GLfloat b = pz * qx - px * qz; in compute_plane() 102 const GLfloat c = px * qy - py * qx; in compute_plane()
|
/external/v8/src/third_party/fdlibm/ |
D | fdlibm.js | 222 var qx; 224 qx = 0.28125; 226 qx = %_ConstructDouble(%_DoubleHi(0.25 * X), 0); 228 var hz = 0.5 * z - qx; 229 return (1 - qx - (hz - (z * r - X * Y))) SIGN;
|
/external/clang/test/PCH/ |
D | cxx0x-default-delete.cpp | 37 quux qx; // expected-error{{private destructor}} expected-note@20{{private here}} variable
|
/external/opencv3/modules/cudastereo/src/cuda/ |
D | util.cu | 65 const float qx = x * cq[ 0] + y * cq[ 1] + cq[ 3]; in reprojectImageTo3D() local 75 v.x = (qx + cq[2] * d) * iW; in reprojectImageTo3D()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/ |
D | EdgeShape.java | 180 final float qx = p1x + t * dx; in raycast() local 192 tempx = qx - v1.x; in raycast()
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
D | ParticleController.java | 84 …public void setTransform(float x, float y, float z, float qx, float qy, float qz, float qw, float … in setTransform() argument 85 transform.set(x, y, z, qx, qy, qz, qw, scale, scale, scale); in setTransform()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/ |
D | es-ES_zl0_kdt_dur.pkb | 92 ��^)�����'��`����0������/C��6:qx���<!ݤ�>����*���,�@n�Sb� `A�`c`D� �J0�ր��$�1��l���A… 161 �&��!&��)�!ܣe�n)��G�?H��Ӟ�E�-�6:qx�$)ph�%Jsb�d"N�h�̐�1g�9�FT���"Jx��������ᰑ�BH���v�… 200 …fǶ�gO�VM�-HWc�A�r�lX�ݨ!��~�%�c���D�p�%����x�ŋN����r�����.�u1�86:qx��V}(;�]��nr5c�F…
|
D | es-ES_zl0_kdt_mgc1.pkb | 38 ������A}xv:qx{���m�{4�w��sl٣`O�g�"��9zS����e�`ԏcX�7�J�����W��L��a�(� ahc�wۗ#�@��Wy�BY��
|