Searched defs:rc_list (Results 1 - 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_list.h33 struct rc_list { struct
35 struct rc_list * Prev;
36 struct rc_list * Next;
39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
40 void rc_list_add(struct rc_list ** list, struct rc_list * new_value);
41 void rc_list_remove(struct rc_list ** list, struct rc_list * rm_value);
42 unsigned int rc_list_count(struct rc_list * lis
[all...]
H A Dradeon_list.c35 struct rc_list * rc_list(struct memory_pool * pool, void * item) function
37 struct rc_list * new = memory_pool_malloc(pool, sizeof(struct rc_list));
45 void rc_list_add(struct rc_list ** list, struct rc_list * new_value)
47 struct rc_list * temp;
60 void rc_list_remove(struct rc_list ** list, struct rc_list * rm_value)
73 unsigned int rc_list_count(struct rc_list * lis
[all...]

Completed in 150 milliseconds