Home
last modified time | relevance | path

Searched refs:xl (Results 1 – 25 of 87) sorted by relevance

1234

/third_party/ffmpeg/libavcodec/
Dpictordec.c66 int xl = *x; in picmemset() local
76 d[xl] |= (value >> j) & mask; in picmemset()
77 xl += 1; in picmemset()
78 while (xl == s->width) { in picmemset()
80 xl = 0; in picmemset()
95 for (; xl < pixels_per_value; xl ++) { in picmemset()
97 d[xl] |= (value >> j) & mask; in picmemset()
99 av_memcpy_backptr(d+xl, pixels_per_value, s->width - xl); in picmemset()
101 xl = s->width; in picmemset()
108 *x = xl; in picmemset()
/third_party/openssl/crypto/x509/
Dby_dir.c57 static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type,
59 static int get_cert_by_subject_ex(X509_LOOKUP *xl, X509_LOOKUP_TYPE type,
226 static int get_cert_by_subject_ex(X509_LOOKUP *xl, X509_LOOKUP_TYPE type, in get_cert_by_subject_ex() argument
263 ctx = (BY_DIR *)xl->method_data; in get_cert_by_subject_ex()
337 if ((X509_load_cert_file_ex(xl, b->data, ent->dir_type, libctx, in get_cert_by_subject_ex()
341 if ((X509_load_crl_file(xl, b->data, ent->dir_type)) == 0) in get_cert_by_subject_ex()
351 X509_STORE_lock(xl->store_ctx); in get_cert_by_subject_ex()
352 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject_ex()
353 tmp = sk_X509_OBJECT_value(xl->store_ctx->objs, j); in get_cert_by_subject_ex()
354 X509_STORE_unlock(xl->store_ctx); in get_cert_by_subject_ex()
[all …]
/third_party/node/deps/npm/node_modules/uri-js/dist/esnext/schemes/
Dmailto.js64 for (let x = 0, xl = hfields.length; x < xl; ++x) {
69 for (let x = 0, xl = toAddrs.length; x < xl; ++x) {
89 for (let x = 0, xl = to.length; x < xl; ++x) {
112 for (let x = 0, xl = to.length; x < xl; ++x) {
/third_party/musl/src/math/
Dhypot.c13 double_t xh, xl, xc; in sq() local
17 xl = x - xh; in sq()
19 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
Dhypotl.c17 long double xh, xl, xc; in sq() local
20 xl = x - xh; in sq()
22 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
/third_party/musl/porting/liteos_a/kernel/src/math/
Dhypot.c13 double_t xh, xl, xc; in sq() local
17 xl = x - xh; in sq()
19 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
Dhypotl.c17 long double xh, xl, xc; in sq() local
20 xl = x - xh; in sq()
22 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
/third_party/optimized-routines/math/test/rtest/
Dsemi.c15 uint32 xh, xl, roundword; in test_rint() local
43 xl = in[1]; in test_rint()
48 roundword = (roundword >> 1) | ((xl & 1) << 31); in test_rint()
49 xl = (xl >> 1) | ((xh & 1) << 31); in test_rint()
53 xl++; in test_rint()
54 xh += (xl==0); in test_rint()
57 xh = (xh << 1) | ((xl >> 31) & 1); in test_rint()
58 xl = (xl & 0x7FFFFFFF) << 1; in test_rint()
61 out[1] = xl; in test_rint()
429 uint32 xh, xl; in test_frexp() local
[all …]
/third_party/node/deps/npm/node_modules/uri-js/dist/esnext/
Dutil.js4 const xl = sets.length - 1;
5 for (let x = 1; x < xl; ++x) {
8 sets[xl] = sets[xl].slice(1);
/third_party/flutter/skia/third_party/externals/sdl/src/test/
DSDL_test_random.c82 unsigned int xh, xl; in SDLTest_Random() local
86 xh = rndContext->x >> 16, xl = rndContext->x & 65535; in SDLTest_Random()
90 ((xl * rndContext->ah) >> 16); in SDLTest_Random()
91 if (xl * rndContext->al >= (~rndContext->c + 1)) in SDLTest_Random()
/third_party/musl/src/math/i386/
Dexpl.s57 # xl = x - xh
68 # fpu stack: 2^hi x hi xh xl yh
69 # lo = hi - xh*yh + xl*yh
79 # fpu stack: 2^hi x lo xh xl yl
80 # lo += xh*yl + xl*yl
/third_party/musl/src/math/x32/
Dexpl.s56 # xl = x - xh
67 # fpu stack: 2^hi x hi xh xl yh
68 # lo = hi - xh*yh + xl*yh
78 # fpu stack: 2^hi x lo xh xl yl
79 # lo += xh*yl + xl*yl
/third_party/musl/src/math/x86_64/
Dexpl.s56 # xl = x - xh
67 # fpu stack: 2^hi x hi xh xl yh
68 # lo = hi - xh*yh + xl*yh
78 # fpu stack: 2^hi x lo xh xl yl
79 # lo += xh*yl + xl*yl
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-resampler.c153 gint xl = xi + l; in get_linear_tap() local
155 a = fabs (x - xl) * params->fx; in get_linear_tap()
169 gint xl = xi + l; in get_cubic_tap() local
171 a = fabs (x - xl) * params->fx; in get_cubic_tap()
192 gint xl = xi + l; in get_sinc_tap() local
193 return sinc ((x - xl) * params->fx); in get_sinc_tap()
199 gint xl = xi + l; in get_lanczos_tap() local
200 gdouble env = envelope ((x - xl) * params->ex); in get_lanczos_tap()
201 return (sinc ((x - xl) * params->fx) - params->sharpen) * env; in get_lanczos_tap()
/third_party/flutter/glfw/examples/
Dboing.c549 GLfloat xl, xr; in DrawGrid() local
568 xl = -GRID_SIZE / 2 + col * sizeCell; in DrawGrid()
569 xr = xl + widthLine; in DrawGrid()
579 glVertex3f( xl, yt, z_offset ); /* NW */ in DrawGrid()
580 glVertex3f( xl, yb, z_offset ); /* SW */ in DrawGrid()
597 xl = -GRID_SIZE / 2; in DrawGrid()
605 glVertex3f( xl, yt, z_offset ); /* NW */ in DrawGrid()
606 glVertex3f( xl, yb, z_offset ); /* SW */ in DrawGrid()
/third_party/python/Tools/scripts/
Dmailerdaemon.py76 xl = [] variable
78 xl.append(re.compile(x, re.MULTILINE))
79 x = tuple(xl)
80 del xl
/third_party/ffmpeg/libavformat/
Drtmpcrypt.c195 uint32_t xl, xr; in rtmpe9_sig() local
197 xl = AV_RL32(in); in rtmpe9_sig()
201 av_blowfish_crypt_ecb(&ctx, &xl, &xr, 0); in rtmpe9_sig()
203 AV_WL32(out, xl); in rtmpe9_sig()
/third_party/ffmpeg/libavutil/
Dblowfish.c344 void av_blowfish_crypt_ecb(AVBlowfish *ctx, uint32_t *xl, uint32_t *xr, in av_blowfish_crypt_ecb() argument
350 Xl = *xl; in av_blowfish_crypt_ecb()
371 *xl = Xr; in av_blowfish_crypt_ecb()
/third_party/typescript/tests/baselines/reference/
Dmultivar.js35 var xl; variable
78 var xl; variable
Dvardecl.js94 var xl; variable
156 var xl; variable
244 declare var xl: any;
Dmultivar.symbols82 var xl;
83 >xl : Symbol(xl, Decl(multivar.ts, 33, 3))
Dmultivar.types89 var xl;
90 >xl : any
/third_party/ffmpeg/libavfilter/
Dvf_decimate.c93 int x, y, xl; in calc_diffs() local
116 for (xl = x; xl < m; xl++) \ in calc_diffs()
117 acc += abs(((const uint##nbits##_t *)f1p)[xl] - \ in calc_diffs()
118 ((const uint##nbits##_t *)f2p)[xl]); \ in calc_diffs()
/third_party/flutter/skia/third_party/externals/icu/source/data/rbnf/
Dee.txt72 "-x: >> xl\u1EBDyimegbee;",
79 "-x: >> xl\u1EBDyimegbee;",
/third_party/skia/third_party/externals/icu/source/data/rbnf/
Dee.txt73 "-x: >> xl\u1EBDyimegbee;",
80 "-x: >> xl\u1EBDyimegbee;",

1234