Lines Matching defs:qn
16 /* based on the end of qn is accurate and it must have the trailing '\0' */
17 static inline int erofs_dirnamecmp(const struct erofs_qstr *qn,
33 if (qn->name[i] != qd->name[i]) {
35 return qn->name[i] > qd->name[i] ? 1 : -1;
41 return qn->name[i] == '\0' ? 0 : 1;
176 struct erofs_qstr qn;
181 qn.name = name->name;
182 qn.end = name->name + name->len;
185 page = find_target_block_classic(dir, &qn, &ndirents);
193 de = find_target_dirent(&qn, data, EROFS_BLKSIZ, ndirents);