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

  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_execmem.c 68 static struct mem_block *exec_heap = NULL; variable in typeref:struct:mem_block
75 if (!exec_heap)
76 exec_heap = u_mmInit( 0, EXEC_HEAP_SIZE );
98 if (exec_heap) {
100 block = u_mmAllocMem( exec_heap, size, 5, 0 ); /* 5 -> 32-byte alignment */
120 if (exec_heap) {
121 struct mem_block *block = u_mmFindBlock(exec_heap, (unsigned char *)addr - exec_mem);
  /external/mesa3d/src/mesa/main/
execmem.c 64 static struct mem_block *exec_heap = NULL; variable in typeref:struct:mem_block
79 if (!exec_heap)
80 exec_heap = mmInit( 0, EXEC_HEAP_SIZE );
101 if (exec_heap) {
103 block = mmAllocMem( exec_heap, size, 32, 0 );
123 if (exec_heap) {
124 struct mem_block *block = mmFindBlock(exec_heap, (unsigned char *)addr - exec_mem);

Completed in 106 milliseconds