/third_party/ffmpeg/libavcodec/arm/ |
H A D | audiodsp_neon.S | 33 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 D | hevcdsp_deblock_neon.S | 45 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 D | vp9lpf_neon.S | 64 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 D | sbcdsp_neon.S | 240 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 D | h264dsp_neon.S | 74 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 D | hevcdsp_idct_neon.S | 37 vmax.s16 \in1, \in1, \c1 38 vmax.s16 \in2, \in2, \c1
|
H A D | rv40dsp_neon.S | 847 vmax.s16 d19, d19, d23 @ diff 863 vmax.s16 q9, q9, q14
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_setup.c | 82 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 D | mpegaudioenc_template.c | 383 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 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()
|
/third_party/skia/tools/skqp/src/ |
H A D | skqp_model.cpp | 62 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 D | module.h | 53 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax)
|
/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. 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 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 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 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 | 700 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 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/astc-encoder/Source/ |
H A D | astcenc_vecmathlib_avx2_8.h | 542 vint8 vmax(r); in hmax() 543 return vmax; in hmax()
|
/third_party/vixl/test/aarch32/ |
H A D | test-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-a32.cc | 59 M(vmax) \ 215 #include "aarch32/traces/assembler-cond-dt-drt-drd-drn-drm-float-f32-only-vmax-a32.h"
|
H A D | test-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-t32.cc | 59 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 D | disasm-arm.cc | 2066 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 D | code-generator-arm.cc | 2253 __ 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.py | 3938 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 D | assembler-arm.h | 915 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 D | liftoff-assembler-arm.h | 2786 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),
|