Lines Matching defs:isofn
87 isochar(const u_char *isofn, const u_char *isoend, int joliet_level,
91 *c = isofn[0];
92 if (joliet_level == 0 || isofn + 1 == isoend) {
98 *c = (*c << 8) + isofn[1];
104 *c = isofn[1];
115 isofncmp(const u_char *fn, size_t fnlen, const u_char *isofn, size_t isolen,
120 const u_char *isoend = isofn + isolen;
123 printf("fn = %s, fnlen = %zu, isofn = %s, isolen = %zu\n",
124 fn, fnlen, isofn, isolen);
130 if (isofn == isoend)
132 isofn += isochar(isofn, isoend, joliet_level, &ic);
147 for (j = 0; isofn != isoend; j = j * 10 + ic - '0')
148 isofn += isochar(isofn, isoend,
164 if (isofn != isoend) {
165 isofn += isochar(isofn, isoend, joliet_level, &ic);
170 if (isofn != isoend) {
171 isochar(isofn, isoend, joliet_level, &ic);