HomeSort by relevance Sort by last modified time
    Searched defs:start_in_dw (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.h 38 int64_t start_in_dw; ///Start pointer in dwords relative in the pool bo member in struct:compute_memory_item
53 struct compute_memory_item* item_list; ///Allocated memory chunks in the buffer,they must be ordered by "start_in_dw"
65 struct compute_memory_item* compute_memory_postalloc_chunk(struct compute_memory_pool* pool, int64_t start_in_dw); ///search for the chunk where we can link our new chunk after it
compute_memory_pool.c 137 if (item->start_in_dw > -1) {
138 if (item->start_in_dw-last_end > size_in_dw) {
142 last_end = item->start_in_dw + item->size_in_dw;
159 int64_t start_in_dw)
163 COMPUTE_DBG("* compute_memory_postalloc_chunck() start_in_dw = %ld\n",
164 start_in_dw);
168 if (item->start_in_dw < start_in_dw
169 && item->next->start_in_dw > start_in_dw) {
303 int64_t start_in_dw; local
    [all...]

Completed in 61 milliseconds