Lines Matching +defs:first +defs:second
548 /* LE first, then BE */
737 /* Boot volume descriptor should come second */
860 * @param const char * The first file name
861 * @param const char * The second file name
862 * @returns : -1 if first is less than second, 0 if they are the same, 1 if
863 * the second is greater than the first
866 cd9660_compare_filename(const char *first, const char *second)
880 c1 = first[p1];
881 c2 = second[p2];
902 if (first[p1] == '.' && second[p2] == '.') {
907 c1 = first[p1];
908 c2 = second[p2];
947 * first will either be 0, the . or the ..
948 * if . or .., this means no other entry may be written before first
1295 /* Recursion first */
1514 /* Breadth-first traversal of file structure */
1588 /* Handle period first, as it is special */
1648 /* Handle period first, as it is special */
1817 * record (or, the first byte in that sector)
2005 cd9660node *temp, *first;
2025 /* Dot record is always first */
2029 /* DotDot should be second */
2033 * If the first child is the dot record, insert
2034 * this second. Otherwise, insert it at the head.
2036 if ((first = TAILQ_FIRST(&parent->cn_children)) == NULL ||
2037 (first->type & CD9660_TYPE_DOT) == 0) {
2041 TAILQ_INSERT_AFTER(&parent->cn_children, first, temp,