HomeSort by relevance Sort by last modified time
    Searched defs:x0 (Results 101 - 125 of 215) sorted by null

1 2 3 45 6 7 8 9

  /external/sonivox/arm-wt-22k/lib_src/
eas_pcmdata.h 58 EAS_PCM x0; /* previous generated sample */ member in struct:s_decoder_state_tag
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 151 float x0 = c.x() - a.x(); local
158 float dot00 = x0 * x0 + y0 * y0;
159 float dot01 = x0 * x1 + y0 * y1;
160 float dot02 = x0 * x2 + y0 * y2;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastidct.cpp 81 int32 x0, x1, x3, x5, x7;//, x8; local
84 x0 = ((int32)blk[0] << 11) + 128;
94 blk[0] = (x0 + x1) >> 8;
95 blk[8] = (x0 + x7) >> 8;
96 blk[16] = (x0 + x5) >> 8;
97 blk[24] = (x0 + x3) >> 8;
98 blk[56] = (x0 - x1) >> 8;
99 blk[48] = (x0 - x7) >> 8;
100 blk[40] = (x0 - x5) >> 8;
101 blk[32] = (x0 - x3) >> 8
107 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
142 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
211 int32 x0, x2, x4, x6; local
261 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
373 int32 x0, x1, x2, x4, x5; local
432 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
502 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
635 int32 x0, x2, x4, x6; local
746 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
869 int32 x0, x1, x2, x4, x5; local
924 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
990 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1118 int32 x0, x2, x4, x6; local
1223 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1369 int32 x0, x1, x2, x4, x5; local
1429 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1500 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1635 int32 x0, x2, x4, x6; local
1748 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.c 96 x0 integer x-coordinate for prediction
111 i32 x0,
135 if ((x0 < 0) || ((u32)x0+chromaPartWidth+1 > width) ||
138 h264bsdFillBlock(pRef, block, x0, y0, width, height,
142 x0, y0, width, height, chromaPartWidth + 1,
146 x0 = 0;
157 ptrA = pRef + (comp * height + (u32)y0) * width + x0;
207 i32 x0,
231 if ((x0 < 0) || ((u32)x0+chromaPartWidth > width) |
1982 i32 xInt, yInt, x0, y0; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java 448 int x0 = BytesTo32Bits(src, srcIndex) ^ gSubKeys[INPUT_WHITEN]; local
457 t0 = Fe32_0(x0);
465 x0 ^= t0 + t1 + gSubKeys[k++];
466 x0 = x0 >>>1 | x0 << 31;
472 Bits32ToBytes(x0 ^ gSubKeys[OUTPUT_WHITEN + 2], dst, dstIndex + 8);
489 int x0 = BytesTo32Bits(src, srcIndex+8) ^ gSubKeys[OUTPUT_WHITEN + 2]; local
499 x0 = (x0 << 1 | x0 >>> 31) ^ (t0 + t1 + gSubKeys[k--])
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
LetterQuad.java 22 private float x0 = Integer.MIN_VALUE; field in class:LetterQuad
121 return x0 == Integer.MIN_VALUE;
131 if (x0 == Integer.MIN_VALUE || y0 == Integer.MIN_VALUE) {
138 return x0 > 0 && bound.x+bound.width-gap < getX1();
142 return x0;
146 return x0+width;
150 return x0+xAdvance;
224 x0 = Integer.MIN_VALUE;
258 x0 = getBound(block).x;
264 x0 = previous.getNextX();
    [all...]
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 290 float x0 = centerX + (x - centerX) * scale; local
294 tempMat.setTranslation(x0, getHeight() - y0, 0);
316 float x0 = x + 0.5f * width * (1f - imageScale); local
320 tempMat.setTranslation(x0, getHeight() - y0, 0);
371 public void enableClip(int x0, int y0, int x1, int y1) {
374 r.setClipRect(x0, getHeight() - y1, x1 - x0, y1 - y0);
  /external/libvpx/vp8/common/
postproc.c 126 extern void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch);
631 static void constrain_line (int x0, int *x1, int y0, int *y1, int width, int height)
638 dx = *x1 - x0;
643 *y1 = ((width-x0)*dy)/dx + y0;
647 dx = *x1 - x0;
652 *y1 = ((0-x0)*dy)/dx + y0;
656 dx = *x1 - x0;
661 *x1 = ((height-y0)*dx)/dy + x0;
665 dx = *x1 - x0;
670 *x1 = ((0-y0)*dx)/dy + x0;
841 int x0, y0; local
    [all...]
  /external/opencv/cv/src/
cvsegmentation.cpp 445 int x0 = j, y0 = i, x1, y1, iter; local
464 minx = cvRound(x0 - sp); minx = MAX(minx, 0);
466 maxx = cvRound(x0 + sp); maxx = MIN(maxx, size.width-1);
525 stop_flag = (x0 == x1 && y0 == y1) || abs(x1-x0) + abs(y1-y0) +
529 x0 = x1; y0 = y1;
cvstereobm.cpp 252 int x0 = x - wsz2 - 1, x1 = x + wsz2; local
253 const uchar* cbuf_sub = cbuf0 + ((x0 + wsz2 + 1) % (wsz + 1))*cstep - dy0*ndisp;
256 lptr_sub = lptr0 + MIN(MAX(x0, -lofs), width-1-lofs) - dy0*sstep;
458 int x0 = x - wsz2 - 1, x1 = x + wsz2; local
459 const uchar* cbuf_sub = cbuf0 + ((x0 + wsz2 + 1) % (wsz + 1))*cstep - dy0*ndisp;
462 lptr_sub = lptr0 + MIN(MAX(x0, -lofs), width-1-lofs) - dy0*sstep;
cvtemplmatch.cpp 207 int x0 = x - anchor.x, y0 = y - anchor.y; local
208 int x1 = MAX( 0, x0 ), y1 = MAX( 0, y0 ), x2, y2;
213 x2 = MIN( img->cols, x0 + isz.width );
228 cvRect( x1 - x0, y1 - y0, x2 - x1, y2 - y1 ));
244 cvCopyMakeBorder( dst1, dst, cvPoint(x1 - x0, y1 - y0), IPL_BORDER_REPLICATE );
cvundistort.cpp 52 float x0 = (size.width-1)*0.5f, y0 = (size.height-1)*0.5f; local
69 float _x = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + x0;
193 float u0, v0, fx, fy, ifx, ify, x0, y0, k1, k2, k3, p1, p2; local
235 x0 = (size.width-1)*0.5f;
248 double _x = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + x0;
444 double x, y, x0, y0; local
456 x0 = x = (x - cx)*ifx;
466 x = (x0 - deltaX)*icdist;
  /external/skia/tests/
MathTest.cpp 198 float x0 = (float)ival; local
201 REPORTER_ASSERT(reporter, x0 == x1);
202 REPORTER_ASSERT(reporter, x0 == x2);
  /external/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 57 static double x0; // x[n] variable
93 x0 = 0.0f;
105 x0 = (double) buffer[i];
107 out0 = (m_fa*x0) + (m_fb*x1) + (m_fc*x2) + (m_fd*out1) + (m_fe*out2);
110 x1 = x0;
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
557 x0=H[0]*x[0]+H[1]*x[1]+H[2];
561 sd=(y[0]-x0*mult)*(y[0]-x0*mult)+(y[1]-x1*mult)*(y[1]-x1*mult);
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
557 x0=H[0]*x[0]+H[1]*x[1]+H[2];
561 sd=(y[0]-x0*mult)*(y[0]-x0*mult)+(y[1]-x1*mult)*(y[1]-x1*mult);
  /prebuilts/tools/common/http-client/
commons-logging-1.1.1.jar 
  /external/chromium/chrome/browser/ui/views/tabs/
tab.cc 400 int x0 = width() + radius - kMiniTitleChangeInitialXOffset; local
405 x = mini_title_animation_->CurrentValueBetween(x0, x1);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
ant-jmf.jar 
ant-swing.jar 

Completed in 1079 milliseconds

1 2 3 45 6 7 8 9