Lines Matching refs:len
57 unsigned int hash, len = this->len; in hfs_hash_dentry() local
59 if (len > HFS_NAMELEN) in hfs_hash_dentry()
60 len = HFS_NAMELEN; in hfs_hash_dentry()
63 for (; len; len--) in hfs_hash_dentry()
79 int len, tmp; in hfs_strcmp() local
81 len = (len1 > len2) ? len2 : len1; in hfs_strcmp()
83 while (len--) { in hfs_strcmp()
98 int len; in hfs_compare_dentry() local
100 len = s1->len; in hfs_compare_dentry()
101 if (len >= HFS_NAMELEN) { in hfs_compare_dentry()
102 if (s2->len < HFS_NAMELEN) in hfs_compare_dentry()
104 len = HFS_NAMELEN; in hfs_compare_dentry()
105 } else if (len != s2->len) in hfs_compare_dentry()
110 while (len--) { in hfs_compare_dentry()