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()
96 unsigned int len, const char *str, const struct qstr *name) in hfs_compare_dentry() argument
100 if (len >= HFS_NAMELEN) { in hfs_compare_dentry()
101 if (name->len < HFS_NAMELEN) in hfs_compare_dentry()
103 len = HFS_NAMELEN; in hfs_compare_dentry()
104 } else if (len != name->len) in hfs_compare_dentry()
109 while (len--) { in hfs_compare_dentry()