HomeSort by relevance Sort by last modified time
    Searched defs:nx (Results 1 - 25 of 66) sorted by null

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2.c 59 int32_t e0,i,j,nx,n,ix,hx; local
181 nx = 3;
182 while(tx[nx-1]==zero) nx--; /* skip zero term */
183 n = __kernel_rem_pio2(tx,ty,e0,nx,1);
  /device/google/contexthub/lib/libm/
ef_rem_pio2.c 108 int e0,nx; local
188 nx = 3;
189 while(tx[nx-1]==zero) nx--; /* skip zero term */
190 n = __kernel_rem_pio2f(tx,y,e0,nx,2,two_over_pi);
  /external/clang/test/SemaCXX/
namespace-alias.cpp 116 A::X nx; variable
  /external/fdlibm/
e_rem_pio2.c 92 int e0,i,j,nx,n,ix,hx; local
170 nx = 3;
171 while(tx[nx-1]==zero) nx--; /* skip zero term */
172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
remap.hpp 86 const typename PtrTraits<MapXPtr>::value_type nx = mapx(y, x); local
88 return src(ny, nx);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 89 float nx = this.x; local
92 float ox = nx;
93 nx = ny;
96 return new Point(nx, ny);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
infoflow.py 22 import networkx as nx namespace
54 self.G = nx.DiGraph()
119 yield self.__generate_steps(nx.shortest_path(self.subG, s, t))
159 for path in nx.all_simple_paths(self.subG, s, t, maxlen):
194 for path in nx.all_shortest_paths(self.subG, s, t):
253 return nx.info(self.G)
dta.py 25 import networkx as nx namespace
64 self.G = nx.DiGraph()
113 yield self.__generate_steps(nx.shortest_path(self.subG, s, t))
149 for path in nx.all_simple_paths(self.subG, s, t, maxlen):
181 for path in nx.all_shortest_paths(self.subG, s, t):
242 return nx.info(self.G)
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
e_rem_pio2l.h 68 int e0,ex,i,j,nx; local
132 nx = 5;
133 while(tx[nx-1]==zero) nx--; /* skip zero term */
134 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
  /external/skia/src/effects/
SkEmbossMask.cpp 109 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; local
112 SkFixed numer = lx * nx + ly * ny + lz_dot_nz;
118 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta);
126 SkFixed dot = (unsigned)(numer >> 4) * gInvSqrtTable[(SkAbs32(nx) >> 1 << 7) | (SkAbs32(ny) >> 1)] >> 20;
  /external/v8/src/third_party/fdlibm/
fdlibm.cc 63 INLINE(int __kernel_rem_pio2(double* x, double* y, int e0, int nx)) {
66 int32_t jx = nx - 1;
217 int nx = 3; local
218 while (tx[nx - 1] == zero) nx--;
219 int n = __kernel_rem_pio2(tx, y, e0, nx);
  /frameworks/base/core/java/android/text/method/
Touch.java 153 int nx = widget.getScrollX() + (int) dx; local
165 scrollTo(widget, layout, nx, ny);
  /libcore/ojluni/src/main/java/sun/nio/ch/
Net.java 152 Exception nx = x; local
154 nx = new SocketException("Socket is closed");
156 nx = new SocketException("Socket is not connected");
158 nx = new SocketException("Already bound");
160 nx = new SocketException("Socket is not bound yet");
162 nx = new SocketException("Unsupported address type");
164 nx = new SocketException("Unresolved address");
167 nx = new SocketException("Already connected");
169 if (nx != x)
170 nx.initCause(x)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_transfer.c 572 unsigned nx = rect->w >> k; local
579 m += ((ty * nx) + tx) << k << k;
  /external/opencv/cv/src/
cvcamshift.cpp 97 int dx, dy, nx, ny; local
111 nx = cur_rect.x + dx;
114 if( nx < 0 )
115 nx = 0;
116 else if( nx + cur_rect.width > mat->cols )
117 nx = mat->cols - cur_rect.width;
124 dx = nx - cur_rect.x;
126 cur_rect.x = nx;
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfB44Compressor.cpp 458 int nx; member in struct:Imf::B44Compressor::ChannelData
670 cd.nx = numSamples (c.channel().xSampling, minX, maxX);
673 tmpBufferEnd += cd.nx * cd.ny * cd.size;
696 for (int x = cd.nx; x > 0; --x)
704 int n = cd.nx * cd.size;
733 int n = cd.nx * cd.size;
777 int n = cd.nx * cd.ny * cd.size * sizeof (unsigned short);
792 // If the width, cd.nx, or the height, cd.ny, of
798 unsigned short *row0 = cd.start + y * cd.nx;
799 unsigned short *row1 = row0 + cd.nx;
    [all...]
ImfPizCompressor.cpp 163 int nx; member in struct:Imf::PizCompressor::ChannelData
355 cd.nx = numSamples (c.channel().xSampling, minX, maxX);
361 tmpBufferEnd += cd.nx * cd.ny * cd.size;
379 for (int x = cd.nx * cd.size; x > 0; --x)
402 int n = cd.nx * cd.size;
462 cd.nx, cd.size,
463 cd.ny, cd.nx * cd.size,
531 cd.nx = numSamples (c.channel().xSampling, minX, maxX);
537 tmpBufferEnd += cd.nx * cd.ny * cd.size;
588 cd.nx, cd.size
    [all...]
  /external/opencv3/modules/video/src/
camshift.cpp 90 int nx = std::min(std::max(cur_rect.x + dx, 0), size.width - cur_rect.width); local
93 dx = nx - cur_rect.x;
95 cur_rect.x = nx;
  /external/curl/lib/
cookie.c 300 struct Cookie *co, *nx, *pv; local
306 nx = co->next;
320 co = nx;
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 58 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
60 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]);
79 float nx = wx / dstW; local
82 int triNdx = nx + ny >= 1.0f ? 1 : 0;
83 float triNx = triNdx ? 1.0f - nx : nx;
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
63 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]);
82 float nx = wx / dstW; local
85 int triNdx = nx + ny >= 1.0f ? 1 : 0;
86 float triNx = triNdx ? 1.0f - nx : nx;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_surface.c 223 unsigned nx = util_format_get_nblocksx(src->format, src_box->width); local
231 nv50_m2mf_transfer_rect(nv50, &drect, &srect, nx, ny);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_surface.c 230 unsigned nx = util_format_get_nblocksx(src->format, src_box->width); local
238 nvc0->m2mf_copy_rect(nvc0, &drect, &srect, nx, ny);
    [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...]

Completed in 694 milliseconds

1 2 3