/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-comparison.c | 332 ECMA_OP_TO_NUMBER_TRY_CATCH (nx, px, ret_value); in ecma_op_abstract_relational_compare() 336 if (ecma_number_is_nan (nx) in ecma_op_abstract_relational_compare() 344 bool is_x_less_than_y = (nx < ny); in ecma_op_abstract_relational_compare() 349 if (nx == ny in ecma_op_abstract_relational_compare() 350 || (ecma_number_is_zero (nx) in ecma_op_abstract_relational_compare() 356 else if (ecma_number_is_infinity (nx) in ecma_op_abstract_relational_compare() 357 && !ecma_number_is_negative (nx)) in ecma_op_abstract_relational_compare() 374 else if (ecma_number_is_infinity (nx) in ecma_op_abstract_relational_compare() 375 && ecma_number_is_negative (nx)) in ecma_op_abstract_relational_compare() 383 JERRY_ASSERT (!ecma_number_is_nan (nx) in ecma_op_abstract_relational_compare() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | destructuringWithLiteralInitializers2.types | 92 declare const nx: number | undefined; 93 >nx : number | undefined 113 function f32([x = 0, y = 'bar'] = [nx]) {} 119 >[nx] : [number | undefined] 120 >nx : number | undefined 122 function f33([x = 0, y = 'bar'] = [nx, sx]) {} 128 >[nx, sx] : [number | undefined, string | undefined] 129 >nx : number | undefined 156 function f43([x = 0, y = 'bar'] = [sx, nx]) {} 162 >[sx, nx] : [string | undefined, number | undefined] [all …]
|
D | destructuringWithLiteralInitializers2.symbols | 62 declare const nx: number | undefined; 63 >nx : Symbol(nx, Decl(destructuringWithLiteralInitializers2.ts, 15, 13)) 78 function f32([x = 0, y = 'bar'] = [nx]) {} 82 >nx : Symbol(nx, Decl(destructuringWithLiteralInitializers2.ts, 15, 13)) 84 function f33([x = 0, y = 'bar'] = [nx, sx]) {} 88 >nx : Symbol(nx, Decl(destructuringWithLiteralInitializers2.ts, 15, 13)) 107 function f43([x = 0, y = 'bar'] = [sx, nx]) {} 112 >nx : Symbol(nx, Decl(destructuringWithLiteralInitializers2.ts, 15, 13))
|
D | parserS7.3_A1.1_T2.types | 26 $ERROR('#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x)); 27 >$ERROR('#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x)) : any 29 >'#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x) : string 30 >'#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' : "#1: var\\nx\\n=\\n1\\n; x === 1. Actual: "
|
D | scannerS7.3_A1.1_T2.types | 26 $ERROR('#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x)); 27 >$ERROR('#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x)) : any 29 >'#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x) : string 30 >'#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' : "#1: var\\nx\\n=\\n1\\n; x === 1. Actual: "
|
D | destructuringWithLiteralInitializers2.js | 17 declare const nx: number | undefined; 22 function f32([x = 0, y = 'bar'] = [nx]) {} 23 function f33([x = 0, y = 'bar'] = [nx, sx]) {} 28 function f43([x = 0, y = 'bar'] = [sx, nx]) {} argument 76 …var _b = _a === void 0 ? [nx] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d ===… 79 …var _b = _a === void 0 ? [nx, sx] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d… 91 …var _b = _a === void 0 ? [sx, nx] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d…
|
D | destructuringWithLiteralInitializers2.errors.txt | 43 declare const nx: number | undefined; 48 function f32([x = 0, y = 'bar'] = [nx]) {} 49 function f33([x = 0, y = 'bar'] = [nx, sx]) {} 54 function f43([x = 0, y = 'bar'] = [sx, nx]) {}
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SUN/ |
D | SUN_vertex.txt | 50 void Normal3fVertex3fSUN(float nx, float ny, float nz, 55 float nx, float ny, float nz, 80 float nx, float ny, float nz, 87 float nx, float ny, float nz, 95 float nx, float ny, float nz, 116 float nx, float ny, float nz, 123 float nx, float ny, float nz, 138 float nx, float ny, float nz, 148 float nx, float ny, float nz, 184 void Normal3fVertex3fSUN(float nx, float ny, float nz, [all …]
|
/third_party/openGLES/extensions/SUN/ |
D | SUN_vertex.txt | 50 void Normal3fVertex3fSUN(float nx, float ny, float nz, 55 float nx, float ny, float nz, 80 float nx, float ny, float nz, 87 float nx, float ny, float nz, 95 float nx, float ny, float nz, 116 float nx, float ny, float nz, 123 float nx, float ny, float nz, 138 float nx, float ny, float nz, 148 float nx, float ny, float nz, 184 void Normal3fVertex3fSUN(float nx, float ny, float nz, [all …]
|
/third_party/typescript/tests/cases/conformance/es6/destructuring/ |
D | destructuringWithLiteralInitializers2.ts | 18 declare const nx: number | undefined; constant 23 function f32([x = 0, y = 'bar'] = [nx]) {} 24 function f33([x = 0, y = 'bar'] = [nx, sx]) {} 29 function f43([x = 0, y = 'bar'] = [sx, nx]) {}
|
/third_party/skia/third_party/externals/angle2/samples/torus_lighting/ |
D | torus.h | 62 float nx = cosV * cosU; in GenerateTorus() local 66 float length = sqrtf(nx * nx + ny * ny + nz * nz); in GenerateTorus() 67 nx /= length; in GenerateTorus() 71 vertices.push_back(nx); in GenerateTorus()
|
/third_party/ffmpeg/libavcodec/ |
D | motion_est_template.c | 248 int i, nx, ny; in qpel_motion_search() local 266 for(nx= -3; nx <= 3; nx++){ in qpel_motion_search() 268 const int64_t t2= nx*nx*(tr + tl - 2*t) + 4*nx*(tr-tl) + 32*t; in qpel_motion_search() 269 const int64_t c2= nx*nx*( r + l - 2*c) + 4*nx*( r- l) + 32*c; in qpel_motion_search() 270 const int64_t b2= nx*nx*(br + bl - 2*b) + 4*nx*(br-bl) + 32*b; in qpel_motion_search() 274 if((nx&3)==0 && (ny&3)==0) continue; in qpel_motion_search() 276 … score += (mv_penalty[4*mx + nx - pred_x] + mv_penalty[4*my + ny - pred_y])*penalty_factor; in qpel_motion_search() 286 best_pos[i][0]= nx + 4*mx; in qpel_motion_search() 318 for(nx= -3; nx <= 3; nx++){ in qpel_motion_search() 320 … int score= ny*nx*cxy + nx*nx*cx2 + ny*ny*cy2 + nx*cx + ny*cy + 32*c; //FIXME factor in qpel_motion_search() [all …]
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | fma.c | 47 struct num nx, ny, nz; in fma() local 48 nx = normalize(x); in fma() 52 if (nx.e >= ZEROINFNAN || ny.e >= ZEROINFNAN) in fma() 62 mul(&rhi, &rlo, nx.m, ny.m); in fma() 66 int e = nx.e + ny.e; in fma() 100 int sign = nx.sign^ny.sign; in fma()
|
/third_party/musl/src/math/ |
D | fma.c | 47 struct num nx, ny, nz; in fma() local 48 nx = normalize(x); in fma() 52 if (nx.e >= ZEROINFNAN || ny.e >= ZEROINFNAN) in fma() 62 mul(&rhi, &rlo, nx.m, ny.m); in fma() 66 int e = nx.e + ny.e; in fma() 100 int sign = nx.sign^ny.sign; in fma()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/ |
D | graphcycles.cc | 384 Node* nx = r->nodes_[x]; in CheckInvariants() local 385 void* ptr = base_internal::UnhidePtr<void>(nx->masked_ptr); in CheckInvariants() 389 if (nx->visited) { in CheckInvariants() 392 if (!ranks.insert(nx->rank)) { in CheckInvariants() 393 ABSL_RAW_LOG(FATAL, "Duplicate occurrence of rank %d", nx->rank); in CheckInvariants() 395 HASH_FOR_EACH(y, nx->out) { in CheckInvariants() 397 if (nx->rank >= ny->rank) { in CheckInvariants() 399 nx->rank, ny->rank); in CheckInvariants() 497 Node* nx = FindNode(r, idx); in InsertEdge() local 499 if (nx == nullptr || ny == nullptr) return true; // Expired ids in InsertEdge() [all …]
|
/third_party/vk-gl-cts/modules/gles2/accuracy/ |
D | es2aVaryingInterpolationTests.cpp | 59 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() 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/… in projectedTriInterpolate() 80 float nx = wx / dstW; in renderReference() local 83 int triNdx = nx + ny >= 1.0f ? 1 : 0; in renderReference() 84 float triNx = triNdx ? 1.0f - nx : nx; in renderReference()
|
/third_party/vk-gl-cts/modules/gles3/accuracy/ |
D | es3aVaryingInterpolationTests.cpp | 61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() 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/… in projectedTriInterpolate() 82 float nx = wx / dstW; in renderReference() local 85 int triNdx = nx + ny >= 1.0f ? 1 : 0; in renderReference() 86 float triNx = triNdx ? 1.0f - nx : nx; in renderReference()
|
/third_party/flutter/skia/third_party/externals/sdl/src/libm/ |
D | e_rem_pio2.c | 100 int32_t e0, i, j, nx, n, ix, hx; local 191 nx = 3; 192 while (tx[nx - 1] == zero) 193 nx--; /* skip zero term */ 194 n = __kernel_rem_pio2(tx, y, e0, nx, 2, two_over_pi);
|
D | k_rem_pio2.c | 172 __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, in __kernel_rem_pio2() argument 176 __kernel_rem_pio2(x, y, e0, nx, prec, ipio2) in __kernel_rem_pio2() 178 int e0, nx, prec; 192 SDL_assert(nx > 0); 193 jx = nx - 1;
|
/third_party/flutter/skia/src/effects/ |
D | SkEmbossMask.cpp | 73 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; in Emboss() local 76 SkFixed numer = lx * nx + ly * ny + lz_dot_nz; in Emboss() 81 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta); in Emboss()
|
/third_party/skia/src/effects/ |
D | SkEmbossMask.cpp | 73 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; in Emboss() local 76 SkFixed numer = lx * nx + ly * ny + lz_dot_nz; in Emboss() 81 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta); in Emboss()
|
/third_party/vk-gl-cts/framework/opengl/ |
D | gluTextureTestUtil.cpp | 291 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() 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/… in projectedTriInterpolate() 302 …nline float triDerivateY (const tcu::Vec3& s, const tcu::Vec3& w, float wy, float height, float nx) in triDerivateY() argument 304 float d = w[1]*w[2]*(height*(nx - 1.0f) + wy) - w[0]*(w[1]*height*nx + w[2]*wy); in triDerivateY() 305 …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… in triDerivateY() 496 float nx = wx / dstW; in sampleTextureProjected() local 499 int triNdx = nx + ny >= 1.0f ? 1 : 0; in sampleTextureProjected() 502 float triNx = triNdx ? 1.0f - nx : nx; in sampleTextureProjected() 540 float nx = wx / dstW; in sampleTextureProjected() local 543 int triNdx = nx + ny >= 1.0f ? 1 : 0; in sampleTextureProjected() [all …]
|
/third_party/flutter/glfw/examples/ |
D | splitview.c | 62 double s, t, x, y, z, nx, ny, nz, scale, twopi; in drawTorus() local 88 nx = x - TORUS_MAJOR * cos(t * twopi / TORUS_MAJOR_RES); in drawTorus() 91 scale = 1.0 / sqrt(nx*nx + ny*ny + nz*nz); in drawTorus() 92 nx *= scale; in drawTorus() 96 glNormal3f((float) nx, (float) ny, (float) nz); in drawTorus()
|
/third_party/jerryscript/jerry-libm/ |
D | trig.c | 190 __kernel_rem_pio2 (double *x, double *y, int e0, int nx, int prec) in __kernel_rem_pio2() argument 200 jx = nx - 1; in __kernel_rem_pio2() 481 int e0, i, j, nx, n, ix, hx; in __ieee754_rem_pio2() local 590 nx = 3; in __ieee754_rem_pio2() 591 while (tx[nx - 1] == zero) /* skip zero term */ in __ieee754_rem_pio2() 593 nx--; in __ieee754_rem_pio2() 595 n = __kernel_rem_pio2 (tx, y, e0, nx, 2); in __ieee754_rem_pio2()
|
/third_party/flutter/skia/experimental/docs/ |
D | interpolatorFunctions.js | 40 var nx = fx * 27 - ax - dx * 8; 42 var bx = (mx * 2 - nx) / 18; 44 var cx = (nx * 2 - mx) / 18;
|