HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 226 - 250 of 468) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_en.cpp 407 y1 = Adaptive codebook, buffer type Word16
409 g_coeff = Correlations <xn y1> <y1 y1>
442 coeff[0] = y1 y1
443 coeff[1] = -2 xn y1
446 coeff[4] = 2 y1 y2
450 Product <y1 y1> and <xn y1> have been computed in G_pitch() an
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
PointCloud.java 81 public void setY(float y1) {
82 y = y1;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 265 public native boolean setSourceRegion(float x0, float y0, float x1, float y1,
268 private native boolean setTargetRegion(float x0, float y0, float x1, float y1,
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
fimg2d.h 282 int y1; member in struct:fimg2d_rect
284 int y2; /* y1 + height */
301 int y1; member in struct:fimg2d_clip
303 int y2; /* y1 + height */
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
PointCloud.java 81 public void setY(float y1) {
82 y = y1;
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info_state.cpp 291 const int y1 = mSampledInputYs[to]; local
297 keyX, keyY, x0, y0, x1, y1, extend);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTouchListener.java 116 final float y1 = y0 + s * dY / v; local
118 mTable.fling(target, x1 - x0, y1 - y0, (int) (1000f * n / 60f), false);
  /external/icu4c/test/cintltst/
putiltst.c 51 double n1=0.0, y1=0.0, expn1, expy1; local
57 y1 = uprv_modf(value1, &n1);
60 if(y1 != expy1 || n1 != expn1){
62 expn1, n1, expy1, y1);
65 log_verbose("[float] x = %f n = %f y = %f\n", value1, n1, y1);
  /external/opencv/cv/src/
cvsegmentation.cpp 445 int x0 = j, y0 = i, x1, y1, iter; local
520 y1 = cvRound(sy*icount);
525 stop_flag = (x0 == x1 && y0 == y1) || abs(x1-x0) + abs(y1-y0) +
529 x0 = x1; y0 = y1;
  /external/skia/src/effects/
SkBicubicImageFilter.cpp 121 int y1 = SkClampMax(sy , src.height() - 1); local
129 SkPMColor s01 = *src.getAddr32(x0, y1);
130 SkPMColor s11 = *src.getAddr32(x1, y1);
131 SkPMColor s21 = *src.getAddr32(x2, y1);
132 SkPMColor s31 = *src.getAddr32(x3, y1);
  /external/srec/srec/cfront/
spec_anl.c 422 float x1, y1, b, c, wscale; local
442 y1 = x1 < wscale ? (float)x1 / wscale : (float)1.0;
444 b = y1 < 1.0 ? (float)((1.0 - x1) / (1.0 - y1)) : (float)0.0;
448 nsE = (int)(y1 * (ns - 1));
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 154 float y1 = b.y() - a.y(); local
159 float dot01 = x0 * x1 + y0 * y1;
161 float dot11 = x1 * x1 + y1 * y1;
162 float dot12 = x1 * x2 + y1 * y2;
  /external/opencv/cxcore/src/
cxdrawing.cpp 56 int y1; member in struct:CvPolyEdge
89 int x1, y1, x2, y2; local
99 x1 = pt1->x; y1 = pt1->y; x2 = pt2->x; y2 = pt2->y;
100 c1 = (x1 < 0) + (x1 > right) * 2 + (y1 < 0) * 4 + (y1 > bottom) * 8;
110 x1 += (int) (((int64) (a - y1)) * (x2 - x1) / (y2 - y1));
111 y1 = a;
117 x2 += (int) (((int64) (a - y2)) * (x2 - x1) / (y2 - y1));
126 y1 += (int) (((int64) (a - x1)) * (y2 - y1) / (x2 - x1))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.c 1514 int x1, y1, x2, y2; local
    [all...]
  /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
664 FIXP_DBL x1, x2, y, y1, y2; local
680 y1 = drcComp->filter[c].y1;
694 /* y = b0 * (x - x2) - a1 * y1 - a2 * y2; */
695 y = fMult(b0,x-x2) - fMult(a1,y1) - fMult(a2,y2);
699 y2 = y1;
700 y1 = y;
713 drcComp->filter[c].y1 = y1;
    [all...]
  /bootable/recovery/minui/
graphics.c 280 void gr_fill(int x1, int y1, int x2, int y2)
283 y1 += overscan_offset_y;
290 gl->recti(gl, x1, y1, x2, y2);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 371 public void enableClip(int x0, int y0, int x1, int y1) {
374 r.setClipRect(x0, getHeight() - y1, x1 - x0, y1 - y0);
  /external/webkit/Source/WebKit/android/plugins/
android_npapi.h 344 void (*quadTo)(ANPPath*, float x0, float y0, float x1, float y1);
345 void (*cubicTo)(ANPPath*, float x0, float y0, float x1, float y1,
643 void (*drawLine)(ANPCanvas*, float x0, float y0, float x1, float y1,
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Parm.cpp 1857 uint16_t x1, x2, y1, y2, dx, dy; local
1962 uint16_t x1, x2, y1, y2; local
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Parm.cpp 1897 uint16_t x1, x2, y1, y2, dx, dy; local
2002 uint16_t x1, x2, y1, y2; local
    [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/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 109 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

Completed in 4389 milliseconds

1 2 3 4 5 6 7 8 91011>>