Home
last modified time | relevance | path

Searched refs:buffer_table (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Druntime_fork_join.cc64 void** buffer_table, uint64* prof_counters, int32 num_partitions, in __xla_cpu_runtime_ParallelForkJoin() argument
89 [i, function, result_ptr, run_options_ptr, buffer_table, prof_counters, in __xla_cpu_runtime_ParallelForkJoin()
91 function(result_ptr, run_options_ptr, nullptr, buffer_table, in __xla_cpu_runtime_ParallelForkJoin()
99 function(result_ptr, run_options_ptr, params, buffer_table, &partitions[0], in __xla_cpu_runtime_ParallelForkJoin()
Druntime_fork_join.h27 void** buffer_table, tensorflow::uint64* prof_counters,
/external/minigbm/
Dhelpers.c457 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count)) in drv_get_reference_count()
468 drmHashDelete(drv->buffer_table, bo->handles[plane].u32); in drv_increment_reference_count()
469 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1)); in drv_increment_reference_count()
476 drmHashDelete(drv->buffer_table, bo->handles[plane].u32); in drv_decrement_reference_count()
479 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1)); in drv_decrement_reference_count()
Ddrv.c146 drv->buffer_table = drmHashCreate(); in drv_create()
147 if (!drv->buffer_table) in drv_create()
171 drmHashDestroy(drv->buffer_table); in drv_create()
186 drmHashDestroy(drv->buffer_table); in drv_destroy()
Ddrv_priv.h56 void *buffer_table; member