Home
last modified time | relevance | path

Searched refs:x_sign (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/cl/
Ddepthwise_conv2d.cl111 int x_sign = x_c < 0 ? -1 : 1;
116 … FLT4 src_p00_c0 = READ_IMAGE(src_data, smp_zero, (int2)(Z * x_sign + x_c * src_size.z, y_c));
118 …READ_IMAGE(src_data, smp_zero, (int2)((Z + 1) * x_sign + x_c * src_size.z, y_c + batch * src_size.…
211 int x_sign = x_c < 0 ? -1 : 1;
214 …FLT4 src_p00_c0 = READ_IMAGE(src_data, smp_zero, (int2)(Z * x_sign + x_c * src_size.z, y_c + batch…
275 int x_sign = x_c < 0 ? -1 : 1;
279 … FLT4 src_p00_c0 = READ_IMAGE(src_data, smp_zero, (int2)(Z * x_sign + x_c * src_size.z, y_c));
281 …READ_IMAGE(src_data, smp_zero, (int2)((Z + 1) * x_sign + x_c * src_size.z, y_c + batch * src_size.…
338 int x_sign = x_c < 0 ? -1 : 1;
340 …FLT4 src_p00_c0 = READ_IMAGE(src_data, smp_zero, (int2)(Z * x_sign + x_c * src_size.z, y_c + batch…
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/util/
Dview-cairo.cc39 int x_sign = font_opts->font_size_x < 0 ? -1 : +1; in render() local
62 w = MAX (w, x_sign * x_advance); in render()
88 x_sign < 0 ? w : 0, in render()
/third_party/harfbuzz/util/
Dview-cairo.cc39 int x_sign = font_opts->font_size_x < 0 ? -1 : +1; in render() local
70 w = MAX (w, x_sign * x_advance); in render()
95 x_sign < 0 ? w : 0, in render()
/third_party/skia/third_party/externals/harfbuzz/util/
Dview-cairo.hh101 int x_sign = font_opts->font_size_x < 0 ? -1 : +1; in render() local
132 w = MAX (w, x_sign * x_advance); in render()
159 x_sign < 0 ? w : 0, in render()
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_int64.c691 nir_ssa_def *x_sign = NULL; in lower_2f() local
694 x_sign = nir_bcsel(b, COND_LOWER_CMP(b, ilt, x, nir_imm_int64(b, 0)), in lower_2f()
749 res = nir_fmul(b, res, x_sign); in lower_2f()
758 nir_ssa_def *x_sign = NULL; in lower_f2() local
761 x_sign = nir_fsign(b, x); in lower_f2()
779 res = nir_bcsel(b, nir_flt(b, x_sign, nir_imm_floatN_t(b, 0, x->bit_size)), in lower_f2()
/third_party/python/Modules/_decimal/libmpdec/
Dmpdecimal.c3050 int x_sign, n_sign; in mpd_qscaleb() local
3083 x_sign = (a->exp < 0) ? 1 : 0; in mpd_qscaleb()
3086 if (x_sign == n_sign) { in mpd_qscaleb()
3091 x_sign = (x >= n) ? x_sign : n_sign; in mpd_qscaleb()
3094 if (!x_sign && x > MPD_EXP_INF) x = MPD_EXP_INF; in mpd_qscaleb()
3095 if (x_sign && x > -MPD_EXP_CLAMP) x = -MPD_EXP_CLAMP; in mpd_qscaleb()
3096 exp = x_sign ? -((mpd_ssize_t)x) : (mpd_ssize_t)x; in mpd_qscaleb()