Home
last modified time | relevance | path

Searched refs:real_size (Results 1 – 3 of 3) sorted by relevance

/rk3399_rockchip-uboot/common/
H A Dattestation_key.c190 uint32_t real_size; in validate_ca_header() local
192 memcpy(&real_size, buf + 3 + sizeof(uint32_t), sizeof(uint32_t)); in validate_ca_header()
193 if (real_size <= 0 || real_size > data_size) { in validate_ca_header()
194 printf("invalide real_size:%d\n", real_size); in validate_ca_header()
279 uint32_t real_size; in load_attestation_key() local
281 memcpy(&real_size, ca_headr + 3 + sizeof(uint32_t), sizeof(uint32_t)); in load_attestation_key()
284 int real_block_num = real_size / ATTESTATION_DATA_BLOCK_SIZE; in load_attestation_key()
286 if (real_size % ATTESTATION_DATA_BLOCK_SIZE != 0) in load_attestation_key()
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/
H A Dcache_v8.c549 u64 real_size = size; in mmu_set_region_dcache_behaviour() local
591 flush_dcache_range(real_start, real_start + real_size); in mmu_set_region_dcache_behaviour()
/rk3399_rockchip-uboot/tools/
H A Dmxsimage.c441 long real_size, roundup_size; in sb_load_file() local
460 real_size = ftell(fp); in sb_load_file()
461 if (real_size < 0) in sb_load_file()
468 roundup_size = roundup(real_size, SB_BLOCK_SIZE); in sb_load_file()
473 size = fread(data, 1, real_size, fp); in sb_load_file()
474 if (size != (unsigned long)real_size) in sb_load_file()