Home
last modified time | relevance | path

Searched refs:vmax (Results 1 - 25 of 34) sorted by relevance

12

/third_party/ffmpeg/libavcodec/arm/
H A Daudiodsp_neon.S33 1: vmax.f32 q8, q10, q0
34 vmax.f32 q9, q11, q0
57 vmax.s32 q2, q2, q0
58 vmax.s32 q3, q3, q0
H A Dhevcdsp_deblock_neon.S45 vmax.s16 q11, q11, q12
171 vmax.s16 q3, q6
175 vmax.s16 q4, q6
176 vmax.s16 q1, q6
199 vmax.s16 q4, q6
201 vmax.s16 q3, q6
203 vmax.s16 q2, q6
243 vmax.s16 q2, q2, q6
253 vmax.s16 q3, q3, q6
268 vmax
[all...]
H A Dvp9lpf_neon.S64 vmax.u8 q2, q2, q3
65 vmax.u8 q3, q4, q5
66 vmax.u8 q4, q6, q7
68 vmax.u8 q2, q2, q3
71 vmax.u8 q2, q2, q4 @ max(abs(p3 - p2), ..., abs(q2 - q3))
91 vmax.u8 q3, q3, q4 @ max(abs(p1 - p0), abs(q1 - q0))
167 vmax.u8 d4, d4, d5
168 vmax.u8 d5, d6, d7
169 vmax.u8 \tmp1, \tmp1, \tmp2
171 vmax
[all...]
H A Dsbcdsp_neon.S240 vmax.s32 q0, q0, q8
241 vmax.s32 q1, q1, q9
242 vmax.s32 q0, q0, q10
243 vmax.s32 q1, q1, q11
246 vmax.s32 q0, q0, q1
289 vmax.s32 q0, q0, q8
290 vmax.s32 q1, q1, q9
291 vmax.s32 q2, q2, q10
292 vmax.s32 q3, q3, q11
H A Dh264dsp_neon.S74 vmax.u8 q7, q7, q11
78 vmax.u8 q14, q14, q11
96 vmax.s8 q2, q2, q7
207 vmax.s8 d4, d4, d25
H A Dhevcdsp_idct_neon.S37 vmax.s16 \in1, \in1, \c1
38 vmax.s16 \in2, \in2, \c1
H A Drv40dsp_neon.S847 vmax.s16 d19, d19, d23 @ diff
863 vmax.s16 q9, q9, q14
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c82 const float (*vmax)[4]; member
310 setup->vmax = v2; in setup_sort_vertices()
316 setup->vmax = v1; in setup_sort_vertices()
322 setup->vmax = v1; in setup_sort_vertices()
330 setup->vmax = v2; in setup_sort_vertices()
336 setup->vmax = v0; in setup_sort_vertices()
342 setup->vmax = v0; in setup_sort_vertices()
349 setup->emaj.dx = setup->vmax[0][0] - setup->vmin[0][0]; in setup_sort_vertices()
350 setup->emaj.dy = setup->vmax[0][1] - setup->vmin[0][1]; in setup_sort_vertices()
351 setup->etop.dx = setup->vmax[ in setup_sort_vertices()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmpegaudioenc_template.c383 int *p, vmax, v, n, i, j, k, code; in compute_scale_factors() local
391 vmax = abs(*p); in compute_scale_factors()
395 if (v > vmax) in compute_scale_factors()
396 vmax = v; in compute_scale_factors()
399 if (vmax > 1) { in compute_scale_factors()
400 n = av_log2(vmax); in compute_scale_factors()
401 /* n is the position of the MSB of vmax. now in compute_scale_factors()
405 while (vmax <= s->scale_factor_table[index+1]) in compute_scale_factors()
415 j, i, vmax, s->scale_factor_table[index], index); in compute_scale_factors()
H A Djpegls.c56 static inline int iso_clip(int v, int vmin, int vmax) in iso_clip() argument
58 if (v > vmax || v < vmin) in iso_clip()
/third_party/skia/tools/skqp/src/
H A Dskqp_model.cpp62 vmax = (color(maxImg, point) >> component) & 0xFF; in Check() local
63 err = std::max(err, std::max((int)v - (int)vmax, (int)vmin - (int)v)); in Check()
/third_party/FreeBSD/sys/sys/
H A Dmodule.h53 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax)
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dnumbers.cc727 // vmax/base and vmin/base are precomputed because division costs at least 8ns.
920 const IntType vmax = std::numeric_limits<IntType>::max(); in safe_parse_positive_int() local
921 assert(vmax > 0); in safe_parse_positive_int()
923 assert(vmax >= static_cast<IntType>(base)); in safe_parse_positive_int()
938 *value_p = vmax; in safe_parse_positive_int()
942 if (value > vmax - digit) { in safe_parse_positive_int()
943 *value_p = vmax; in safe_parse_positive_int()
/third_party/alsa-lib/src/control/
H A Dtlv.c391 /* FIXME: precalculate and cache vmin and vmax */ in snd_tlv_convert_from_dB()
392 double vmin, vmax, v; in snd_tlv_convert_from_dB() local
395 vmax = !max ? 1.0 : pow(10.0, (double)max / 2000.0); in snd_tlv_convert_from_dB()
397 v = (v - vmin) * (rangemax - rangemin) / (vmax - vmin); in snd_tlv_convert_from_dB()
/third_party/mesa3d/src/gallium/tools/trace/
H A Dpytracediff.py82 def pkk_arg_range(vstr, vmin, vmax):
89 if value < vmin or value > vmax:
90 raise argparse.ArgumentTypeError(f"value {value} not in range {vmin}-{vmax}")
333 type=functools.partial(pkk_arg_range, vmin=16, vmax=512), default=defwidth,
/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc700 const IntType vmax = std::numeric_limits<IntType>::max(); in safe_parse_positive_int() local
701 assert(vmax > 0); in safe_parse_positive_int()
702 assert(vmax >= base); in safe_parse_positive_int()
703 const IntType vmax_over_base = vmax / base; in safe_parse_positive_int()
715 *value_p = vmax; in safe_parse_positive_int()
719 if (value > vmax - digit) { in safe_parse_positive_int()
720 *value_p = vmax; in safe_parse_positive_int()
/third_party/littlefs/scripts/
H A Dplotmpl.py143 vmin, vmax = self.axis.get_view_interval()
144 vmin, vmax = mpl.transforms.nonsingular(vmin, vmax, 1e-12, 1e-13)
151 scale = self.base ** (m.ceil(m.log((vmax-vmin) / (nbins+1), self.base)))
/third_party/astc-encoder/Source/
H A Dastcenc_vecmathlib_avx2_8.h542 vint8 vmax(r); in hmax()
543 return vmax; in hmax()
/third_party/vixl/test/aarch32/
H A Dtest-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-a32.cc59 M(vmax) \
215 #include "aarch32/traces/assembler-cond-dt-drt-drd-drn-drm-float-f32-only-vmax-a32.h"
H A Dtest-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-t32.cc59 M(vmax) \
215 #include "aarch32/traces/assembler-cond-dt-drt-drd-drn-drm-float-f32-only-vmax-t32.h"
/third_party/node/deps/v8/src/diagnostics/arm/
H A Ddisasm-arm.cc2066 Format(instr, "vmax.s'size3 'Qd, 'Qn, 'Qm"); in DecodeAdvancedSIMDDataProcessing()
2092 Format(instr, "vmax.f32 'Qd, 'Qn, 'Qm"); in DecodeAdvancedSIMDDataProcessing()
2116 Format(instr, "vmax.u'size3 'Qd, 'Qn, 'Qm"); in DecodeAdvancedSIMDDataProcessing()
/third_party/node/deps/v8/src/compiler/backend/arm/
H A Dcode-generator-arm.cc2253 __ vmax(i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2374 __ vmax(NeonS32, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2444 __ vmax(NeonU32, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2584 __ vmax(NeonS16, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2643 __ vmax(NeonU16, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2750 __ vmax(NeonS8, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2798 __ vmax(NeonU8, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
/third_party/python/Lib/
H A D_pydecimal.py3938 def _set_integer_check(self, name, value, vmin, vmax):
3942 if value > vmax:
3943 raise ValueError("%s must be in [%s, %d]. got: %s" % (name, vmin, vmax, value))
3944 elif vmax == 'inf':
3946 raise ValueError("%s must be in [%d, %s]. got: %s" % (name, vmin, vmax, value))
3948 if value < vmin or value > vmax:
3949 raise ValueError("%s must be in [%d, %d]. got %s" % (name, vmin, vmax, value))
/third_party/node/deps/v8/src/codegen/arm/
H A Dassembler-arm.h915 void vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2);
916 void vmax(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1,
/third_party/node/deps/v8/src/wasm/baseline/arm/
H A Dliftoff-assembler-arm.h2786 vmax(liftoff::GetSimd128Register(dst), liftoff::GetSimd128Register(lhs), in emit_f32x4_max()
3149 vmax(NeonS32, liftoff::GetSimd128Register(dst),
3156 vmax(NeonU32, liftoff::GetSimd128Register(dst),
3363 vmax(NeonS16, liftoff::GetSimd128Register(dst),
3370 vmax(NeonU16, liftoff::GetSimd128Register(dst),
3672 vmax(NeonS8, liftoff::GetSimd128Register(dst),
3679 vmax(NeonU8, liftoff::GetSimd128Register(dst),

Completed in 44 milliseconds

12