Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/fs/fat/
H A Dfat.c174 if (CHECK_CLUST(entry, mydata->fatsize)) { in get_fatent()
345 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_contents()
375 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_contents()
391 if (CHECK_CLUST(newclust, mydata->fatsize)) { in get_contents()
418 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_contents()
763 if (CHECK_CLUST(itr->clust, itr->fsdata->fatsize)) { in next_cluster()
H A Dfat_write.c303 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_long_file_name()
612 while (!CHECK_CLUST(entry, mydata->fatsize)) { in clear_fatent()
671 if (CHECK_CLUST(newclust, mydata->fatsize)) { in set_contents()
707 if (CHECK_CLUST(newclust, mydata->fatsize)) { in set_contents()
894 if (CHECK_CLUST(curclust, mydata->fatsize)) { in find_directory_entry()
/OK3568_Linux_fs/u-boot/include/
H A Dfat.h88 #define CHECK_CLUST(x, fatsize) ((x) <= 1 || \ macro