Searched refs:ny (Results 1 - 25 of 87) sorted by relevance

1234

/external/valgrind/none/tests/s390x/
H A Dand.stdout.exp49 ny + 0000000000000000 & 0000000000000000 = 0000000000000000 (cc=0)
50 ny + 0000000000000001 & 0000000000000000 = 0000000000000000 (cc=0)
51 ny + 000000000000FFFF & 0000000000000000 = 0000000000000000 (cc=0)
52 ny + 0000000000007FFF & 0000000000000000 = 0000000000000000 (cc=0)
53 ny + 0000000000008000 & 0000000000000000 = 0000000000000000 (cc=0)
54 ny + 00000000FFFFFFFF & 0000000000000000 = 0000000000000000 (cc=0)
55 ny + 0000000080000000 & 0000000000000000 = 0000000000000000 (cc=0)
56 ny + 000000007FFFFFFF & 0000000000000000 = 0000000000000000 (cc=0)
57 ny + AAAAAAAAAAAAAAAA & 0000000000000000 = AAAAAAAA00000000 (cc=0)
58 ny
[all...]
/external/skia/src/effects/
H A DSkEmbossMask.cpp72 int ny = alpha[x + next_row] - alpha[x - prev_row]; local
74 SkFixed numer = lx * nx + ly * ny + lz_dot_nz;
79 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta);
/external/skqp/src/effects/
H A DSkEmbossMask.cpp72 int ny = alpha[x + next_row] - alpha[x - prev_row]; local
74 SkFixed numer = lx * nx + ly * ny + lz_dot_nz;
79 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta);
/external/syslinux/utils/
H A Dppmtolss16317 my($ny) = @_;
319 if ( !defined($ny) ) {
321 $ny = 0; # Force the last byte out
327 $ny = $ny & 0x0F;
330 $ny = ($ny << 4) | $nybble_tmp;
331 print chr($ny);
335 $nybble_tmp = $ny;
/external/tensorflow/tensorflow/compiler/jit/graphcycles/
H A Dgraphcycles.cc97 Node* ny = r->nodes_[y]; local
98 if (nx->rank >= ny->rank) {
100 << nx->rank << "->" << ny->rank;
173 Node* ny = r->nodes_[y]; local
174 ny->in.insert(x);
176 if (nx->rank <= ny->rank) {
182 // We only need to consider nodes that fall in the range [ny->rank,nx->rank].
186 ny->in.erase(x);
192 BackwardDFS(r, x, ny->rank);
342 Node* ny local
[all...]
/external/opencv/cv/src/
H A Dcvcamshift.cpp97 int dx, dy, nx, ny; local
112 ny = cur_rect.y + dy;
119 if( ny < 0 )
120 ny = 0;
121 else if( ny + cur_rect.height > mat->rows )
122 ny = mat->rows - cur_rect.height;
125 dy = ny - cur_rect.y;
127 cur_rect.y = ny;
/external/deqp/modules/gles2/accuracy/
H A Des2aVaryingInterpolationTests.cpp59 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
61 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]);
81 float ny = wy / dstH; local
83 int triNdx = nx + ny >= 1.0f ? 1 : 0;
85 float triNy = triNdx ? 1.0f - ny : ny;
/external/deqp/modules/gles3/accuracy/
H A Des3aVaryingInterpolationTests.cpp61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
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]);
83 float ny = wy / dstH; local
85 int triNdx = nx + ny >= 1.0f ? 1 : 0;
87 float triNy = triNdx ? 1.0f - ny : ny;
/external/skia/experimental/docs/
H A DinterpolatorFunctions.js41 var ny = fy * 27 - ay - dy * 8;
43 var by = (my * 2 - ny) / 18;
45 var cy = (ny * 2 - my) / 18;
/external/skqp/experimental/docs/
H A DinterpolatorFunctions.js41 var ny = fy * 27 - ay - dy * 8;
43 var by = (my * 2 - ny) / 18;
45 var cy = (ny * 2 - my) / 18;
/external/fonttools/Lib/fontTools/pens/
H A DbasePen.py266 nx, ny = points[0] # first off-curve point
267 impliedStartPoint = (0.5 * (x + nx), 0.5 * (y + ny))
333 nx, ny = points[i+1]
334 impliedPt = (0.5 * (x + nx), 0.5 * (y + ny))
/external/fonttools/Tools/fontTools/pens/
H A DbasePen.py266 nx, ny = points[0] # first off-curve point
267 impliedStartPoint = (0.5 * (x + nx), 0.5 * (y + ny))
333 nx, ny = points[i+1]
334 impliedPt = (0.5 * (x + nx), 0.5 * (y + ny))
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.cpp291 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
293 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]);
296 static inline float triDerivateX (const tcu::Vec3& s, const tcu::Vec3& w, float wx, float width, float ny) argument
298 float d = w[1]*w[2]*(width*(ny - 1.0f) + wx) - w[0]*(w[2]*width*ny + w[1]*wx);
299 return (w[0]*w[1]*w[2]*width * (w[1]*(s[0] - s[2])*(ny - 1.0f) + ny*(
487 float ny = wy / dstH; local
530 float ny = wy / dstH; local
636 const float ny = wy / dstH; local
832 float ny = wy / dstH; local
889 const float ny = wy / dstH; local
1283 const float ny = wy / dstH; local
1390 const float ny = wy / dstH; local
1597 const float ny = wy / dstH; local
1771 const float ny = wy / dstH; local
1938 const float ny = wy / dstH; local
2047 const float ny = wy / dstH; local
2244 const float ny = wy / dstH; local
2419 const float ny = wy / dstH; local
2533 const float ny = wy / dstH; local
2655 const float ny = wy / dstH; local
[all...]
/external/toolchain-utils/crosperf/
H A Dmachine_image_manager.py294 ny = reduce(lambda x, y: x + 1 if (y[1] == 'Y') else x,
296 if ny < N:
/external/libconstrainedcrypto/
H A Dp256_ec.c1043 /* scalar_base_mult sets {nx,ny,nz} = scalar*G where scalar is a little-endian
1046 static void scalar_base_mult(felem nx, felem ny, felem nz, argument
1056 memset(ny, 0, sizeof(felem));
1063 point_double(nx, ny, nz, nx, ny, nz);
1077 * {nx,ny,nz} != {px,py,1}, unless both are zero, which we handle
1079 point_add_mixed(tx, ty, tz, nx, ny, nz, px, py);
1080 /* The result of point_add_mixed is incorrect if {nx,ny,nz} is zero
1084 copy_conditional(ny, py, n_is_infinity_mask);
1089 * only copying from {tx,ty,tz} to {nx,ny,n
1103 point_to_affine(felem x_out, felem y_out, const felem nx, const felem ny, const felem nz) argument
1114 scalar_mult(felem nx, felem ny, felem nz, const felem x, const felem y, const p256_int* scalar) argument
[all...]
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_rectangle.cpp111 float ny = 1.0f; local
127 nx = -1, ny = 0;
138 nx = 0, ny = -1;
149 nx = 1, ny = 0;
160 nx = 0, ny = 1;
196 fillPath->LineTo(CFX_PointF(cp2.x + fRadius2 * nx, cp2.y + fRadius2 * ny));
488 float ny = 1.0f; local
508 nx = -1, ny = 0;
527 nx = 0, ny = -1;
546 nx = 1, ny
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_miptree.c32 nv50_tex_choose_tile_dims_helper(unsigned nx, unsigned ny, unsigned nz, argument
37 if (ny > 64) tile_mode = 0x040; /* height 128 tiles */
39 if (ny > 32) tile_mode = 0x030; /* height 64 tiles */
41 if (ny > 16) tile_mode = 0x020; /* height 32 tiles */
43 if (ny > 8) tile_mode = 0x010; /* height 16 tiles */
62 nv50_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz, bool is_3d) argument
64 return nv50_tex_choose_tile_dims_helper(nx, ny * 2, nz, is_3d);
H A Dnv50_resource.h37 nv50_tex_choose_tile_dims_helper(unsigned nx, unsigned ny, unsigned nz,
/external/libyuv/files/util/
H A Dpsnr_main.cc111 int ny = (y - 16) * 256 / 224; local
112 if (ny < 0)
113 ny = 0;
114 if (ny > 255)
115 ny = 255;
116 return static_cast<uint8>(ny);
/external/tensorflow/tensorflow/python/kernel_tests/
H A Dstack_ops_test.py89 ny = y + gen_data_flow_ops._stack_pop_v2(h, dtypes.float32)
90 return [nx, ny]
234 ny = y + gen_data_flow_ops._stack_pop(h, dtypes.float32)
235 return [nx, ny]
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_jpx_opj.cpp324 const int* ny = nullptr; local
331 ny = y + yw;
346 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
347 ++ny;
351 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
352 ++ny;
369 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
370 ++ny;
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_miptree.c32 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz, bool is_3d) argument
34 return nv50_tex_choose_tile_dims_helper(nx, ny, nz, is_3d);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
H A DTimeZoneRuleTest.java219 TimeZone ny = TimeZone.getTimeZone("America/New_York", TimeZone.TIMEZONE_ICU);
275 if (!(((BasicTimeZone)ny).hasEquivalentTransitions(rbtz, jan1_1967, jan1_2010))) {
278 if (((BasicTimeZone)ny).hasEquivalentTransitions(rbtz, jan1_1950, jan1_2010)) {
283 if (!rbtz.hasEquivalentTransitions(ny, jan1_1967, jan1_2010)) {
286 if (rbtz.hasEquivalentTransitions(ny, jan1_1950, jan1_2010)) {
291 if (ny.hasSameRules(rbtz) || rbtz.hasSameRules(ny)) {
313 ny.getOffset(times[i], false, offsets2);
315 errln("FAIL: Incompatible time zone offsets for ny and rbtz");
319 if (rbtz.inDaylightTime(d) != ny
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
H A DTimeZoneRuleTest.java216 TimeZone ny = TimeZone.getTimeZone("America/New_York", TimeZone.TIMEZONE_ICU);
272 if (!(((BasicTimeZone)ny).hasEquivalentTransitions(rbtz, jan1_1967, jan1_2010))) {
275 if (((BasicTimeZone)ny).hasEquivalentTransitions(rbtz, jan1_1950, jan1_2010)) {
280 if (!rbtz.hasEquivalentTransitions(ny, jan1_1967, jan1_2010)) {
283 if (rbtz.hasEquivalentTransitions(ny, jan1_1950, jan1_2010)) {
288 if (ny.hasSameRules(rbtz) || rbtz.hasSameRules(ny)) {
310 ny.getOffset(times[i], false, offsets2);
312 errln("FAIL: Incompatible time zone offsets for ny and rbtz");
316 if (rbtz.inDaylightTime(d) != ny
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderBuiltinVarTests.cpp358 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
360 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]);

Completed in 932 milliseconds

1234