Searched refs:saturated (Results 1 – 25 of 36) sorted by relevance
12
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/ |
D | clamped_math_impl.h | 95 const V saturated = CommonMaxOrMin<V>(IsValueNegative(y)); 97 return BASE_NUMERICS_LIKELY((CheckedAddOp<T, U>::Do(x, y, &result))) ? result : saturated; 123 const V saturated = CommonMaxOrMin<V>(!IsValueNegative(y)); 125 return BASE_NUMERICS_LIKELY((CheckedSubOp<T, U>::Do(x, y, &result))) ? result : saturated; 148 const V saturated = CommonMaxOrMin<V>(IsValueNegative(x) ^ IsValueNegative(y)); 149 return BASE_NUMERICS_LIKELY((CheckedMulOp<T, U>::Do(x, y, &result))) ? result : saturated; 241 const V saturated = as_unsigned(V(0)) - IsValueNegative(x); 244 : saturated;
|
D | safe_conversions.h | 199 const Dst saturated = CommonMaxOrMin<Dst, Src>( 204 : saturated;
|
/third_party/gn/src/base/numerics/ |
D | clamped_math_impl.h | 89 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;
|
D | safe_conversions.h | 171 Dst saturated = CommonMaxOrMin<Dst, Src>( 176 : saturated;
|
/third_party/googletest/googlemock/test/ |
D | gmock_output_test_golden.txt | 63 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
|
/third_party/pulseaudio/src/pulsecore/ |
D | svolume.orc | 42 # sample = | (ml >> 16) | (signed, saturated)
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | colors.dart | 244 /// HSL is a perceptual color model, placing fully saturated colors around a 319 /// saturated, and over 0.5, the colors start to become less saturated and
|
/third_party/mesa3d/docs/relnotes/ |
D | 19.2.2.rst | 131 - gallivm: Fix saturated signed psub/padd intrinsics on llvm 8
|
D | 17.2.3.rst | 90 - intel/compiler: Don't cmod propagate into a saturated operation
|
D | 21.3.0.rst | 1823 - intel/fs: Remove condition-based restriction for cmod propagation to saturated operations 1825 - intel/fs: Remove type-based restriction for cmod propagation to saturated operations
|
D | 19.0.0.rst | 1136 - nir: Add a saturated unsigned integer add opcode
|
D | 7.10.rst | 1300 - i965: Recognize saturates and turn them into a saturated mov.
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_vec4_visitor.cpp | 522 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()
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/ |
D | painting.dart | 601 /// Inverting the components means that a fully saturated channel (opaque 636 /// Inverting the components means that a fully saturated channel (opaque 670 /// Inverting the components means that a fully saturated channel (opaque 679 /// Inverting the components means that a fully saturated channel (opaque 694 /// Inverting the components means that a fully saturated channel (opaque
|
/third_party/googletest/docs/ |
D | gmock_for_dummies.md | 544 error, as the last matching expectation (#2) has been saturated. If, however, 655 should *retire* as soon as they are saturated:
|
D | gmock_cook_book.md | 1787 Note that an expectation doesn't retire automatically when it's saturated. For 1802 becomes saturated:
|
/third_party/googletest/docs/reference/ |
D | mocking.md | 295 function calls) after it has been *saturated* (the upper bound has been
|
/third_party/flutter/skia/third_party/externals/wuffs/doc/spec/ |
D | nie-spec.md | 236 be greater than its alpha value. Interpretation of such super-saturated colors
|
/third_party/flutter/engine/flutter/lib/ui/ |
D | painting.dart | 565 /// Inverting the components means that a fully saturated channel (opaque 600 /// Inverting the components means that a fully saturated channel (opaque 634 /// Inverting the components means that a fully saturated channel (opaque 643 /// Inverting the components means that a fully saturated channel (opaque 658 /// Inverting the components means that a fully saturated channel (opaque
|
/third_party/openGLES/extensions/NV/ |
D | NV_fragment_program2.txt | 344 suffix, requesting saturated result vectors, each component of the result
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_fragment_program2.txt | 344 suffix, requesting saturated result vectors, each component of the result
|
/third_party/skia/third_party/externals/opengl-registry/extensions/KHR/ |
D | KHR_texture_compression_astc_hdr.txt | 419 The error color is opaque fully-saturated magenta 423 For linear RGB decode, the error color may be either opaque fully-saturated
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_texture_compression_astc.txt | 496 The error color is opaque fully-saturated magenta 500 For linear RGB decode, the error color may be either opaque fully-saturated
|
/third_party/openGLES/extensions/KHR/ |
D | KHR_texture_compression_astc_hdr.txt | 430 The error color is opaque fully-saturated magenta 434 For linear RGB decode, the error color may be either opaque fully-saturated
|
/third_party/openGLES/extensions/OES/ |
D | OES_texture_compression_astc.txt | 507 The error color is opaque fully-saturated magenta 511 For linear RGB decode, the error color may be either opaque fully-saturated
|
12