Searched refs:total_len (Results 1 – 5 of 5) sorted by relevance
/optee_os-3.20.0/core/lib/libtomcrypt/src/misc/crypt/ |
A D | crypt_constants.c | 255 unsigned int total_len = 0; in crypt_list_all_constants() local 266 total_len += number_len; in crypt_list_all_constants() 270 *names_list_size = total_len; in crypt_list_all_constants() 272 if (total_len > *names_list_size) { in crypt_list_all_constants() 278 …number_len = snprintf(ptr, total_len, "%s,%d\n", s_crypt_constants[i].name, s_crypt_constants[i].v… in crypt_list_all_constants() 280 if ((unsigned int)number_len > total_len) return -1; in crypt_list_all_constants() 281 total_len -= number_len; in crypt_list_all_constants()
|
A D | crypt_sizes.c | 315 unsigned int total_len = 0; in crypt_list_all_sizes() local 326 total_len += number_len; in crypt_list_all_sizes() 331 *names_list_size = total_len; in crypt_list_all_sizes() 333 if (total_len > *names_list_size) { in crypt_list_all_sizes() 339 … number_len = snprintf(ptr, total_len, "%s,%u\n", s_crypt_sizes[i].name, s_crypt_sizes[i].size); in crypt_list_all_sizes() 341 if ((unsigned int)number_len > total_len) return -1; in crypt_list_all_sizes() 342 total_len -= number_len; in crypt_list_all_sizes()
|
/optee_os-3.20.0/core/include/kernel/ |
A D | boot.h | 35 uint32_t total_len; member
|
/optee_os-3.20.0/scripts/ |
A D | gen_tee_bin.py | 217 total_len = reloc_offs + len(reloc_bin) + reloc_pad 219 tee_embdata_bin = struct.pack('<IIIIII', total_len, num_entries,
|
/optee_os-3.20.0/core/arch/arm/kernel/ |
A D | boot.c | 457 assert(embdata->total_len >= embdata->hashes_offset + in init_runtime()
|
Completed in 7 milliseconds