OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nouveau_heap
(Results
1 - 14
of
14
) sorted by null
/external/mesa3d/src/gallium/drivers/nouveau/
nouveau_heap.h
26
struct
nouveau_heap
{
struct
27
struct
nouveau_heap
*prev;
28
struct
nouveau_heap
*next;
39
nouveau_heap_init(struct
nouveau_heap
**heap, unsigned start,
43
nouveau_heap_destroy(struct
nouveau_heap
**heap);
46
nouveau_heap_alloc(struct
nouveau_heap
*heap, unsigned size, void *priv,
47
struct
nouveau_heap
**);
50
nouveau_heap_free(struct
nouveau_heap
**);
nouveau_heap.c
26
#include "
nouveau_heap
.h"
29
nouveau_heap_init(struct
nouveau_heap
**heap,
32
struct
nouveau_heap
*r;
34
r = calloc(1, sizeof(struct
nouveau_heap
));
45
nouveau_heap_destroy(struct
nouveau_heap
**heap)
54
nouveau_heap_alloc(struct
nouveau_heap
*heap, unsigned size, void *priv,
55
struct
nouveau_heap
**res)
57
struct
nouveau_heap
*r;
64
r = calloc(1, sizeof(struct
nouveau_heap
));
92
nouveau_heap_free(struct
nouveau_heap
**res
[
all
...]
/external/mesa3d/src/gallium/drivers/nv30/
nv30_screen.h
13
#include "nouveau/
nouveau_heap
.h"
30
struct
nouveau_heap
*query_heap;
41
struct
nouveau_heap
*vp_exec_heap;
42
struct
nouveau_heap
*vp_data_heap;
nv30_state.h
95
struct
nouveau_heap
*exec;
96
struct
nouveau_heap
*data;
nv30_vertprog.c
87
struct
nouveau_heap
*heap = nv30->screen->vp_exec_heap;
94
struct
nouveau_heap
**evict = heap->next->priv;
130
struct
nouveau_heap
*heap = nv30->screen->vp_data_heap;
nv30_context.h
117
struct
nouveau_heap
*blit_vp;
nv30_transfer.c
70
static INLINE struct
nouveau_heap
*
73
struct
nouveau_heap
*heap = nv30->screen->vp_exec_heap;
74
struct
nouveau_heap
*vp;
80
struct
nouveau_heap
**evict = heap->next->priv;
147
struct
nouveau_heap
*vp = nv30_transfer_rect_vertprog(nv30);
nv30_draw.c
48
struct
nouveau_heap
*vertprog;
283
struct
nouveau_heap
*heap = nv30_screen(pscreen)->vp_exec_heap;
286
struct
nouveau_heap
**evict = heap->next->priv;
nv30_query.c
36
struct
nouveau_heap
*hw;
/external/mesa3d/src/gallium/drivers/nv50/
nv50_screen.h
7
#include "nouveau/
nouveau_heap
.h"
42
struct
nouveau_heap
*vp_code_heap;
43
struct
nouveau_heap
*gp_code_heap;
44
struct
nouveau_heap
*fp_code_heap;
nv50_program.h
97
struct
nouveau_heap
*mem;
nv50_program.c
376
struct
nouveau_heap
*heap;
/external/mesa3d/src/gallium/drivers/nvc0/
nvc0_program.h
58
struct
nouveau_heap
*mem;
nvc0_screen.h
7
#include "nouveau/
nouveau_heap
.h"
39
struct
nouveau_heap
*text_heap;
40
struct
nouveau_heap
*lib_code; /* allocated from text_heap */
Completed in 212 milliseconds