Searched refs:abuf (Results 1 – 14 of 14) sorted by relevance
| /u-boot/lib/ |
| A D | abuf.c | 18 void abuf_set(struct abuf *abuf, void *data, size_t size) in abuf_set() argument 20 abuf_uninit(abuf); in abuf_set() 21 abuf->data = data; in abuf_set() 22 abuf->size = size; in abuf_set() 26 void abuf_map_sysmem(struct abuf *abuf, ulong addr, size_t size) in abuf_map_sysmem() argument 46 bool abuf_realloc(struct abuf *abuf, size_t new_size) in abuf_realloc() argument 77 memcpy(ptr, abuf->data, abuf->size); in abuf_realloc() 85 void *abuf_uninit_move(struct abuf *abuf, size_t *sizep) in abuf_uninit_move() argument 96 ptr = memdup(abuf->data, abuf->size); in abuf_uninit_move() 118 void abuf_uninit(struct abuf *abuf) in abuf_uninit() argument [all …]
|
| A D | Makefile | 145 obj-y += abuf.o
|
| /u-boot/include/ |
| A D | abuf.h | 29 struct abuf { struct 35 static inline void *abuf_data(const struct abuf *abuf) in abuf_data() argument 37 return abuf->data; in abuf_data() 40 static inline size_t abuf_size(const struct abuf *abuf) in abuf_size() argument 42 return abuf->size; in abuf_size() 58 void abuf_set(struct abuf *abuf, void *data, size_t size); 72 void abuf_map_sysmem(struct abuf *abuf, ulong addr, size_t size); 91 bool abuf_realloc(struct abuf *abuf, size_t new_size); 115 void *abuf_uninit_move(struct abuf *abuf, size_t *sizep); 146 void abuf_uninit(struct abuf *abuf); [all …]
|
| A D | fdt_support.h | 200 int board_rng_seed(struct abuf *buf);
|
| /u-boot/test/lib/ |
| A D | abuf.c | 20 struct abuf buf; in lib_test_abuf_set() 53 struct abuf buf; in lib_test_abuf_map_sysmem() 71 struct abuf buf; in lib_test_abuf_realloc() 132 struct abuf buf; in lib_test_abuf_realloc_size() 161 struct abuf buf; in lib_test_abuf_large() 226 struct abuf buf; in lib_test_abuf_uninit_move() 298 struct abuf buf; in lib_test_abuf_uninit() 321 struct abuf buf; in lib_test_abuf_init_set() 335 struct abuf buf; in lib_test_abuf_init_move() 361 struct abuf buf; in lib_test_abuf_init()
|
| A D | Makefile | 7 obj-y += abuf.o
|
| /u-boot/include/linux/ |
| A D | zstd.h | 447 struct abuf; 456 int zstd_decompress(struct abuf *in, struct abuf *out);
|
| /u-boot/lib/zstd/ |
| A D | zstd.c | 14 int zstd_decompress(struct abuf *in, struct abuf *out) in zstd_decompress()
|
| /u-boot/board/anbernic/rgxx3_rk3566/ |
| A D | rgxx3-rk3566.c | 84 int board_rng_seed(struct abuf *buf) in board_rng_seed()
|
| /u-boot/fs/btrfs/ |
| A D | compression.c | 140 struct abuf in, out; in decompress_zstd()
|
| /u-boot/boot/ |
| A D | image.c | 512 struct abuf in, out; in image_decomp()
|
| /u-boot/test/ |
| A D | compression.c | 342 struct abuf in_buf, out_buf; in uncompress_using_zstd()
|
| /u-boot/tools/ |
| A D | proftool.c | 243 struct abuf str_buf;
|
| /u-boot/common/ |
| A D | fdt_support.c | 283 struct abuf buf = {}; in fdt_chosen()
|
Completed in 34 milliseconds