/external/webrtc/api/audio/test/ |
D | echo_canceller3_config_json_unittest.cc | 25 cfg.suppressor.normal_tuning.mask_hf.enr_suppress = .5f; in TEST() 26 cfg.suppressor.subband_nearend_detection.nearend_average_blocks = 3; in TEST() 27 cfg.suppressor.subband_nearend_detection.subband1 = {1, 3}; in TEST() 28 cfg.suppressor.subband_nearend_detection.subband1 = {4, 5}; in TEST() 29 cfg.suppressor.subband_nearend_detection.nearend_threshold = 2.f; in TEST() 30 cfg.suppressor.subband_nearend_detection.snr_threshold = 100.f; in TEST() 37 EXPECT_EQ(cfg.suppressor.normal_tuning.mask_lf.enr_suppress, in TEST() 38 cfg_transformed.suppressor.normal_tuning.mask_lf.enr_suppress); in TEST() 51 EXPECT_EQ(cfg.suppressor.normal_tuning.mask_hf.enr_suppress, in TEST() 52 cfg_transformed.suppressor.normal_tuning.mask_hf.enr_suppress); in TEST() [all …]
|
/external/webrtc/modules/audio_processing/aec3/ |
D | echo_canceller3_unittest.cc | 711 default_config.suppressor.high_bands_suppression.anti_howling_gain, in TEST() 712 adjusted_config.suppressor.high_bands_suppression.anti_howling_gain); in TEST() 719 default_config.suppressor.high_bands_suppression.anti_howling_gain, in TEST() 720 adjusted_config.suppressor.high_bands_suppression.anti_howling_gain); in TEST() 723 adjusted_config.suppressor.high_bands_suppression.anti_howling_gain); in TEST() 763 ASSERT_NE(adjusted_config.suppressor.nearend_tuning.mask_lf.enr_transparent, in TEST() 764 default_config.suppressor.nearend_tuning.mask_lf.enr_transparent); in TEST() 765 ASSERT_NE(adjusted_config.suppressor.nearend_tuning.mask_lf.enr_suppress, in TEST() 766 default_config.suppressor.nearend_tuning.mask_lf.enr_suppress); in TEST() 767 ASSERT_NE(adjusted_config.suppressor.nearend_tuning.mask_hf.enr_transparent, in TEST() [all …]
|
D | echo_canceller3.cc | 311 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.5f; in AdjustConfig() 314 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.75f; in AdjustConfig() 318 adjusted_cfg.suppressor.high_bands_suppression.anti_howling_gain = 1.f; in AdjustConfig() 323 adjusted_cfg.suppressor.normal_tuning.mask_lf.enr_transparent = 0.4f; in AdjustConfig() 324 adjusted_cfg.suppressor.normal_tuning.mask_lf.enr_suppress = 0.5f; in AdjustConfig() 329 adjusted_cfg.suppressor.nearend_tuning.mask_lf.enr_transparent = 1.29f; in AdjustConfig() 330 adjusted_cfg.suppressor.nearend_tuning.mask_lf.enr_suppress = 1.3f; in AdjustConfig() 335 adjusted_cfg.suppressor.normal_tuning.mask_hf.enr_transparent = 0.3f; in AdjustConfig() 336 adjusted_cfg.suppressor.normal_tuning.mask_hf.enr_suppress = 0.4f; in AdjustConfig() 341 adjusted_cfg.suppressor.nearend_tuning.mask_hf.enr_transparent = 1.09f; in AdjustConfig() [all …]
|
D | suppression_gain.cc | 155 kBlockSize * config_.suppressor.high_bands_suppression in UpperBandsGain() 164 config_.suppressor.high_bands_suppression.anti_howling_gain * in UpperBandsGain() 171 const auto& cfg = config_.suppressor.high_bands_suppression; in UpperBandsGain() 255 const auto& floor = config_.suppressor.floor_first_increase; in GetMaxGain() 327 config.suppressor.nearend_average_blocks)), 328 nearend_params_(config_.suppressor.nearend_tuning), 329 normal_params_(config_.suppressor.normal_tuning) { 332 if (config_.suppressor.use_subband_nearend_detection) { 334 config_.suppressor.subband_nearend_detection, num_capture_channels_); 337 config_.suppressor.dominant_nearend_detection, num_capture_channels_);
|
/external/webrtc/api/audio/ |
D | echo_canceller3_config_json.cc | 314 &cfg.suppressor.nearend_average_blocks); in Aec3ConfigFromJsonString() 317 ReadParam(subsection, "mask_lf", &cfg.suppressor.normal_tuning.mask_lf); in Aec3ConfigFromJsonString() 318 ReadParam(subsection, "mask_hf", &cfg.suppressor.normal_tuning.mask_hf); in Aec3ConfigFromJsonString() 320 &cfg.suppressor.normal_tuning.max_inc_factor); in Aec3ConfigFromJsonString() 322 &cfg.suppressor.normal_tuning.max_dec_factor_lf); in Aec3ConfigFromJsonString() 326 ReadParam(subsection, "mask_lf", &cfg.suppressor.nearend_tuning.mask_lf); in Aec3ConfigFromJsonString() 327 ReadParam(subsection, "mask_hf", &cfg.suppressor.nearend_tuning.mask_hf); in Aec3ConfigFromJsonString() 329 &cfg.suppressor.nearend_tuning.max_inc_factor); in Aec3ConfigFromJsonString() 331 &cfg.suppressor.nearend_tuning.max_dec_factor_lf); in Aec3ConfigFromJsonString() 337 &cfg.suppressor.dominant_nearend_detection.enr_threshold); in Aec3ConfigFromJsonString() [all …]
|
D | echo_canceller3_config.cc | 198 res = res & Limit(&c->suppressor.nearend_average_blocks, 1, 5000); in Validate() 201 Limit(&c->suppressor.normal_tuning.mask_lf.enr_transparent, 0.f, 100.f); in Validate() 203 Limit(&c->suppressor.normal_tuning.mask_lf.enr_suppress, 0.f, 100.f); in Validate() 205 Limit(&c->suppressor.normal_tuning.mask_lf.emr_transparent, 0.f, 100.f); in Validate() 207 Limit(&c->suppressor.normal_tuning.mask_hf.enr_transparent, 0.f, 100.f); in Validate() 209 Limit(&c->suppressor.normal_tuning.mask_hf.enr_suppress, 0.f, 100.f); in Validate() 211 Limit(&c->suppressor.normal_tuning.mask_hf.emr_transparent, 0.f, 100.f); in Validate() 212 res = res & Limit(&c->suppressor.normal_tuning.max_inc_factor, 0.f, 100.f); in Validate() 213 res = res & Limit(&c->suppressor.normal_tuning.max_dec_factor_lf, 0.f, 100.f); in Validate() 215 res = res & Limit(&c->suppressor.nearend_tuning.mask_lf.enr_transparent, 0.f, in Validate() [all …]
|
D | echo_canceller3_config.h | 223 } suppressor; member
|
/external/guava/guava-tests/test/com/google/common/io/ |
D | CloserTest.java | 43 private TestSuppressor suppressor; field in CloserTest 47 suppressor = new TestSuppressor(); in setUp() 52 assertThat(Closer.create().suppressor).isInstanceOf(Closer.SuppressingSuppressor.class); in testCreate() 56 Closer closer = new Closer(suppressor); in testNoExceptionsThrown() 72 assertTrue(suppressor.suppressions.isEmpty()); in testNoExceptionsThrown() 76 Closer closer = new Closer(suppressor); in testExceptionThrown_fromTryBlock() 98 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_fromTryBlock() 102 Closer closer = new Closer(suppressor); in testExceptionThrown_whenCreatingCloseables() 125 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_whenCreatingCloseables() 129 Closer closer = new Closer(suppressor); in testExceptionThrown_whileClosingLastCloseable() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/io/ |
D | CloserTest.java | 43 private TestSuppressor suppressor; field in CloserTest 47 suppressor = new TestSuppressor(); in setUp() 52 assertThat(Closer.create().suppressor).isInstanceOf(Closer.SuppressingSuppressor.class); in testCreate() 56 Closer closer = new Closer(suppressor); in testNoExceptionsThrown() 72 assertTrue(suppressor.suppressions.isEmpty()); in testNoExceptionsThrown() 76 Closer closer = new Closer(suppressor); in testExceptionThrown_fromTryBlock() 98 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_fromTryBlock() 102 Closer closer = new Closer(suppressor); in testExceptionThrown_whenCreatingCloseables() 125 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_whenCreatingCloseables() 129 Closer closer = new Closer(suppressor); in testExceptionThrown_whileClosingLastCloseable() [all …]
|
/external/desugar/test/java/com/google/devtools/build/android/desugar/runtime/ |
D | ThrowableExtensionTest.java | 132 Exception suppressor = new Exception(); in testCloseResource() local 133 ThrowableExtension.closeResource(suppressor, r); in testCloseResource() 135 assertThat(ThrowableExtension.getSuppressed(suppressor)).isEmpty(); in testCloseResource() 146 Exception suppressor = new Exception(); in testCloseResource() local 147 assertThrows(Exception.class, () -> ThrowableExtension.closeResource(suppressor, r)); in testCloseResource() 150 assertThat(ThrowableExtension.getSuppressed(suppressor)).hasLength(1); in testCloseResource() 151 assertThat(ThrowableExtension.getSuppressed(suppressor)[0].getClass()) in testCloseResource() 164 Exception suppressor = new Exception(); in testCloseResource() local 165 ThrowableExtension.closeResource(suppressor, r); in testCloseResource() 167 assertThat(ThrowableExtension.getSuppressed(suppressor)).isEmpty(); in testCloseResource() [all …]
|
/external/guava/android/guava/src/com/google/common/io/ |
D | Closer.java | 104 @VisibleForTesting final Suppressor suppressor; field in Closer 111 Closer(Suppressor suppressor) { in Closer() argument 112 this.suppressor = checkNotNull(suppressor); // checkNotNull to satisfy null tests in Closer() 218 suppressor.suppress(closeable, throwable, e); in close()
|
/external/guava/guava/src/com/google/common/io/ |
D | Closer.java | 104 @VisibleForTesting final Suppressor suppressor; field in Closer 111 Closer(Suppressor suppressor) { in Closer() argument 112 this.suppressor = checkNotNull(suppressor); // checkNotNull to satisfy null tests in Closer() 218 suppressor.suppress(closeable, throwable, e); in close()
|
/external/desugar/test/java/com/google/devtools/build/android/desugar/classes_for_testing_type_inference/testsubjects/ |
D | TestSubject.java | 118 public void closeResource(AutoCloseable resource, Throwable suppressor) throws Exception { in closeResource() argument 125 if (suppressor != null) { in closeResource() 126 suppressor.addSuppressed(e); in closeResource()
|
/external/webrtc/modules/audio_processing/transient/ |
D | transient_suppression_test.cc | 168 TransientSuppressorImpl suppressor; in void_main() local 169 suppressor.Initialize(absl::GetFlag(FLAGS_sample_rate_hz), detection_rate_hz, in void_main() 202 ASSERT_EQ(0, suppressor.Suppress( in void_main()
|
/external/rnnoise/doc/ |
D | Doxyfile.in | 5 PROJECT_BRIEF = "RNN-based noise suppressor."
|
/external/pdfium/testing/tools/ |
D | test_runner.py | 19 import suppressor 360 self.test_suppressor = suppressor.Suppressor(
|
/external/webrtc/ |
D | native-api.md | 111 The transient suppressor functionality in the audio processing module is not
|
D | webrtc.gni | 265 # Set this to true to exclude the transient suppressor in the audio processing
|
/external/autotest/site_utils/ |
D | generate_test_report | 45 self.suppressor = person
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | en-IPA.txt | 4424 $x{suppressor → səprɛsər ; # səprɛsor
|
D | internal_raw_IPA-old.txt | 190142 suppressor %20652 səprˈɛsər
|
D | internal_raw_IPA.txt | 159151 suppressor %32149 səprˈɛsər
|