Searched refs:buff_size (Results 1 – 5 of 5) sorted by relevance
| /u-boot/cmd/ |
| A D | trace.c | 14 size_t *buff_ptr, size_t *buff_size) in get_args() argument 19 *buff_size = env_get_ulong("profsize", 16, 0); in get_args() 21 *buff_size); in get_args() 24 *buff_size = simple_strtoul(argv[3], NULL, 16); in get_args() 26 *buff_size); in get_args() 34 size_t buff_size, avail, buff_ptr, needed, used; in create_func_list() local 41 avail = buff_size - buff_ptr; in create_func_list() 49 env_set_hex("profsize", buff_size); in create_func_list() 57 size_t buff_size, avail, buff_ptr, needed, used; in create_call_list() local 64 avail = buff_size - buff_ptr; in create_call_list() [all …]
|
| /u-boot/include/ |
| A D | trace.h | 60 int trace_list_functions(void *buff, size_t buff_size, size_t *needed); 80 int trace_list_calls(void *buff, size_t buff_size, size_t *needed); 102 int trace_init(void *buff, size_t buff_size);
|
| /u-boot/lib/ |
| A D | trace.c | 200 end = buff ? buff + buff_size : NULL; in trace_list_functions() 250 int trace_list_calls(void *buff, size_t buff_size, size_t *needed) in trace_list_calls() argument 257 end = buff ? buff + buff_size : NULL; in trace_list_calls() 343 size_t buff_size) in trace_init() argument 377 if (needed > buff_size) { in trace_init() 379 buff_size, needed); in trace_init() 390 hdr->ftrace_size = (buff_size - needed) / sizeof(*hdr->ftrace); in trace_init() 410 size_t buff_size = CONFIG_TRACE_EARLY_SIZE; in trace_early_init() local 419 if (needed > buff_size) { in trace_early_init() 421 buff_size, needed); in trace_early_init() [all …]
|
| /u-boot/tools/ |
| A D | ifwitool.c | 1324 size_t buff_size = buffer_size(b); in pad_buffer() local 1326 assert(buff_size <= size); in pad_buffer() 1328 if (buff_size == size) in pad_buffer() 1336 memcpy(data, buffer_get(b), buff_size); in pad_buffer() 1337 memset(data + buff_size, 0xFF, size - buff_size); in pad_buffer()
|
| /u-boot/fs/yaffs2/ |
| A D | yaffs_guts.c | 3188 const YCHAR *oh_name, int buff_size) in yaffs_load_name_from_oh() argument 3196 int n = buff_size - 1; in yaffs_load_name_from_oh() 3204 yaffs_strncpy(name, oh_name + 1, buff_size - 1); in yaffs_load_name_from_oh() 3211 yaffs_strncpy(name, oh_name, buff_size - 1); in yaffs_load_name_from_oh()
|
Completed in 19 milliseconds