Searched refs:buffer_table (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/minigbm/ |
H A D | drv.c | 137 drv->buffer_table = drmHashCreate(); in drv_create() 138 if (!drv->buffer_table) in drv_create() 167 drmHashDestroy(drv->buffer_table); in drv_create() 185 drmHashDestroy(drv->buffer_table); in drv_destroy() 296 if (!drmHashLookup(drv->buffer_table, bo->handle.u32, (void **)&num)) in drv_bo_acquire() 297 drmHashDelete(drv->buffer_table, bo->handle.u32); in drv_bo_acquire() 299 drmHashInsert(drv->buffer_table, bo->handle.u32, (void *)(num + 1)); in drv_bo_acquire() 318 if (!drmHashLookup(drv->buffer_table, bo->handle.u32, (void **)&num)) { in drv_bo_release() 319 drmHashDelete(drv->buffer_table, bo->handle.u32); in drv_bo_release() 322 drmHashInsert(drv->buffer_table, bo->handle.u32, (void *)(num - 1)); in drv_bo_release() [all …]
|
H A D | drv_priv.h | 69 void *buffer_table; member
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
H A D | runtime_fork_join.cc | 62 void** buffer_table, void* status, uint64_t* prof_counters, in __xla_cpu_runtime_ParallelForkJoin() argument 90 [i, function, result_ptr, run_options_ptr, buffer_table, prof_counters, in __xla_cpu_runtime_ParallelForkJoin() 92 function(result_ptr, run_options_ptr, nullptr, buffer_table, in __xla_cpu_runtime_ParallelForkJoin() 100 function(result_ptr, run_options_ptr, params, buffer_table, &statuses[0], in __xla_cpu_runtime_ParallelForkJoin()
|
H A D | runtime_fork_join.h | 27 void** buffer_table, void* status, uint64_t* prof_counters,
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/pjrt/ |
H A D | tfrt_cpu_pjrt_client.cc | 1273 absl::Span<const std::shared_ptr<MaybeOwningCpuMemory>> buffer_table, in CreateResultShapedBuffer() argument 1278 output_buffers.push_back(buffer_table[buffer_indices[i]]); in CreateResultShapedBuffer() 1434 std::vector<std::shared_ptr<MaybeOwningCpuMemory>> buffer_table, in ExecuteHelper() 1437 buffer_table, tracked_buffers); in ExecuteHelper() 1449 buffer_pointers.reserve(buffer_table.size()); in ExecuteHelper() 1450 for (const auto& buffer : buffer_table) { in ExecuteHelper() 1520 buffer_table = std::move(buffer_table), in ExecuteHelper()
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/tools/ |
H A D | driver.cc | 70 char** buffer_table, void* status,
|