/third_party/ffmpeg/libavcodec/arm/ |
H A D | audiodsp_neon.S | 30 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 D | hevcdsp_deblock_neon.S | 44 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 D | vp9itxfm_16bpp_neon.S | 437 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 D | h264dsp_neon.S | 71 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 D | hevcdsp_idct_neon.S | 39 vmin.s16 \in1, \in1, \c2 40 vmin.s16 \in2, \in2, \c2
|
H A D | ac3dsp_neon.S | 54 vmin.u8 q0, q0, q1
|
H A D | rv40dsp_neon.S | 843 vmin.s16 d19, d19, d25 861 vmin.s16 q9, q9, q13
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_setup.c | 84 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 D | jpegls.c | 56 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 D | numbers.cc | 727 // 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 D | getty.c | 179 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 D | skqp_model.cpp | 61 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 D | tlv.c | 391 /* 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 D | module.h | 53 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax)
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | pytracediff.py | 82 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 D | strutil.cc | 734 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 D | conversions.js | 340 const vmin = Math.max(v, 0.01); 345 const lmin = (2 - s) * vmin; 346 sl = s * vmin;
|
/third_party/littlefs/scripts/ |
H A D | plotmpl.py | 143 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 D | disasm-arm.cc | 2064 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 D | astcenc_vecmathlib_avx2_8.h | 527 vint8 vmin(r); in hmin() 528 return vmin; in hmin()
|
/third_party/vixl/test/aarch32/ |
H A D | test-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-a32.cc | 60 M(vmin) \ 216 #include "aarch32/traces/assembler-cond-dt-drt-drd-drn-drm-float-f32-only-vmin-a32.h"
|
H A D | test-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-t32.cc | 60 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 D | code-generator-arm.cc | 2248 __ 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.py | 3938 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 D | assembler-arm.h | 912 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); 913 void vmin(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1,
|