Home
last modified time | relevance | path

Searched refs:minv (Results 1 – 23 of 23) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32/
Dexp_fp32.h52 static MS_FLOAT32X4 minv = {-88.0f, -88.0f, -88.0f, -88.0f}; in simd_exp() local
53 input = MS_MAXQ_F32(minv, MS_MINQ_F32(input, maxv)); in simd_exp()
61 static MS_FLOAT32X8 minv = {-88.0f, -88.0f, -88.0f, -88.0f, -88.0f, -88.0f, -88.0f, -88.0f}; in simd_exp_avx() local
69 input = MS_MAX256_F32(minv, MS_MIN256_F32(input, maxv)); in simd_exp_avx()
/third_party/boost/libs/move/test/
Dcopy_elision_test.cpp77 volatile unsigned const minv(min), maxv(max); \
81 BOOST_TEST(n >= minv); \
82 if (n < minv) \
91 if (n > minv) \
/third_party/ffmpeg/tests/api/
Dapi-threadmessage-test.c159 static int get_workload(int minv, int maxv) in get_workload() argument
161 return maxv == minv ? maxv : rand() % (maxv - minv) + minv; in get_workload()
/third_party/openh264/codec/processing/src/common/
Dutil.h83 #define WELS_CLAMP(x, minv, maxv) WELS_MIN(WELS_MAX(x, minv), maxv) argument
/third_party/boost/libs/multiprecision/test/
Dtest_numeric_limits.cpp76 Number minv, maxv; in test_specific() local
77 minv = (std::numeric_limits<Number>::min)(); in test_specific()
79 BOOST_CHECK((boost::math::isnormal)(minv)); in test_specific()
81 BOOST_CHECK((boost::math::isnormal)(log(minv))); in test_specific()
83 BOOST_CHECK((boost::math::isnormal)(sqrt(minv))); in test_specific()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp16/
Dexp_fp16.c24 static float16x8_t minv = {-88.0f, -88.0f, -88.0f, -88.0f, -88.0f, -88.0f, -88.0f, -88.0f}; in simd_exp_fp16() local
25 input = vmaxq_f16(minv, vminq_f16(input, maxv)); in simd_exp_fp16()
/third_party/flutter/skia/third_party/externals/sdl/src/render/opengles/
DSDL_render_gles.c934 GLfloat minu, maxu, minv, maxv; in GLES_RenderCopy() local
963 minv = (GLfloat) srcrect->y / texture->h; in GLES_RenderCopy()
964 minv *= texturedata->texh; in GLES_RenderCopy()
978 texCoords[1] = minv; in GLES_RenderCopy()
980 texCoords[3] = minv; in GLES_RenderCopy()
1004 GLfloat minu, maxu, minv, maxv; in GLES_RenderCopyEx() local
1054 minv = (GLfloat) srcrect->y / texture->h; in GLES_RenderCopyEx()
1055 minv *= texturedata->texh; in GLES_RenderCopyEx()
1069 texCoords[1] = minv; in GLES_RenderCopyEx()
1071 texCoords[3] = minv; in GLES_RenderCopyEx()
/third_party/ffmpeg/libavcodec/
Dtexturedspenc.c254 int muv, minv, maxv; in optimize_colors() local
256 muv = minv = maxv = bp[0]; in optimize_colors()
260 if (bp[x] < minv) in optimize_colors()
261 minv = bp[x * 4 + y * stride]; in optimize_colors()
268 min[ch] = minv; in optimize_colors()
/third_party/flutter/skia/third_party/externals/sdl/src/render/opengl/
DSDL_render_gl.c1310 GLfloat minu, maxu, minv, maxv; in GL_RenderCopy() local
1327 minv = (GLfloat) srcrect->y / texture->h; in GL_RenderCopy()
1328 minv *= texturedata->texh; in GL_RenderCopy()
1333 data->glTexCoord2f(minu, minv); in GL_RenderCopy()
1335 data->glTexCoord2f(maxu, minv); in GL_RenderCopy()
1357 GLfloat minu, maxu, minv, maxv; in GL_RenderCopyEx() local
1390 minv = (GLfloat) srcrect->y / texture->h; in GL_RenderCopyEx()
1391 minv *= texturedata->texh; in GL_RenderCopyEx()
1401 data->glTexCoord2f(minu, minv); in GL_RenderCopyEx()
1403 data->glTexCoord2f(maxu, minv); in GL_RenderCopyEx()
/third_party/ffmpeg/libavfilter/
Dvf_signalstats.c563 int miny = -1, minu = -1, minv = -1; in filter_frame8() local
670 if (minv < 0 && histv[fil]) minv = fil; in filter_frame8()
732 SET_META("VMIN", "%d", minv); in filter_frame8()
785 int miny = -1, minu = -1, minv = -1; in filter_frame16() local
892 if (minv < 0 && histv[fil]) minv = fil; in filter_frame16()
949 SET_META("VMIN", "%d", minv); in filter_frame16()
/third_party/flutter/skia/third_party/externals/sdl/src/render/direct3d11/
DSDL_render_d3d11.c2645 float minu, maxu, minv, maxv; in D3D11_RenderCopy() local
2655 minv = (float) srcrect->y / texture->h; in D3D11_RenderCopy()
2675 vertices[0].tex.y = minv; in D3D11_RenderCopy()
2689 vertices[2].tex.y = minv; in D3D11_RenderCopy()
2737 float minu, maxu, minv, maxv; in D3D11_RenderCopyEx() local
2749 minv = (float) srcrect->y / texture->h; in D3D11_RenderCopyEx()
2772 maxv = minv; in D3D11_RenderCopyEx()
2773 minv = tmp; in D3D11_RenderCopyEx()
2791 vertices[0].tex.y = minv; in D3D11_RenderCopyEx()
2805 vertices[2].tex.y = minv; in D3D11_RenderCopyEx()
/third_party/boost/boost/math/special_functions/detail/
Dibeta_inverse.hpp574 T minv = (std::min)(a, b); in ibeta_inv_imp() local
576 if((sqrt(minv) > (maxv - minv)) && (minv > 5)) in ibeta_inv_imp()
593 T lambda = minv / r; in ibeta_inv_imp()
/third_party/flutter/skia/third_party/externals/sdl/src/render/direct3d/
DSDL_render_d3d.c1598 float minu, maxu, minv, maxv; in D3D_RenderCopy() local
1620 minv = (float) srcrect->y / texture->h; in D3D_RenderCopy()
1630 vertices[0].v = minv; in D3D_RenderCopy()
1637 vertices[1].v = minv; in D3D_RenderCopy()
1706 float minu, maxu, minv, maxv; in D3D_RenderCopyEx() local
1746 minv = (float) srcrect->y / texture->h; in D3D_RenderCopyEx()
1756 vertices[0].v = minv; in D3D_RenderCopyEx()
1763 vertices[1].v = minv; in D3D_RenderCopyEx()
/third_party/icu/icu4c/source/tools/tzcode/
Dtz2icu.cpp241 int64_t readcoded(ifstream& file, int64_t minv=numeric_limits<int64_t>::min(), in readcoded() argument
249 if (val < minv || val > maxv) { in readcoded()
252 << minv << ", " << maxv << "]"; in readcoded()
259 int64_t readcoded64(ifstream& file, int64_t minv=numeric_limits<int64_t>::min(), in readcoded64() argument
267 if (val < minv || val > maxv) { in readcoded64()
270 << minv << ", " << maxv << "]"; in readcoded64()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dtz2icu.cpp241 int64_t readcoded(ifstream& file, int64_t minv=numeric_limits<int64_t>::min(), in readcoded() argument
249 if (val < minv || val > maxv) { in readcoded()
252 << minv << ", " << maxv << "]"; in readcoded()
259 int64_t readcoded64(ifstream& file, int64_t minv=numeric_limits<int64_t>::min(), in readcoded64() argument
267 if (val < minv || val > maxv) { in readcoded64()
270 << minv << ", " << maxv << "]"; in readcoded64()
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/
Dtz2icu.cpp241 int64_t readcoded(ifstream& file, int64_t minv=numeric_limits<int64_t>::min(), in readcoded() argument
249 if (val < minv || val > maxv) { in readcoded()
252 << minv << ", " << maxv << "]"; in readcoded()
259 int64_t readcoded64(ifstream& file, int64_t minv=numeric_limits<int64_t>::min(), in readcoded64() argument
267 if (val < minv || val > maxv) { in readcoded64()
270 << minv << ", " << maxv << "]"; in readcoded64()
/third_party/pulseaudio/src/modules/raop/
Draop-client.c1788 double minv, maxv; in pa_raop_client_adjust_volume() local
1796 minv = maxv * pow(10.0, VOLUME_DEF / 60.0); in pa_raop_client_adjust_volume()
1799 return volume - volume * (minv / maxv) + minv; in pa_raop_client_adjust_volume()
/third_party/flutter/skia/third_party/externals/angle2/src/image_util/
Dloadimage_etc.cpp995 int minv = 255; in selectEndPointPCA() local
1007 minv = std::min<int>(minv, (&pixel.R)[ch]); in selectEndPointPCA()
1014 min[ch] = minv; in selectEndPointPCA()
/third_party/skia/third_party/externals/angle2/src/image_util/
Dloadimage_etc.cpp995 int minv = 255; in selectEndPointPCA() local
1007 minv = std::min<int>(minv, (&pixel.R)[ch]); in selectEndPointPCA()
1014 min[ch] = minv; in selectEndPointPCA()
/third_party/flatbuffers/src/
Didl_gen_rust.cpp640 const EnumVal *minv = enum_def.MinValue(); in GenEnum() local
642 FLATBUFFERS_ASSERT(minv && maxv); in GenEnum()
643 code_.SetValue("ENUM_MIN_BASE_VALUE", enum_def.ToString(*minv)); in GenEnum()
Didl_gen_cpp.cpp1140 const EnumVal *minv = enum_def.MinValue(); in GenEnum() local
1144 FLATBUFFERS_ASSERT(minv && maxv); in GenEnum()
1159 code_.SetValue("VALUE", GenEnumValDecl(enum_def, Name(*minv))); in GenEnum()
/third_party/boost/libs/math/doc/graphs/hypergeometric_1f1/
Dplotlyjs-bundle.js1minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/
DIntrinsicImpl.inc1586 "llvm.arm.mve.minv.s",
1587 "llvm.arm.mve.minv.u",
11719 1, // llvm.arm.mve.minv.s
11720 1, // llvm.arm.mve.minv.u