Searched refs:binary_handle (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/utility/ |
D | delay_estimator_wrapper.c | 267 WebRtc_FreeBinaryDelayEstimator(self->binary_handle); in WebRtc_FreeDelayEstimator() 268 self->binary_handle = NULL; in WebRtc_FreeDelayEstimator() 285 self->binary_handle = in WebRtc_CreateDelayEstimator() 287 memory_fail |= (self->binary_handle == NULL); in WebRtc_CreateDelayEstimator() 313 WebRtc_InitBinaryDelayEstimator(self->binary_handle); in WebRtc_InitDelayEstimator() 327 return WebRtc_SoftResetBinaryDelayEstimator(self->binary_handle, delay_shift); in WebRtc_SoftResetDelayEstimator() 336 return WebRtc_AllocateHistoryBufferMemory(self->binary_handle, history_size); in WebRtc_set_history_size() 345 if (self->binary_handle->farend->history_size != in WebRtc_history_size() 346 self->binary_handle->history_size) { in WebRtc_history_size() 350 return self->binary_handle->history_size; in WebRtc_history_size() [all …]
|
D | delay_estimator_unittest.cc | 44 void VerifyDelay(BinaryDelayEstimator* binary_handle, int offset, int delay); 136 void DelayEstimatorTest::VerifyDelay(BinaryDelayEstimator* binary_handle, in VerifyDelay() argument 139 EXPECT_EQ(delay, WebRtc_binary_last_delay(binary_handle)); in VerifyDelay() 491 BinaryDelayEstimator* binary_handle = binary_; in TEST_F() local 497 binary_handle = WebRtc_CreateBinaryDelayEstimator(NULL, kLookahead); in TEST_F() 498 EXPECT_TRUE(binary_handle == NULL); in TEST_F() 499 binary_handle = WebRtc_CreateBinaryDelayEstimator(binary_farend_, -1); in TEST_F() 500 EXPECT_TRUE(binary_handle == NULL); in TEST_F()
|
D | delay_estimator_internal.h | 45 BinaryDelayEstimator* binary_handle; member
|
/external/libdrm/amdgpu/ |
D | amdgpu_cs.c | 770 uint32_t binary_handle; in amdgpu_cs_syncobj_export_sync_file2() local 779 ret = drmSyncobjCreate(dev->fd, 0, &binary_handle); in amdgpu_cs_syncobj_export_sync_file2() 783 ret = drmSyncobjTransfer(dev->fd, binary_handle, 0, in amdgpu_cs_syncobj_export_sync_file2() 787 ret = drmSyncobjExportSyncFile(dev->fd, binary_handle, sync_file_fd); in amdgpu_cs_syncobj_export_sync_file2() 789 drmSyncobjDestroy(dev->fd, binary_handle); in amdgpu_cs_syncobj_export_sync_file2() 798 uint32_t binary_handle; in amdgpu_cs_syncobj_import_sync_file2() local 807 ret = drmSyncobjCreate(dev->fd, 0, &binary_handle); in amdgpu_cs_syncobj_import_sync_file2() 810 ret = drmSyncobjImportSyncFile(dev->fd, binary_handle, sync_file_fd); in amdgpu_cs_syncobj_import_sync_file2() 814 binary_handle, 0, 0); in amdgpu_cs_syncobj_import_sync_file2() 816 drmSyncobjDestroy(dev->fd, binary_handle); in amdgpu_cs_syncobj_import_sync_file2()
|