Home
last modified time | relevance | path

Searched refs:l2_size (Results 1 – 5 of 5) sorted by relevance

/external/cpuinfo/src/arm/
Dcache.c517 uint32_t l2_size = 512 * 1024; in cpuinfo_arm_decode_cache() local
522 l2_size = 1024 * 1024; in cpuinfo_arm_decode_cache()
530 l2_size = 1024 * 1024; in cpuinfo_arm_decode_cache()
535 l2_size = 1024 * 1024; in cpuinfo_arm_decode_cache()
539 l2_size = 1024 * 1024; in cpuinfo_arm_decode_cache()
558 .size = l2_size, in cpuinfo_arm_decode_cache()
567 uint32_t l2_size = 256 * 1024; in cpuinfo_arm_decode_cache() local
571 l2_size = 512 * 1024; in cpuinfo_arm_decode_cache()
578 l2_size = 1024 * 1024; in cpuinfo_arm_decode_cache()
584 l2_size = 256 * 1024; in cpuinfo_arm_decode_cache()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dqcow2.c184 img.l2_size = 1 << (img.cluster_bits - 3); in qcow2_write_raw_image()
234 for (l2_index = 0; l2_index < img.l2_size; l2_index++) { in qcow2_write_raw_image()
241 off_out = (l1_index * img.l2_size) + in qcow2_write_raw_image()
Dqcow2.h99 __u32 l2_size; member
/external/e2fsprogs/misc/
De2image.c800 ret = ext2fs_get_arrayzero(image->l2_size, in init_l2_cache()
905 image->l2_size = 1 << (cluster_bits - 3); in initialize_qcow2_image()
1069 blk64_t l1_index = blk / img->l2_size; in add_l2_item()
1070 blk64_t l2_index = blk & (img->l2_size - 1); in add_l2_item()
/external/crosvm/disk/src/qcow/
Dmod.rs280 let l2_size: u32 = cluster_size / size_of::<u64>() as u32; in create_for_size_and_path() localVariable
282 let num_l2_clusters: u32 = div_round_up_u32(num_clusters, l2_size); in create_for_size_and_path()
506 let l2_size = cluster_size / size_of::<u64>() as u64; in from() localVariable
508 let num_l2_clusters = div_round_up_u64(num_clusters, l2_size); in from()