HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 551 - 575 of 1250) sorted by null

<<21222324252627282930>>

  /external/speex/libspeex/
ltp.c 92 spx_word16_t y0, y1, y2, y3;
93 /*y0=y[0];y1=y[1];y2=y[2];y3=y[3];*/
95 y1=*y++;
105 part2 = MULT16_16(*x,y1);
110 part1 = MAC16_16(part1,*x,y1);
115 y1=*y++;
119 part4 = MAC16_16(part4,*x,y1);
124 part3 = MAC16_16(part3,*x,y1);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 63 // x1, y1, x2, y2.
195 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) {
202 translate(x1, y1);
203 scale(x2 - x1, y2 - y1, 1);
318 // {x1', y1', x2', y2'} are stored in mMapPointsBuffer and also returned.
319 private float[] mapPoints(float m[], int x1, int y1, int x2, int y2) {
322 // Multiply m and (x1 y1 0 1) to produce (x3 y3 z3 w3). z3 is unused.
323 float x3 = m[0] * x1 + m[4] * y1 + m[12];
324 float y3 = m[1] * x1 + m[5] * y1 + m[13];
325 float w3 = m[3] * x1 + m[7] * y1 + m[15]
    [all...]
  /external/aac/libAACenc/src/
metadata_compressor.cpp 135 FIXP_DBL y1; member in struct:WEIGHTING_STATES
675 FIXP_DBL x1, x2, y, y1, y2; local
691 y1 = drcComp->filter[c].y1;
705 /* y = b0 * (x - x2) - a1 * y1 - a2 * y2; */
706 y = fMult(b0,x-x2) - fMult(a1,y1) - fMult(a2,y2);
710 y2 = y1;
711 y1 = y;
724 drcComp->filter[c].y1 = y1;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
stroker.c 357 static VGboolean do_lines_intersect(VGfloat x1, VGfloat y1, VGfloat x2, VGfloat y2,
363 a1 = y2 - y1;
365 c1 = x2 * y1 - x1 * y2;
377 r1 = a2 * x1 + b2 * y1 + c2;
615 VGfloat x1, VGfloat y1,
627 x1, y1, x2, y2, width/2, height/2, 0);
969 offset_curves[0].y1 - bezier.y1);
972 offset_curves[0].y1};
    [all...]
renderer.c 501 VGfloat x1, VGfloat y1,
519 r->vertices[2][0][1] = y1;
523 r->vertices[3][0][1] = y1;
532 VGfloat x1, VGfloat y1,
541 t1 = y1 / tex_height;
1230 VGint x0, y0, x1, y1, iw, ih; local
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharingTests.cpp 442 int y1 = deRoundFloatToInt32(((float)height * fy1 / 2.0f) + (float)oy); local
448 for (int y = y1; y < y2; y++)
451 float yf = ((float)(y-y1) + 0.5f) / (float)(y2 - y1);
746 int y1 = (int)(((float)height/2.0f) * (-0.9f) + ((float)height/2.0f)); local
751 for (int y = y1; y <= y2; y++)
754 float s = ((float)(y-y1) / (float)(y2-y1));
1035 int y1 = (int)(((float)height/2.0f) * (-0.9f) + ((float)height/2.0f)); local
1040 for (int y = y1; y <= y2; y++
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_blitter.c 496 unsigned x1, unsigned y1,
504 ctx->vertices[0][0][1] = (float)y1 / ctx->dst_height * 2.0f - 1.0f; /*v0.y*/
507 ctx->vertices[1][0][1] = (float)y1 / ctx->dst_height * 2.0f - 1.0f; /*v1.y*/
555 unsigned x1, unsigned y1,
566 out[1] = y1 / (float)u_minify(src_height0, level);
571 out[1] = y1;
597 unsigned x1, unsigned y1,
604 get_texcoords(src, src_width0, src_height0, x1, y1, x2, y2, coord);
841 unsigned x1, unsigned y1,
848 blitter_set_rectangle(ctx, x1, y1, x2, y2, depth)
    [all...]
  /external/opencv3/modules/calib3d/src/
homography_decomp.cpp 287 int y1 = row == 0 ? 1 : 0; local
290 return (M(y1, x2) * M(y2, x1) - M(y1, x1) * M(y2, x2));
  /external/opencv3/modules/cudawarping/src/cuda/
resize.cu 86 const int y1 = __float2int_rd(src_y);
88 const int y2 = y1 + 1;
92 T src_reg = src(y1, x1);
95 src_reg = src(y1, x2_read);
99 out = out + src_reg * ((x2 - src_x) * (src_y - y1));
102 out = out + src_reg * ((src_x - x1) * (src_y - y1));
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_ffpageview.cpp 328 FX_FLOAT x1 = rt1.left, y1 = rt1.top, x2 = rt2.left, y2 = rt2.top;
329 if (y1 < y2 || (y1 - y2 < XFA_FLOAT_PERCISION && x1 < x2)) {
  /external/webrtc/talk/media/base/
testutils.cc 329 const uint8_t* y1 = frame1->GetYPlane(); local
334 if (0 != memcmp(y0, y1, frame0->GetWidth())) {
338 y1 += frame1->GetYPitch();
  /frameworks/rs/scriptc/
rs_graphics.rsh 816 rsgDrawQuad(float x1, float y1, float z1, float x2, float y2, float z2, float x3, float y3,
836 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, float x2, float y2,
857 rsgDrawRect(float x1, float y1, float x2, float y2, float z);
1046 float x1, y1, z1, x2, y2, z2;
1047 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
1049 bBoxMin->y = y1;
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_graphics.rsh 816 rsgDrawQuad(float x1, float y1, float z1, float x2, float y2, float z2, float x3, float y3,
836 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, float x2, float y2,
857 rsgDrawRect(float x1, float y1, float x2, float y2, float z);
1046 float x1, y1, z1, x2, y2, z2;
1047 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
1049 bBoxMin->y = y1;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/arch/
sh4al-dsp.s 20 movx.w @r1,y1 ;!/* nnmm000100 movx.w @<REG_Axy>,<DSP_REG_XY> */ {"movx.w",{AXY_IND_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_0,HEX_4}, arch_sh4al_dsp_up}
21 movx.w @r1+,y1 ;!/* nnmm001000 movx.w @<REG_Axy>+,<DSP_REG_XY> */{"movx.w",{AXY_INC_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_0,HEX_8}, arch_sh4al_dsp_up}
22 movx.w @r1+r8,y1 ;!/* nnmm001100 movx.w @<REG_Axy>+r8,<DSP_REG_XY> */{"movx.w",{AXY_PMOD_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_0,HEX_C}, arch_sh4al_dsp_up}
26 movx.l @r1,y1 ;!/* nnmm010100 movx.l @<REG_Axy>,<DSP_REG_XY> */ {"movx.l",{AXY_IND_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_1,HEX_4}, arch_sh4al_dsp_up}
27 movx.l @r1+,y1 ;!/* nnmm011000 movx.l @<REG_Axy>+,<DSP_REG_XY> */{"movx.l",{AXY_INC_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_1,HEX_8}, arch_sh4al_dsp_up}
28 movx.l @r1+r8,y1 ;!/* nnmm011100 movx.l @<REG_Axy>+r8,<DSP_REG_XY> */{"movx.l",{AXY_PMOD_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_1,HEX_C}, arch_sh4al_dsp_up}
32 movy.w @r3,y1 ;!/* nnmm000001 movy.w @<REG_Ayx>,<DSP_REG_YX> */ {"movy.w",{AYX_IND_N,DSP_REG_YX},{PPI,MOVY_NOPX,HEX_0,HEX_1}, arch_sh4al_dsp_up}
33 movy.w @r3+,y1 ;!/* nnmm000010 movy.w @<REG_Ayx>+,<DSP_REG_YX> */{"movy.w",{AYX_INC_N,DSP_REG_YX},{PPI,MOVY_NOPX,HEX_0,HEX_2}, arch_sh4al_dsp_up}
34 movy.w @r3+r9,y1 ;!/* nnmm000011 movy.w @<REG_Ayx>+r9,<DSP_REG_YX> */{"movy.w",{AYX_PMOD_N,DSP_REG_YX},{PPI,MOVY_NOPX,HEX_0,HEX_3}, arch_sh4al_dsp_up}
38 movy.l @r3,y1 ;!/* nnmm100001 movy.l @<REG_Ayx>,<DSP_REG_YX> */ {"movy.l",{AYX_IND_N,DSP_REG_YX},{PP (…)
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/arch/
sh4al-dsp.s 20 movx.w @r1,y1 ;!/* nnmm000100 movx.w @<REG_Axy>,<DSP_REG_XY> */ {"movx.w",{AXY_IND_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_0,HEX_4}, arch_sh4al_dsp_up}
21 movx.w @r1+,y1 ;!/* nnmm001000 movx.w @<REG_Axy>+,<DSP_REG_XY> */{"movx.w",{AXY_INC_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_0,HEX_8}, arch_sh4al_dsp_up}
22 movx.w @r1+r8,y1 ;!/* nnmm001100 movx.w @<REG_Axy>+r8,<DSP_REG_XY> */{"movx.w",{AXY_PMOD_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_0,HEX_C}, arch_sh4al_dsp_up}
26 movx.l @r1,y1 ;!/* nnmm010100 movx.l @<REG_Axy>,<DSP_REG_XY> */ {"movx.l",{AXY_IND_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_1,HEX_4}, arch_sh4al_dsp_up}
27 movx.l @r1+,y1 ;!/* nnmm011000 movx.l @<REG_Axy>+,<DSP_REG_XY> */{"movx.l",{AXY_INC_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_1,HEX_8}, arch_sh4al_dsp_up}
28 movx.l @r1+r8,y1 ;!/* nnmm011100 movx.l @<REG_Axy>+r8,<DSP_REG_XY> */{"movx.l",{AXY_PMOD_N,DSP_REG_XY},{PPI,MOVX_NOPY,HEX_1,HEX_C}, arch_sh4al_dsp_up}
32 movy.w @r3,y1 ;!/* nnmm000001 movy.w @<REG_Ayx>,<DSP_REG_YX> */ {"movy.w",{AYX_IND_N,DSP_REG_YX},{PPI,MOVY_NOPX,HEX_0,HEX_1}, arch_sh4al_dsp_up}
33 movy.w @r3+,y1 ;!/* nnmm000010 movy.w @<REG_Ayx>+,<DSP_REG_YX> */{"movy.w",{AYX_INC_N,DSP_REG_YX},{PPI,MOVY_NOPX,HEX_0,HEX_2}, arch_sh4al_dsp_up}
34 movy.w @r3+r9,y1 ;!/* nnmm000011 movy.w @<REG_Ayx>+r9,<DSP_REG_YX> */{"movy.w",{AYX_PMOD_N,DSP_REG_YX},{PPI,MOVY_NOPX,HEX_0,HEX_3}, arch_sh4al_dsp_up}
38 movy.l @r3,y1 ;!/* nnmm100001 movy.l @<REG_Ayx>,<DSP_REG_YX> */ {"movy.l",{AYX_IND_N,DSP_REG_YX},{PP (…)
    [all...]
  /external/opencv/cvaux/src/
cvtrifocal.cpp 961 double x1,y1,x2,y2; local
963 y1 = cvmGet(tmpProjPoints[currImage],1,i);
969 dy = y1-y2;
1242 double x1,y1,x2,y2; local
1469 double x1,y1,w1,x2,y2,w2; local
    [all...]
  /external/deqp/framework/common/
tcuTexLookupVerifier.cpp 101 static void lookupQuad (ColorQuad& dst, const ConstPixelBufferAccess& level, const Sampler& sampler, int x0, int x1, int y0, int y1, int z)
105 dst.p01 = lookup<float>(level, sampler, x0, y1, z);
106 dst.p11 = lookup<float>(level, sampler, x1, y1, z);
426 for (float y1 = yBounds1.x(); y1 <= yBounds1.y(); y1 += searchStep)
429 const float b1 = de::min(y1, yBounds1.y());
495 for (float y1 = yBounds1.x(); y1 < yBounds1.y()+searchStep; y1 += searchStep
703 const int y1 = wrap(sampler.wrapT, j+1, h); local
768 const int y1 = wrap(sampler.wrapT, j+1, h); local
1076 const int y1 = wrap(sampler.wrapT, j0+1, h0); local
1101 const int y1 = wrap(sampler.wrapT, j1+1, h1); local
1187 const int y1 = wrap(sampler.wrapT, j0+1, h0); local
1219 const int y1 = wrap(sampler.wrapT, j1+1, h1); local
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p256.go 64 var x1, y1, z1 [p256Limbs]uint32
65 p256ScalarBaseMult(&x1, &y1, &z1, &scalarReversed)
66 return p256ToAffine(&x1, &y1, &z1)
73 var px, py, x1, y1, z1 [p256Limbs]uint32
76 p256ScalarMult(&x1, &y1, &z1, &px, &py, &scalarReversed)
77 return p256ToAffine(&x1, &y1, &z1)
844 // p256PointAddMixed sets {xOut,yOut,zOut} = {x1,y1,z1} + {x2,y2,1}.
851 func p256PointAddMixed(xOut, yOut, zOut, x1, y1, z1, x2, y2 *[p256Limbs]uint32) {
864 p256Diff(&r, &s2, y1)
876 p256Mul(&tmp, y1, &j
    [all...]
  /prebuilts/go/linux-x86/src/crypto/elliptic/
p256.go 64 var x1, y1, z1 [p256Limbs]uint32
65 p256ScalarBaseMult(&x1, &y1, &z1, &scalarReversed)
66 return p256ToAffine(&x1, &y1, &z1)
73 var px, py, x1, y1, z1 [p256Limbs]uint32
76 p256ScalarMult(&x1, &y1, &z1, &px, &py, &scalarReversed)
77 return p256ToAffine(&x1, &y1, &z1)
844 // p256PointAddMixed sets {xOut,yOut,zOut} = {x1,y1,z1} + {x2,y2,1}.
851 func p256PointAddMixed(xOut, yOut, zOut, x1, y1, z1, x2, y2 *[p256Limbs]uint32) {
864 p256Diff(&r, &s2, y1)
876 p256Mul(&tmp, y1, &j
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 113 int y1 = Y<int>().get(); // ok member in namespace:PotentialConstant
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 7 Y<(1 >> 2)> *y1; variable
  /external/clang/test/Sema/
array-init.c 59 int y1[3] = { local
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 82 int *y1 = x1; // expected-error{{no viable conversion}} local
  /external/freetype/src/cff/
cf2hints.h 274 CF2_Fixed y1,
cffdrivr.c 668 FT_Int y1 = darken_params[1]; local
678 y1 < 0 || y2 < 0 || y3 < 0 || y4 < 0 ||
680 y1 > 500 || y2 > 500 || y3 > 500 || y4 > 500 )
684 driver->darken_params[1] = y1;

Completed in 1299 milliseconds

<<21222324252627282930>>