Home
last modified time | relevance | path

Searched refs:j0 (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/jerryscript/jerry-libm/
Dfloor.c45 int i0, i1, j0; in floor() local
50 j0 = ((i0 >> 20) & 0x7ff) - 0x3ff; in floor()
51 if (j0 < 20) in floor()
53 if (j0 < 0) /* raise inexact if x != 0 */ in floor()
70 i = (0x000fffff) >> j0; in floor()
79 i0 += (0x00100000) >> j0; in floor()
86 else if (j0 > 51) in floor()
88 if (j0 == 0x400) /* inf or NaN */ in floor()
99 i = ((unsigned) (0xffffffff)) >> (j0 - 20); in floor()
108 if (j0 == 20) in floor()
[all …]
Dceil.c45 int i0, i1, j0; in ceil() local
50 j0 = ((i0 >> 20) & 0x7ff) - 0x3ff; in ceil()
51 if (j0 < 20) in ceil()
53 if (j0 < 0) /* raise inexact if x != 0 */ in ceil()
71 i = (0x000fffff) >> j0; in ceil()
80 i0 += (0x00100000) >> j0; in ceil()
87 else if (j0 > 51) in ceil()
89 if (j0 == 0x400) /* inf or NaN */ in ceil()
100 i = ((unsigned) (0xffffffff)) >> (j0 - 20); in ceil()
109 if (j0 == 20) in ceil()
[all …]
/third_party/typescript/tests/baselines/reference/
DemitCompoundExponentiationAssignmentWithIndexingOnLHS1.types76 var j0 = 0, j1 = 1;
77 >j0 : number
82 array3[j0++] **= array3[j1++] **= array3[j0++] **= 1;
83 >array3[j0++] **= array3[j1++] **= array3[j0++] **= 1 : number
84 >array3[j0++] : number
86 >j0++ : number
87 >j0 : number
88 >array3[j1++] **= array3[j0++] **= 1 : number
93 >array3[j0++] **= 1 : number
94 >array3[j0++] : number
[all …]
DemitCompoundExponentiationAssignmentWithIndexingOnLHS1.symbols39 var j0 = 0, j1 = 1;
40 >j0 : Symbol(j0, Decl(emitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts, 13, 3))
43 array3[j0++] **= array3[j1++] **= array3[j0++] **= 1;
45 >j0 : Symbol(j0, Decl(emitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts, 13, 3))
49 >j0 : Symbol(j0, Decl(emitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts, 13, 3))
DemitCompoundExponentiationAssignmentWithIndexingOnLHS1.js15 var j0 = 0, j1 = 1; variable
16 array3[j0++] **= array3[j1++] **= array3[j0++] **= 1;
30 var j0 = 0, j1 = 1;
31 (_o = array3)[_p = j0++] = Math.pow(_o[_p], (_l = array3)[_m = j1++] = Math.pow(_l[_m], (_j = array…
/third_party/flutter/skia/third_party/externals/sdl/src/libm/
Ds_floor.c44 int32_t i0, i1, j0; local
47 j0 = ((i0 >> 20) & 0x7ff) - 0x3ff;
48 if (j0 < 20) {
49 if (j0 < 0) { /* raise inexact if x != 0 */
59 i = (0x000fffff) >> j0;
64 i0 += (0x00100000) >> j0;
69 } else if (j0 > 51) {
70 if (j0 == 0x400)
75 i = ((u_int32_t) (0xffffffff)) >> (j0 - 20);
80 if (j0 == 20)
[all …]
/third_party/python/Mac/BuildScript/scripts/
Dpostflight.framework10 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
15 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
20 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
25 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
Dpostflight.ensurepip21 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
26 "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
/third_party/typescript/tests/cases/conformance/es7/exponentiationOperator/
DemitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts16 var j0 = 0, j1 = 1; variable
17 array3[j0++] **= array3[j1++] **= array3[j0++] **= 1;
/third_party/boost/boost/math/interpolators/detail/
Dseptic_hermite_detail.hpp120 Real j0 = d3ydx3_[i]; in operator ()() local
123 return z0*y0 + z4*y1 + (z1*v0 + z5*v1)*dx + (z2*a0 + z6*a1)*dx2 + (z3*j0 + z7*j1)*dx3; in operator ()()
151 Real j0 = d3ydx3_[i]; in prime() local
168 dydx += (x-x0)*(x-x0)*(z5*j0 + z6*j1)/6; in prime()
299 Real j0 = d3y_[i]; in unchecked_evaluation() local
302 return z0*y0 + z1*dy0 + z2*a0 + z3*j0 + z4*y1 + z5*dy1 + z6*a1 + z7*j1; in unchecked_evaluation()
342 Real j0 = d3y_[i]; in unchecked_prime() local
357 dydx += t*t*(z5*j0 + z6*j1); in unchecked_prime()
398 Real j0 = d3y_[i]; in unchecked_double_prime() local
413 d2ydx2 += 6*(z5*j0 + z6*j1)/(inv_dx_*inv_dx_); in unchecked_double_prime()
[all …]
/third_party/weston/clients/
Dsmoke.c213 int i, i0, i1, j, j0, j1, k, d = 5; in smoke_motion_handler() local
225 j0 = 1; in smoke_motion_handler()
227 j0 = y - d; in smoke_motion_handler()
228 if (j0 + 2 * d > smoke->height - 1) in smoke_motion_handler()
231 j1 = j0 + 2 * d; in smoke_motion_handler()
234 for (j = j0; j < j1; j++) { in smoke_motion_handler()
/third_party/openGLES/extensions/SGIX/
DSGIX_texture_phase.txt133 j0 = (
137 / (j0 + 1) mod 2**m, TEXTURE_WRAP_T is REPEAT
139 \ j0 + 1, TEXTURE_WRAP_T is CLAMP
149 t00 = T[i0,j0]
151 t10 = T[i1,j0]
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DSGIX_texture_phase.txt133 j0 = (
137 / (j0 + 1) mod 2**m, TEXTURE_WRAP_T is REPEAT
139 \ j0 + 1, TEXTURE_WRAP_T is CLAMP
149 t00 = T[i0,j0]
151 t10 = T[i1,j0]
/third_party/mesa3d/src/mesa/swrast/
Ds_texfilter.c558 GLint *i0, GLint *i1, GLint *j0, GLint *j1, GLint *slice, in linear_texcoord() argument
571 height, j0, j1, wj); in linear_texcoord()
580 texcoord[1], j0, j1, wj); in linear_texcoord()
587 *j0 = tex_array_slice(texcoord[1], height); in linear_texcoord()
588 *j1 = *j0; in linear_texcoord()
596 texcoord[1], j0, j1, wj); in linear_texcoord()
1159 GLint i0, j0, i1, j1; in sample_2d_linear() local
1165 linear_texel_locations(samp->Attrib.WrapT, img, height, texcoord[1], &j0, &j1, &b); in sample_2d_linear()
1170 j0 += img->Border; in sample_2d_linear()
1176 if (j0 < 0 || j0 >= height) useBorderColor |= J0BIT; in sample_2d_linear()
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/infer/
Dadd_sub_grad_infer.c46 int j0 = 0; in AddSubGradInferShape() local
49 param->in_shape0_[i] = ((int)i < fillDimNum0) ? 1 : x1->shape_[j0++]; in AddSubGradInferShape()
Dmax_min_grad_infer.c49 int j0 = 0; in MaxMinGradInferShape() local
52 param->in_shape0_[i] = ((int)i < fillDimNum0) ? 1 : x1->shape_[j0++]; in MaxMinGradInferShape()
/third_party/boost/libs/beast/test/beast/zlib/
Dinflate_stream.cpp298 std::size_t j0, j1; in operator ()() local
311 case once: j0 = check.size(); j1 = j0; break; in operator ()()
312 case half: j0 = check.size() / 2; j1 = j0; break; in operator ()()
313 case full: j0 = 1; j1 = check.size(); break; in operator ()()
317 for(std::size_t j = j0; j <= j1; ++j) in operator ()()
/third_party/musl/porting/liteos_a/kernel/src/math/
Djn.c59 return j0(x); in jn()
98 a = j0(x); in jn()
203 z = j0(x); in jn()
Dj0.c111 double j0(double x) in j0() function
185 return u/v + tpi*(j0(x)*log(x)); in y0()
/third_party/musl/src/math/
Djn.c59 return j0(x); in jn()
98 a = j0(x); in jn()
203 z = j0(x); in jn()
Dj0.c111 double j0(double x) in j0() function
185 return u/v + tpi*(j0(x)*log(x)); in y0()
/third_party/vk-gl-cts/framework/common/
DtcuTexLookupVerifier.cpp934 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isNearestMipmapLinearSampleResultValid() local
942 …= lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), coordZ); in isNearestMipmapLinearSampleResultValid()
993 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isNearestMipmapLinearSampleResultValid() local
1003 …p<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), wrap(sampler.w… in isNearestMipmapLinearSampleResultValid()
1140 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isLinearMipmapLinearSampleResultValid() local
1150 const int y0 = wrap(sampler.wrapT, j0 , h0); in isLinearMipmapLinearSampleResultValid()
1151 const int y1 = wrap(sampler.wrapT, j0+1, h0); in isLinearMipmapLinearSampleResultValid()
1162 const float minB0 = de::clamp((vBounds0.x()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearSampleResultValid()
1163 const float maxB0 = de::clamp((vBounds0.y()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearSampleResultValid()
1252 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isLinearMipmapLinearSampleResultValid() local
[all …]
DtcuTexCompareVerifier.cpp680 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isNearestMipmapLinearCompareResultValid() local
684 …0 = lookupDepth(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), coordZ); in isNearestMipmapLinearCompareResultValid()
737 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isLinearMipmapLinearCompareResultValid() local
743 const float minB0 = de::clamp((vBounds0.x()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearCompareResultValid()
744 const float maxB0 = de::clamp((vBounds0.y()-0.5f)-float(j0), 0.0f, 1.0f); in isLinearMipmapLinearCompareResultValid()
750 const int y0 = wrap(sampler.wrapT, j0 , h0); in isLinearMipmapLinearCompareResultValid()
751 const int y1 = wrap(sampler.wrapT, j0+1, h0); in isLinearMipmapLinearCompareResultValid()
919 for (int j0 = minJ0; j0 <= maxJ0; j0++) in isSeamplessLinearMipmapLinearCompareResultValid() local
925 const float minB0 = de::clamp((vBounds0.x()-0.5f)-float(j0), 0.0f, 1.0f); in isSeamplessLinearMipmapLinearCompareResultValid()
926 const float maxB0 = de::clamp((vBounds0.y()-0.5f)-float(j0), 0.0f, 1.0f); in isSeamplessLinearMipmapLinearCompareResultValid()
[all …]
/third_party/ltp/testcases/misc/math/float/
Dfloat_bessel.c29 {FUNC_NORMAL, 30, j0, "j0", "j0_inp.ref", "j0_out.ref2",
/third_party/libwebsockets/plugins/ssh-base/crypto/
Dchacha.c103 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; in chacha_encrypt_bytes() local
110 j0 = x->input[0]; in chacha_encrypt_bytes()
134 x0 = j0; in chacha_encrypt_bytes()
160 x0 = PLUS(x0,j0); in chacha_encrypt_bytes()

1234