Home
last modified time | relevance | path

Searched refs:abuf (Results 1 – 14 of 14) sorted by relevance

/u-boot/lib/
A Dabuf.c18 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 DMakefile145 obj-y += abuf.o
/u-boot/include/
A Dabuf.h29 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 Dfdt_support.h200 int board_rng_seed(struct abuf *buf);
/u-boot/test/lib/
A Dabuf.c20 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 DMakefile7 obj-y += abuf.o
/u-boot/include/linux/
A Dzstd.h447 struct abuf;
456 int zstd_decompress(struct abuf *in, struct abuf *out);
/u-boot/lib/zstd/
A Dzstd.c14 int zstd_decompress(struct abuf *in, struct abuf *out) in zstd_decompress()
/u-boot/board/anbernic/rgxx3_rk3566/
A Drgxx3-rk3566.c84 int board_rng_seed(struct abuf *buf) in board_rng_seed()
/u-boot/fs/btrfs/
A Dcompression.c140 struct abuf in, out; in decompress_zstd()
/u-boot/boot/
A Dimage.c512 struct abuf in, out; in image_decomp()
/u-boot/test/
A Dcompression.c342 struct abuf in_buf, out_buf; in uncompress_using_zstd()
/u-boot/tools/
A Dproftool.c243 struct abuf str_buf;
/u-boot/common/
A Dfdt_support.c283 struct abuf buf = {}; in fdt_chosen()

Completed in 34 milliseconds