Searched refs:bof_t (Results 1 – 3 of 3) sorted by relevance
/external/libdrm/radeon/ |
D | bof.h | 52 } bof_t; typedef 54 extern int bof_file_flush(bof_t *root); 55 extern bof_t *bof_file_new(const char *filename); 56 extern int bof_object_dump(bof_t *object, const char *filename); 59 extern bof_t *bof_object(void); 60 extern bof_t *bof_object_get(bof_t *object, const char *keyname); 61 extern int bof_object_set(bof_t *object, const char *keyname, bof_t *value); 63 extern bof_t *bof_array(void); 64 extern int bof_array_append(bof_t *array, bof_t *value); 65 extern bof_t *bof_array_get(bof_t *bof, unsigned i); [all …]
|
D | bof.c | 34 static int bof_entry_grow(bof_t *bof) in bof_entry_grow() 36 bof_t **array; in bof_entry_grow() 51 bof_t *bof_object(void) in bof_object() 53 bof_t *object; in bof_object() 55 object = calloc(1, sizeof(bof_t)); in bof_object() 64 bof_t *bof_object_get(bof_t *object, const char *keyname) in bof_object_get() 76 int bof_object_set(bof_t *object, const char *keyname, bof_t *value) in bof_object_set() 78 bof_t *key; in bof_object_set() 100 bof_t *bof_array(void) in bof_array() 102 bof_t *array = bof_object(); in bof_array() [all …]
|
D | radeon_cs_gem.c | 344 bof_t *bcs, *blob, *array, *bo, *size, *handle, *device_id, *root; in cs_gem_dump_bof()
|