Home
last modified time | relevance | path

Searched refs:vmin (Results 1 - 25 of 35) sorted by relevance

12

/third_party/ffmpeg/libavcodec/arm/
H A Daudiodsp_neon.S30 vmin.f32 q10, q2, q1
32 vmin.f32 q11, q3, q1
38 vmin.f32 q10, q2, q1
40 vmin.f32 q11, q3, q1
55 vmin.s32 q2, q2, q1
56 vmin.s32 q3, q3, q1
H A Dhevcdsp_deblock_neon.S44 vmin.s16 q11, q11, q0
174 vmin.s16 q3, q7
178 vmin.s16 q4, q7
179 vmin.s16 q1, q7
202 vmin.s16 q4, q7
204 vmin.s16 q3, q7
206 vmin.s16 q2, q7
244 vmin.s16 q2, q2, q7
255 vmin.s16 q3, q3, q7
270 vmin
[all...]
H A Dvp9itxfm_16bpp_neon.S437 vmin.u16 q0, q0, q15
442 vmin.u16 q1, q1, q15
564 vmin.u16 q2, q2, q15
566 vmin.u16 q3, q3, q15
666 vmin.u16 q2, q2, q4
667 vmin.u16 q3, q3, q4
821 vmin.u16 q0, q0, q15
822 vmin.u16 q1, q1, q15
826 vmin.u16 q2, q2, q15
827 vmin
[all...]
H A Dh264dsp_neon.S71 vmin.u8 q7, q7, q10
76 vmin.u8 q14, q2, q14
94 vmin.s8 q2, q2, q6
204 vmin.s8 d4, d4, d24
H A Dhevcdsp_idct_neon.S39 vmin.s16 \in1, \in1, \c2
40 vmin.s16 \in2, \in2, \c2
H A Dac3dsp_neon.S54 vmin.u8 q0, q0, q1
H A Drv40dsp_neon.S843 vmin.s16 d19, d19, d25
861 vmin.s16 q9, q9, q13
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c84 const float (*vmin)[4]; member
308 setup->vmin = v0; in setup_sort_vertices()
314 setup->vmin = v2; in setup_sort_vertices()
320 setup->vmin = v0; in setup_sort_vertices()
328 setup->vmin = v1; in setup_sort_vertices()
334 setup->vmin = v2; in setup_sort_vertices()
340 setup->vmin = v1; in setup_sort_vertices()
347 setup->ebot.dx = setup->vmid[0][0] - setup->vmin[0][0]; in setup_sort_vertices()
348 setup->ebot.dy = setup->vmid[0][1] - setup->vmin[0][1]; in setup_sort_vertices()
349 setup->emaj.dx = setup->vmax[0][0] - setup->vmin[ in setup_sort_vertices()
[all...]
/third_party/ffmpeg/libavcodec/
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()
59 return vmin; in iso_clip()
/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.
956 const IntType vmin = std::numeric_limits<IntType>::min(); in safe_parse_negative_int() local
957 assert(vmin < 0); in safe_parse_negative_int()
958 assert(vmin <= 0 - base); in safe_parse_negative_int()
964 // Although (vmin/base)*base + vmin%base is always vmin. in safe_parse_negative_int()
967 if (vmin % base > 0) { in safe_parse_negative_int()
981 *value_p = vmin; in safe_parse_negative_int()
985 if (value < vmin in safe_parse_negative_int()
[all...]
/third_party/toybox/toys/pending/
H A Dgetty.c179 int vmin; in sense_baud() local
184 vmin = TT.termios.c_cc[VMIN]; // Store old in sense_baud()
198 TT.termios.c_cc[VMIN] = vmin; //restore old value in sense_baud()
/third_party/skia/tools/skqp/src/
H A Dskqp_model.cpp61 vmin = (color(minImg, 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/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
393 vmin = (min <= SND_CTL_TLV_DB_GAIN_MUTE) ? 0.0 : in snd_tlv_convert_from_dB()
397 v = (v - vmin) * (rangemax - rangemin) / (vmax - vmin); in snd_tlv_convert_from_dB()
/third_party/FreeBSD/sys/sys/
H A Dmodule.h53 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax)
/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.cc734 const IntType vmin = std::numeric_limits<IntType>::min(); in safe_parse_negative_int() local
735 assert(vmin < 0); in safe_parse_negative_int()
736 assert(vmin <= 0 - base); in safe_parse_negative_int()
737 IntType vmin_over_base = vmin / base; in safe_parse_negative_int()
740 // Although (vmin/base)*base + vmin%base is always vmin. in safe_parse_negative_int()
742 if (vmin % base > 0) { in safe_parse_negative_int()
756 *value_p = vmin; in safe_parse_negative_int()
760 if (value < vmin in safe_parse_negative_int()
[all...]
/third_party/node/deps/npm/node_modules/color-convert/
H A Dconversions.js340 const vmin = Math.max(v, 0.01);
345 const lmin = (2 - s) * vmin;
346 sl = s * vmin;
/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/node/deps/v8/src/diagnostics/arm/
H A Ddisasm-arm.cc2064 Format(instr, "vmin.s'size3 'Qd, 'Qn, 'Qm"); in DecodeAdvancedSIMDDataProcessing()
2094 Format(instr, "vmin.f32 'Qd, 'Qn, 'Qm"); in DecodeAdvancedSIMDDataProcessing()
2114 Format(instr, "vmin.u'size3 'Qd, 'Qn, 'Qm"); in DecodeAdvancedSIMDDataProcessing()
/third_party/astc-encoder/Source/
H A Dastcenc_vecmathlib_avx2_8.h527 vint8 vmin(r); in hmin()
528 return vmin; in hmin()
/third_party/vixl/test/aarch32/
H A Dtest-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-a32.cc60 M(vmin) \
216 #include "aarch32/traces/assembler-cond-dt-drt-drd-drn-drm-float-f32-only-vmin-a32.h"
H A Dtest-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-t32.cc60 M(vmin) \
216 #include "aarch32/traces/assembler-cond-dt-drt-drd-drn-drm-float-f32-only-vmin-t32.h"
/third_party/node/deps/v8/src/compiler/backend/arm/
H A Dcode-generator-arm.cc2248 __ vmin(i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2369 __ vmin(NeonS32, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2439 __ vmin(NeonU32, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2579 __ vmin(NeonS16, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2638 __ vmin(NeonU16, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2745 __ vmin(NeonS8, i.OutputSimd128Register(), i.InputSimd128Register(0), in AssembleArchInstruction()
2793 __ vmin(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):
3941 if vmin == '-inf':
3943 raise ValueError("%s must be in [%s, %d]. got: %s" % (name, vmin, vmax, value))
3945 if value < vmin:
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.h912 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2);
913 void vmin(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1,

Completed in 35 milliseconds

12