HomeSort by relevance Sort by last modified time
    Searched defs:nx (Results 26 - 50 of 61) sorted by null

12 3

  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
compute.c 193 int nx = (target == PIPE_BUFFER ? (w / dx) : local
214 for (x = 0; x < nx; ++x) {
237 int nx = (tex->target == PIPE_BUFFER ? (tex->width0 / dx) : local
259 for (x = 0; x < nx; ++x) {
    [all...]
  /external/chromium_org/v8/src/
scanner.cc 740 int nx = x * 8 + d; local
741 if (nx >= 256) break;
742 x = nx;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.cpp 73 vertex(float x, float y, float z, float nx, float ny, float nz)
78 normal[0] = nx;
84 #define VERT(x, y, z) vertices.push_back(vertex((x), (y), (z), (nx), (ny), (nz)))
91 float nx, ny, nz; local
126 nx = 0.0f;
190 nx = -dy / len;
210 nx = -dc[i];
  /external/mesa3d/src/gallium/tests/trivial/
compute.c 193 int nx = (target == PIPE_BUFFER ? (w / dx) : local
214 for (x = 0; x < nx; ++x) {
237 int nx = (tex->target == PIPE_BUFFER ? (tex->width0 / dx) : local
259 for (x = 0; x < nx; ++x) {
    [all...]
  /external/opencv/cv/src/
cvcontourtree.cpp 599 double x13, y13, x12, y12, l_base, nx, ny, qq; local
610 nx = y13 / l_base;
613 *h = nx * x12 + ny * y12;
617 *b = nx * y12 - ny * x12;
cvshapedescr.cpp 568 double x_s, y_s, nx, ny, dx, dy, du, dv; local
608 nx = pt_s.y - pt_e.y;
631 sk = nx * (xi - pt_s.x) + ny * (yi - pt_s.y);
658 dy = -nx;
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 299 float nx = lstPointX + ratio * deltaX; local
301 vector[index] = nx;
305 lstPointX = nx;
  /frameworks/rs/driver/runtime/
rs_sample.c 319 int lx, int ly, int nx, int ny,
327 return getSample_RGBA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
329 return getSample_A(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
331 return getSample_LA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
334 return getSample_565(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
336 return getSample_RGB(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
338 return getSample_L(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
504 int nx = wrapI(wrapS, iPixelU + 1, sourceW); local
509 return getBilinearSample2D(alloc, w0, w1, w2, w3, lx, ly, nx, ny, dk, dt, lod);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
NinePatchTexture.java 225 int nx = stretch(divX, divU, chunk.mDivX, tex.getWidth(), width); local
228 prepareVertexData(divX, divY, divU, divV, nx, ny, chunk.mColor);
313 int nx, int ny, int[] color) {
337 for (int i = 0; i < nx; ++i) {
357 end = nx;
360 start = nx - 1;
366 int k = row * nx + col;
368 int colorIdx = row * (nx - 1) + col;
378 index[idxCount++] = (byte) (k + nx);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 180 float nx = cosV * cosU; local
184 float length = (float) Math.sqrt(nx*nx + ny*ny + nz*nz);
185 nx /= length;
189 grid.set(i, j, x, y, z, nx, ny, nz);
237 // float nx, ny, nx;
317 public void set(int i, int j, float x, float y, float z, float nx, float ny, float nz) {
331 mVertexBuffer.put(nx);
TouchPaint.java 518 float nx = (float) (Math.sin(orientation) * Math.sin(tilt)); local
525 float cx = nx * cd;
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 486 double nx = fx * 27 - ax - dx * 8; local
488 /* bx = */ dst[1].fX = (mx * 2 - nx) / 18;
490 /* cx = */ dst[2].fX = (nx * 2 - mx) / 18;
515 double nx = fx * 27 - a.fX - d.fX * 8;
517 /* bx = */ dst[0].fX = (mx * 2 - nx) / 18;
519 /* cx = */ dst[1].fX = (nx * 2 - mx) / 18;
  /external/openssl/apps/
x509.c 1062 NETSCAPE_X509 nx; local
1067 nx.header= &hdr;
1068 nx.cert=x;
1070 i=ASN1_item_i2d_bio(ASN1_ITEM_rptr(NETSCAPE_X509),out,&nx);
    [all...]
apps.c 824 NETSCAPE_X509 *nx; local
825 nx=ASN1_item_d2i_bio(ASN1_ITEM_rptr(NETSCAPE_X509),cert,NULL);
826 if (nx == NULL)
829 if ((strncmp(NETSCAPE_CERT_HDR,(char *)nx->header->data,
830 nx->header->length) != 0))
832 NETSCAPE_X509_free(nx);
836 x=nx->cert;
837 nx->cert = NULL;
838 NETSCAPE_X509_free(nx);
    [all...]
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 486 double nx = fx * 27 - ax - dx * 8; local
488 /* bx = */ dst[1].fX = (mx * 2 - nx) / 18;
490 /* cx = */ dst[2].fX = (nx * 2 - mx) / 18;
515 double nx = fx * 27 - a.fX - d.fX * 8;
517 /* bx = */ dst[0].fX = (mx * 2 - nx) / 18;
519 /* cx = */ dst[1].fX = (nx * 2 - mx) / 18;
  /system/core/libpixelflinger/
trap.cpp 358 GGLcoord nx, ny; local
359 nx = ny = 0;
365 ((dx > dy) ? ny : nx) = halfWidth;
368 v[0][0] += nx; v[0][1] += ny;
369 v[1][0] += nx; v[1][1] += ny;
370 v[2][0] -= nx; v[2][1] -= ny;
371 v[3][0] -= nx; v[3][1] -= ny;
387 GGLcoord nx = -dy; local
391 const GGLfixed norm = gglMulx(width, gglSqrtRecipx(nx*nx+ny*ny), 4)
    [all...]
  /external/bzip2/
bzip2.c 1113 Int32 nx = strlen(suffix); local
1114 if (ns < nx) return False;
1115 if (strcmp(s + ns - nx, suffix) == 0) return True;
    [all...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp 337 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
339 return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/w[2]);
348 static inline float triDerivateY (const tcu::Vec3& s, const tcu::Vec3& w, float wy, float height, float nx)
350 float d = w[1]*w[2]*(height*(nx - 1.0f) + wy) - w[0]*(w[1]*height*nx + w[2]*wy);
351 return (w[0]*w[1]*w[2]*height * (w[2]*(s[0] - s[1])*(nx - 1.0f) + nx*(w[0]*(s[1] - s[2]) + w[1]*(s[2] - s[0])))) / (d*d)
520 float nx = wx \/ dstW; local
559 float nx = wx \/ dstW; local
661 const float nx = wx \/ dstW; local
847 float nx = wx \/ dstW; local
900 const float nx = wx \/ dstW; local
1731 const float nx = wx \/ dstW; local
1835 const float nx = wx \/ dstW; local
2029 const float nx = wx \/ dstW; local
2202 const float nx = wx \/ dstW; local
2369 const float nx = wx \/ dstW; local
2477 const float nx = wx \/ dstW; local
2677 const float nx = wx \/ dstW; local
2849 const float nx = wx \/ dstW; local
2961 const float nx = wx \/ dstW; local
3079 const float nx = wx \/ dstW; local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/
kvm_host.h 298 bool nx; member in struct:kvm_mmu
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dtypes.h 296 D3DVALUE nx; member in union:_D3DVERTEX::__anon49531
320 nx = n.x; ny = n.y; nz = n.z;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
org.eclipse.equinox.util_1.0.200.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 

Completed in 1421 milliseconds

12 3