Home
last modified time | relevance | path

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

/external/u-boot/fs/fat/
Dfat.c167 if (CHECK_CLUST(entry, mydata->fatsize)) { in get_fatent()
338 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_contents()
368 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_contents()
384 if (CHECK_CLUST(newclust, mydata->fatsize)) { in get_contents()
411 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_contents()
754 if (CHECK_CLUST(itr->clust, itr->fsdata->fatsize)) { in next_cluster()
Dfat_write.c302 if (CHECK_CLUST(curclust, mydata->fatsize)) { in get_long_file_name()
611 while (!CHECK_CLUST(entry, mydata->fatsize)) { in clear_fatent()
670 if (CHECK_CLUST(newclust, mydata->fatsize)) { in set_contents()
706 if (CHECK_CLUST(newclust, mydata->fatsize)) { in set_contents()
892 if (CHECK_CLUST(curclust, mydata->fatsize)) { in find_directory_entry()
/external/u-boot/include/
Dfat.h86 #define CHECK_CLUST(x, fatsize) ((x) <= 1 || \ macro