Home
last modified time | relevance | path

Searched refs:saturated (Results 1 – 25 of 33) sorted by relevance

12

/external/openscreen/util/
Dsaturate_cast.h129 const To saturated = saturate_cast<To>(from); in rounded_saturate_cast() local
130 if (saturated == std::numeric_limits<To>::min() || in rounded_saturate_cast()
131 saturated == std::numeric_limits<To>::max()) { in rounded_saturate_cast()
132 return saturated; in rounded_saturate_cast()
/external/libchrome/base/numerics/
Dclamped_math_impl.h89 const V saturated = CommonMaxOrMin<V>(IsValueNegative(y));
93 : saturated;
116 const V saturated = CommonMaxOrMin<V>(!IsValueNegative(y));
120 : saturated;
140 const V saturated =
144 : saturated;
225 const V saturated = as_unsigned(V(0)) - IsValueNegative(x);
228 : saturated;
DREADME.md47 ### Performing saturated (clamped) arithmetic conversions
50 is used in cases where an out-of-bounds source value should be saturated to the
144 result in a saturated value, while the next operation may then "desaturate"
172 that it returns a saturated result when the specified numeric conversion
265 has not wrapped or saturated and is not the result of an invalid
347 * **Division:** Division by zero returns the saturated limit in the direction
357 non-saturated bitwise operations.
Dsafe_conversions.h176 Dst saturated = CommonMaxOrMin<Dst, Src>(
181 : saturated;
/external/tensorflow/tensorflow/python/framework/
Dauto_control_deps.py535 saturated = False
536 while not saturated:
537 saturated = True
547 saturated = saturated and not updated
/external/igt-gpu-tools/scripts/
Dmedia-bench.pl669 my $saturated = 0;
697 $saturated = $saturated + 1
701 if ($saturated == 0) {
707 } elsif ($saturated == 1 and
/external/speex/libspeexdsp/
Dmdf.c138 int saturated; member
430 st->saturated = 0; in speex_echo_state_init_mc()
573 st->saturated = 0; in speex_echo_state_reset()
737 if (st->saturated == 0) in speex_echo_cancellation()
738 st->saturated = 1; in speex_echo_cancellation()
743 if (st->saturated == 0) in speex_echo_cancellation()
744 st->saturated = 1; in speex_echo_cancellation()
764 st->saturated = M+1; in speex_echo_cancellation()
769 st->saturated = M+1; in speex_echo_cancellation()
814 if (st->saturated == 0) in speex_echo_cancellation()
[all …]
/external/googletest/googlemock/test/
Dgmock_output_test_golden.txt63 Actual: called twice - over-saturated and active
70 Actual: called twice - over-saturated and active
99 Actual: called once - saturated and retired
253 Actual: called twice - over-saturated and active
260 Actual: called twice - over-saturated and active
/external/webrtc/modules/audio_processing/agc/legacy/
Danalog_agc.cc446 uint8_t* saturated, in WebRtcAgc_SaturationCtrl() argument
459 *saturated = 1; in WebRtcAgc_SaturationCtrl()
585 uint8_t saturated = 0; in WebRtcAgc_ProcessAnalog() local
648 WebRtcAgc_SaturationCtrl(stt, &saturated, stt->env[0]); in WebRtcAgc_ProcessAnalog()
651 if (saturated == 1) { in WebRtcAgc_ProcessAnalog()
/external/pdfium/third_party/base/numerics/
Dsafe_conversions.h186 Dst saturated = CommonMaxOrMin<Dst, Src>(
191 : saturated;
/external/sonivox/arm-wt-22k/lib_src/
DARM-E_mastergain_gnu.s5 @ with saturated gain control
/external/mesa3d/docs/relnotes/
D19.2.2.rst131 - gallivm: Fix saturated signed psub/padd intrinsics on llvm 8
D17.2.3.rst90 - intel/compiler: Don't cmod propagate into a saturated operation
D19.0.0.rst1136 - nir: Add a saturated unsigned integer add opcode
D7.10.rst1300 - i965: Recognize saturates and turn them into a saturated mov.
/external/mesa3d/src/intel/compiler/
Dbrw_vec4_visitor.cpp522 dst_reg saturated(this, glsl_type::vec4_type); in emit_pack_unorm_4x8() local
523 vec4_instruction *inst = emit(MOV(saturated, src0)); in emit_pack_unorm_4x8()
527 emit(MUL(scaled, src_reg(saturated), brw_imm_f(255.0f))); in emit_pack_unorm_4x8()
/external/llvm-project/llvm/test/Transforms/InstCombine/
Dunsigned_saturated_sub.ll4 ; Canonicalization of unsigned saturated subtraction idioms to
/external/googletest/docs/
Dgmock_for_dummies.md543 error, as the last matching expectation (#2) has been saturated. If, however,
654 should *retire* as soon as they are saturated:
Dgmock_cook_book.md1830 Note that an expectation doesn't retire automatically when it's saturated. For
1845 becomes saturated:
/external/llvm/test/CodeGen/SystemZ/
Dvec-intrinsics.ll395 ; VPKSHS, storing to %ptr if all values were saturated.
431 ; VPKSFS, storing to %ptr if any values were saturated.
467 ; VPKSGS, storing to %ptr if no elements were saturated
531 ; VPKLSHS, storing to %ptr if all values were saturated.
568 ; VPKLSFS, storing to %ptr if any values were saturated.
605 ; VPKLSGS, storing to %ptr if no elements were saturated
/external/llvm-project/llvm/test/CodeGen/SystemZ/
Dvec-intrinsics-01.ll404 ; VPKSHS, storing to %ptr if all values were saturated.
440 ; VPKSFS, storing to %ptr if any values were saturated.
476 ; VPKSGS, storing to %ptr if no elements were saturated
540 ; VPKLSHS, storing to %ptr if all values were saturated.
577 ; VPKLSFS, storing to %ptr if any values were saturated.
614 ; VPKLSGS, storing to %ptr if no elements were saturated
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dsat-add.ll4 ; There are at least 3 potential patterns corresponding to an unsigned saturated add: min, cmp with…
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dsat-add.ll4 ; There are at least 3 potential patterns corresponding to an unsigned saturated add: min, cmp with…
/external/llvm-project/llvm/test/CodeGen/X86/
Dsat-add.ll8 ; There are at least 3 potential patterns corresponding to an unsigned saturated add: min, cmp with…
/external/llvm-project/libcxx/include/
Dregex1011 // was only 8 bits wide and already saturated, so it used a wider type here

12