Home
last modified time | relevance | path

Searched refs:amax (Results 1 - 15 of 15) sorted by relevance

/third_party/ffmpeg/libavutil/x86/
H A Dintmath.h108 static av_always_inline av_const double av_clipd_sse2(double a, double amin, double amax) in av_clipd_sse2() argument
111 if (amin > amax) abort(); in av_clipd_sse2()
115 : "+&x"(a) : "xm"(amin), "xm"(amax)); in av_clipd_sse2()
124 static av_always_inline av_const float av_clipf_sse(float a, float amin, float amax) in av_clipf_sse() argument
127 if (amin > amax) abort(); in av_clipf_sse()
131 : "+&x"(a) : "xm"(amin), "xm"(amax)); in av_clipf_sse()
141 static av_always_inline av_const double av_clipd_avx(double a, double amin, double amax) in av_clipd_avx() argument
144 if (amin > amax) abort(); in av_clipd_avx()
148 : "+&x"(a) : "xm"(amin), "xm"(amax)); in av_clipd_avx()
154 static av_always_inline av_const float av_clipf_avx(float a, float amin, float amax) in av_clipf_avx() argument
[all...]
/third_party/ffmpeg/libavutil/
H A Dcommon.h167 * Clip a signed integer value into the amin-amax range.
170 * @param amax maximum value of the clip range
173 static av_always_inline av_const int av_clip_c(int a, int amin, int amax) in av_clip_c() argument
176 if (amin > amax) abort(); in av_clip_c()
179 else if (a > amax) return amax; in av_clip_c()
184 * Clip a signed 64bit integer value into the amin-amax range.
187 * @param amax maximum value of the clip range
190 static av_always_inline av_const int64_t av_clip64_c(int64_t a, int64_t amin, int64_t amax) in av_clip64_c() argument
193 if (amin > amax) abor in av_clip64_c()
388 av_clipf_c(float a, float amin, float amax) av_clipf_c() argument
405 av_clipd_c(double a, double amin, double amax) av_clipd_c() argument
[all...]
H A Dinternal.h221 * Clip and convert a double value into the long long amin-amax range.
231 * @param amax maximum value of the clip range
234 static av_always_inline av_const int64_t ff_rint64_clip(double a, int64_t amin, int64_t amax) in ff_rint64_clip() argument
238 if (amin > amax) abort(); in ff_rint64_clip()
243 return amax; in ff_rint64_clip()
249 if (res > amax) in ff_rint64_clip()
250 return amax; in ff_rint64_clip()
/third_party/pulseaudio/src/pulsecore/ffmpeg/
H A Davcodec.h52 static inline int av_clip(int a, int amin, int amax) in av_clip() argument
55 else if (a > amax) return amax; in av_clip()
/third_party/alsa-utils/topology/nhlt/intel/dmic/
H A Ddmic-process.c92 int64_t amax = (vec[0] > 0) ? vec[0] : -vec[0]; in find_max_abs_int32() local
95 amax = (vec[i] > amax) ? vec[i] : amax; in find_max_abs_int32()
96 amax = (-vec[i] > amax) ? -vec[i] : amax; in find_max_abs_int32()
99 return SATP_INT32(amax); /* Amax is always a positive value */ in find_max_abs_int32()
357 int32_t amax; in fir_coef_scale() local
367 amax in fir_coef_scale()
[all...]
/third_party/mesa3d/src/gallium/frontends/clover/api/
H A Dmemory.cpp251 const size_t amax = dev.max_image_array_number(); in clCreateImageWithProperties()
253 desc->image_array_size > amax); in clCreateImageWithProperties()
287 const size_t amax = dev.max_image_array_number(); in clCreateImageWithProperties()
290 desc->image_array_size > amax); in clCreateImageWithProperties()
/third_party/ffmpeg/libavformat/
H A Dtedcaptionsdec.c50 #define BETWEEN(a, amin, amax) ((unsigned)((a) - (amin)) <= (amax) - (amin))
/third_party/ffmpeg/libavfilter/
H A Dvf_estdif.c249 #define INTERPOLATE(type, atype, amax, ss) \
274 atype dmin = amax; \
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngstest.c2647 png_byte in_use[256], amax = 0, bmax = 0; in compare_two_images() local
2674 if (aval > amax) in compare_two_images()
2675 amax = aval; in compare_two_images()
2756 if (amax >= a->image.colormap_entries) in compare_two_images()
2759 sprintf(pindex, "%d[%u]", amax, in compare_two_images()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Damd_ext_to_khr.cpp542 // %amax = OpExtInst %float %n_1 FMax %az %amax_x_y
543 // %cubema = OpFMul %float %float_2 %amax
628 Instruction* amax = ir_builder.AddNaryExtendedInstruction( in ReplaceCubeFaceCoord() local
632 f2_const_id, amax->result_id()); in ReplaceCubeFaceCoord()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Damd_ext_to_khr.cpp542 // %amax = OpExtInst %float %n_1 FMax %az %amax_x_y
543 // %cubema = OpFMul %float %float_2 %amax
628 Instruction* amax = ir_builder.AddNaryExtendedInstruction( in ReplaceCubeFaceCoord() local
632 f2_const_id, amax->result_id()); in ReplaceCubeFaceCoord()
/third_party/spirv-tools/source/opt/
H A Damd_ext_to_khr.cpp548 // %amax = OpExtInst %float %n_1 FMax %az %amax_x_y
549 // %cubema = OpFMul %float %float_2 %amax
634 Instruction* amax = ir_builder.AddNaryExtendedInstruction( in ReplaceCubeFaceCoord() local
638 f2_const_id, amax->result_id()); in ReplaceCubeFaceCoord()
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dquant_enc.c344 const double amax = 0.85; in QualityToJPEGCompression() local
347 const double slope = (exp_min - exp_max) / (amax - amin); in QualityToJPEGCompression()
349 // in the [amin, amax] range. in QualityToJPEGCompression()
350 const double expn = (alpha > amax) ? exp_min in QualityToJPEGCompression()
/third_party/icu/icu4c/source/tools/tzcode/
H A Dzic.c455 int amax = INT_MAX < SIZE_MAX ? INT_MAX : SIZE_MAX; in growalloc() local
456 if ((amax - 1) / 3 * 2 < *nitems_alloc) in growalloc()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dzic.c454 int amax = INT_MAX < SIZE_MAX ? INT_MAX : SIZE_MAX; in growalloc() local
455 if ((amax - 1) / 3 * 2 < *nitems_alloc) in growalloc()

Completed in 24 milliseconds