Lines Matching refs:i
659 int i; in check_for_unshare_hints() local
666 i = 99; /* Sentinel. */ in check_for_unshare_hints()
667 fscanf (f, "%d", &i); in check_for_unshare_hints()
668 if (i == 0) in check_for_unshare_hints()
681 i = 99; /* Sentinel. */ in check_for_unshare_hints()
682 fscanf (f, "%d", &i); in check_for_unshare_hints()
683 if (i == 1) in check_for_unshare_hints()
900 int i; in main() local
903 for (i = 1; i < nt; ++i) in main()
905 if (memcmp (the_words[i], "$B/", 3) == 0) in main()
906 the_words[i] = concat (support_objdir_root, in main()
907 the_words[i] + 2, NULL); in main()
908 else if (memcmp (the_words[i], "$S/", 3) == 0) in main()
909 the_words[i] = concat (support_srcdir_root, in main()
910 the_words[i] + 2, NULL); in main()
911 else if (memcmp (the_words[i], "$I/", 3) == 0) in main()
912 the_words[i] = concat (new_root_path, in main()
914 the_words[i] + 2, NULL); in main()
915 else if (memcmp (the_words[i], "$L/", 3) == 0) in main()
916 the_words[i] = concat (new_root_path, in main()
918 the_words[i] + 2, NULL); in main()
919 else if (memcmp (the_words[i], "$complocaledir/", 15) == 0) in main()
920 the_words[i] = concat (new_root_path, in main()
922 the_words[i] + 14, NULL); in main()
926 && the_words[i][0] == '/') in main()
927 the_words[i] = concat (new_root_path, in main()
928 the_words[i], NULL); in main()