Searched refs:fat_eof (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/block/ |
H A D | vvfat.c | 681 static inline int fat_eof(BDRVVVFATState* s,uint32_t fat_entry) in fat_eof() function 1998 if (fat_eof(s, cluster_num)) in get_cluster_count_for_direntry() 2132 } while(!fat_eof(s, cluster_num)); in check_directory_consistency() 2355 while (!fat_eof(s, cluster)) { in commit_mappings() 2373 if (!fat_eof(s, c1)) { in commit_mappings() 2447 for (old_cluster_count = 0, c = first_cluster; !fat_eof(s, c); in commit_direntries() 2451 for (new_cluster_count = 0, c = first_cluster; !fat_eof(s, c); in commit_direntries() 2466 for (c = first_cluster; !fat_eof(s, c); c = modified_fat_get(s, c)) { in commit_direntries() 2553 assert((size - offset == 0 && fat_eof(s, c)) || in commit_one_file() 2554 (size > offset && c >=2 && !fat_eof(s, c))); in commit_one_file() [all …]
|