Home
last modified time | relevance | path

Searched refs:xm (Results 1 – 25 of 75) sorted by relevance

123

/third_party/libwebsockets/lib/misc/
Dieeehalfprecision.c90 uint32_t xs, xe, xm; in lws_singles2halfp() local
103 xm = x & 0x007FFFFFu; // Pick off mantissa bits in lws_singles2halfp()
111 if (!xm) { // If mantissa is zero ... in lws_singles2halfp()
140 xm |= 0x00800000u; // Add the hidden leading bit in lws_singles2halfp()
141 hm = (uint16_t) (xm >> (14 - hes)); // Mantissa in lws_singles2halfp()
142 if ((xm >> (13 - hes)) & 1u) // Check for rounding in lws_singles2halfp()
154 hm = (uint16_t)(xm >> 13); // Mantissa in lws_singles2halfp()
156 if (xm & 0x00001000u) // Check for rounding in lws_singles2halfp()
167 uint32_t xs, xe, xm; in lws_halfp2singles() local
196 xm = ((uint32_t)(hm & 0x03FFu)) << 13; // Mantissa in lws_halfp2singles()
[all …]
/third_party/ffmpeg/libavfilter/
Ddrawutils.c435 unsigned xm, x, y, t = 0; in blend_pixel16() local
443 xm = xm0; in blend_pixel16()
445 t += ((mask[xm >> xmshf] >> ((~xm & xmmod) << l2depth)) & mbits) in blend_pixel16()
447 xm++; in blend_pixel16()
459 unsigned xm, x, y, t = 0; in blend_pixel() local
466 xm = xm0; in blend_pixel()
468 t += ((mask[xm >> xmshf] >> ((~xm & xmmod) << l2depth)) & mbits) in blend_pixel()
470 xm++; in blend_pixel()
482 int xm, int left, int right, int hband) in blend_line_hv16() argument
488 left, hband, hsub + vsub, xm); in blend_line_hv16()
[all …]
Daf_axcorrelate.c102 const float xm = sumx / size, ym = sumy / size; in xcorrelate() local
106 float xd = x[i] - xm; in xcorrelate()
/third_party/boost/libs/program_options/src/
Dvariables_map.cpp23 void store(const parsed_options& options, variables_map& xm, in store() argument
34 std::map<std::string, variable_value>& m = xm; in store()
67 if (xm.m_final.count(option_name)) in store()
102 xm.m_final.insert(new_final.begin(), new_final.end()); in store()
138 if (canonical_name.length() > xm.m_required[key].length()) in store()
139 xm.m_required[key] = canonical_name; in store()
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dssim.c36 const uint64_t xmxm = (uint64_t)stats->xm * stats->xm; in SSIMCalculation()
39 const int64_t xmym = (int64_t)stats->xm * stats->ym; in SSIMCalculation()
83 stats.xm += w * s1; in SSIMGetClipped_C()
102 stats.xm += w * s1; in SSIMGet_C()
Dssim_sse2.c116 xm = _mm_add_epi16(xm, wa1); \
129 __m128i xm = zero, ym = zero; // 16b accums in SSIMGet_SSE2() local
140 stats.xm = HorizontalAdd16b_SSE2(&xm); in SSIMGet_SSE2()
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Dssim.c36 const uint64_t xmxm = (uint64_t)stats->xm * stats->xm; in SSIMCalculation()
39 const int64_t xmym = (int64_t)stats->xm * stats->ym; in SSIMCalculation()
83 stats.xm += w * s1; in SSIMGetClipped_C()
102 stats.xm += w * s1; in SSIMGet_C()
Dssim_sse2.c116 xm = _mm_add_epi16(xm, wa1); \
129 __m128i xm = zero, ym = zero; // 16b accums in SSIMGet_SSE2() local
140 stats.xm = HorizontalAdd16b_SSE2(&xm); in SSIMGet_SSE2()
/third_party/skia/third_party/externals/libwebp/extras/
Dget_disto.c102 uint32_t xm, ym; // sum(w_i * x_i), sum(w_i * y_i) member
115 const uint64_t xmxm = (uint64_t)stats->xm * stats->xm; in SSIMCalculation()
118 const int64_t xmym = (int64_t)stats->xm * stats->ym; in SSIMCalculation()
152 stats.xm += w * s1; in SSIMGetClipped()
/third_party/flutter/skia/third_party/externals/libwebp/extras/
Dget_disto.c102 uint32_t xm, ym; // sum(w_i * x_i), sum(w_i * y_i) member
115 const uint64_t xmxm = (uint64_t)stats->xm * stats->xm; in SSIMCalculation()
118 const int64_t xmym = (int64_t)stats->xm * stats->ym; in SSIMCalculation()
152 stats.xm += w * s1; in SSIMGetClipped()
/third_party/mindspore/tests/st/fl/albert/src/
Dassessment_method.py109 xm = self.logits_array - x_mean
111 norm_xm = np.linalg.norm(xm)
113 return np.dot(xm / norm_xm, ym / norm_ym) * 100.0
/third_party/ffmpeg/libavcodec/x86/
Dmdct15.asm58 mulps xm%3, xm1, xm5
65 subps xm%3, xm4 ; t[4].re, t[4].im, t[5].re, t[5].im
67 movhlps xm2, xm%3, xm3 ; t[2].re, t[2].im, t[5].re, t[5].im
68 movlhps xm3, xm%3 ; t[0].re, t[0].im, t[4].re, t[4].im
71 addps xm%3, xm2, xm3
/third_party/mbedtls/library/
Decjpake.c678 mbedtls_mpi xm; /* C: xc, S: xs */ in mbedtls_ecjpake_write_round_two() local
690 mbedtls_mpi_init( &xm ); in mbedtls_ecjpake_write_round_two()
701 MBEDTLS_MPI_CHK( ecjpake_mul_secret( &xm, 1, &ctx->xm2, &ctx->s, in mbedtls_ecjpake_write_round_two()
703 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( &ctx->grp, &Xm, &xm, &G, f_rng, p_rng ) ); in mbedtls_ecjpake_write_round_two()
736 &G, &xm, &Xm, ID_MINE, in mbedtls_ecjpake_write_round_two()
744 mbedtls_mpi_free( &xm ); in mbedtls_ecjpake_write_round_two()
/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client/
Dmosq-server.crt9 24aVIGwkvfsMD33Hb/D1WW+r8UFnq4CutigwXArXUxoFX6fa0rwEEjuxwG3f7+xm
/third_party/ffmpeg/tests/fate/
Dvideo.mak1 FATE_4XM += fate-4xm-1
2 fate-4xm-1: CMD = framecrc -i $(TARGET_SAMPLES)/4xm/version1.4xm -pix_fmt rgb24 -an -vf scale
4 FATE_4XM += fate-4xm-2
5 fate-4xm-2: CMD = framecrc -i $(TARGET_SAMPLES)/4xm/version2.4xm -pix_fmt rgb24 -an -vf scale
8 fate-4xm: $(FATE_4XM)
Dadpcm.mak1 FATE_ADPCM-$(call DEMDEC, FOURXM, ADPCM_4XM) += fate-adpcm-4xm
2 fate-adpcm-4xm: CMD = framecrc -i $(TARGET_SAMPLES)/4xm/dracula.4xm -vn -map 0:6 -af aresample
/third_party/node/deps/npm/node_modules/semver/
Dsemver.js1094 var xm = xM || isX(m)
1095 var xp = xm || isX(p)
1113 if (xm) {
1123 if (xm) {
1135 if (xm) {
1143 } else if (xm) {
/third_party/boost/boost/program_options/
Dvariables_map.hpp173 variables_map& xm,
/third_party/boost/libs/hana/include/boost/hana/functional/
Darg.hpp56 constexpr auto arg = [](auto&& x1, ..., auto&& xm) -> decltype(auto) {
/third_party/boost/boost/hana/functional/
Darg.hpp56 constexpr auto arg = [](auto&& x1, ..., auto&& xm) -> decltype(auto) {
/third_party/boost/boost/math/distributions/
Dpareto.hpp438 RealType xm = dist.scale(); in entropy() local
440 return log(xm/alpha) + 1 + 1/alpha; in entropy()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
DvktRayQueryBuiltinTests.cpp787 const float xm = (x0 + x1) / 2.0f; in initVertexBuffer() local
791 vertices.push_back(tcu::Vec4(xm, y1, z, w)); in initVertexBuffer()
846 const float xm = (x0 + x1) / 2.0f; in initVertexBuffer() local
850 vertices.push_back(tcu::Vec4(xm, y1, z, w)); in initVertexBuffer()
1974 const float xm = (x0 + x1) / 2.0f; in initAccelerationStructures() local
1978 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initAccelerationStructures()
2133 const float xm = (x0 + x1) / 2.0f; in initAccelerationStructures() local
2137 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initAccelerationStructures()
2731 const float xm = (x0 + x1) / 2.0f; in initAccelerationStructures() local
2735 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initAccelerationStructures()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingBuiltinTests.cpp1303 const float xm = (x0 + x1) / 2.0f; in initBottomAccelerationStructure() local
1307 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
1354 const float xm = (x0 + x1) / 2.0f; in initBottomAccelerationStructure() local
1361 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
1366 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
1411 const float xm = (x0 + x1) / 2.0f; in initBottomAccelerationStructure() local
1418 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
1423 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
1475 const float xm = (x0 + x1) / 2.0f; in initBottomAccelerationStructure() local
1479 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
DvktRayTracingBuildTests.cpp325 const float xm = (x0 + x1) / 2.0f; in initBottomAccelerationStructure() local
329 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
336 geometryData.push_back(tcu::Vec3(xm, y1, z)); in initBottomAccelerationStructure()
/third_party/glib/gio/tests/desktop-files/usr/applications/
Dtotem.desktop36 …-tta;audio/x-wav;audio/x-wavpack;audio/x-vorbis;audio/x-vorbis+ogg;audio/x-xm;image/vnd.rn-realpix…

123