/external/mesa3d/src/gallium/auxiliary/rtasm/ |
rtasm_execmem.c | 67 static struct mem_block *exec_heap = NULL; variable in typeref:struct:mem_block 74 if (!exec_heap) 75 exec_heap = u_mmInit( 0, EXEC_HEAP_SIZE ); 94 if (exec_heap) { 96 block = u_mmAllocMem( exec_heap, size, 5, 0 ); /* 5 -> 32-byte alignment */ 115 if (exec_heap) { 116 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);
|