Searched refs:slash (Results 126 - 150 of 188) sorted by relevance

12345678

/netbsd-current/external/gpl3/gcc.old/dist/libgfortran/io/
H A Dunix.c1203 const char *slash = "/"; local
1211 /* Check for the special case that tempdir ends with a slash or
1219 slash = "";
1226 tempdir, slash);
1247 size_t slashlen = strlen (slash);
1258 tempdir, slash);
/netbsd-current/external/gpl3/gcc/dist/libgfortran/io/
H A Dunix.c1203 const char *slash = "/"; local
1211 /* Check for the special case that tempdir ends with a slash or
1219 slash = "";
1226 tempdir, slash);
1247 size_t slashlen = strlen (slash);
1258 tempdir, slash);
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_write_disk_posix.c3398 char *slash; local
3402 slash = strrchr(path, '/');
3403 if (slash == NULL)
3405 *slash = '\0';
3407 *slash = '/';
3423 char *slash, *base; local
3428 slash = strrchr(path, '/');
3429 if (slash == NULL)
3432 base = slash + 1;
3438 if (slash !
[all...]
H A Darchive_write_set_format_mtree.c1713 char *p, *dirname, *slash; local
1854 slash = NULL;
1857 slash = p;
1859 if (slash == NULL) {
1868 /* Make a basename from file->parentdir.s and slash */
1869 *slash = '\0';
1870 file->parentdir.length = slash - file->parentdir.s;
1871 archive_strcpy(&(file->basename), slash + 1);
H A Darchive_write_set_format_xar.c2069 char *p, *dirname, *slash; local
2206 slash = NULL;
2209 slash = p;
2210 if (slash == NULL) {
2219 /* Make a basename from dirname and slash */
2220 *slash = '\0';
2221 file->parentdir.length = slash - dirname;
2222 archive_strcpy(&(file->basename), slash + 1);
H A Darchive_read_support_format_mtree.c632 int slash; local
641 slash = 0;
646 /* The pathname should have a slash in this
649 slash = 1;
651 if (name_len == 0 || slash == 0)
/netbsd-current/usr.bin/make/unit-tests/
H A Ddirective-include.mk71 # the current file has a slash or is a relative filename. In the first case,
/netbsd-current/bin/ksh/
H A Dsh.h330 EXTERN char slash [] I__("/");
/netbsd-current/external/historical/nawk/dist/testdir/
H A Dfunstack.awk236 gsub(/ *# *\\slash *# */," / ",Month)
936 gsub(/\\slash +/,"/",s) # replace TeX slashes with conventional ones
/netbsd-current/external/mit/isl/dist/
H A Disl_arg.c684 const char *slash; local
686 slash = strrchr(prog, '/');
687 if (slash)
688 prog = slash + 1;
/netbsd-current/external/gpl2/lvm2/dist/libdm/
H A Dlibdm-common.c919 const char *slash; local
927 slash = dev_dir[len-1] == '/' ? "" : "/";
929 if (snprintf(_dm_dir, sizeof _dm_dir, "%s%s%s", dev_dir, slash, DM_DIR)
/netbsd-current/external/bsd/flex/dist/src/
H A Dmain.c349 char *slash;
351 if ((slash = strrchr(M4, '/')) != NULL) {
352 m4 = slash+1;
348 char *slash; local
/netbsd-current/external/gpl2/xcvs/dist/src/
H A Dhistory.c773 char *slash = "", *cp; local
844 slash = "/";
848 workdir = Xasprintf ("%s%s%s%s", tilde, PrCurDir, slash, update_dir);
/netbsd-current/external/gpl3/gcc/dist/libbacktrace/
H A Delf.c959 const char *slash; local
983 slash = strrchr (filename, '/');
984 if (slash == NULL)
991 slash++;
992 clen = slash - filename + strlen (new_buf) + 1;
997 memcpy (c, filename, slash - filename);
998 memcpy (c + (slash - filename), new_buf, strlen (new_buf));
999 c[slash - filename + strlen (new_buf)] = '\0';
1015 slash = strrchr (filename, '/');
1016 if (slash
[all...]
/netbsd-current/external/gpl3/gdb/dist/libbacktrace/
H A Delf.c959 const char *slash; local
983 slash = strrchr (filename, '/');
984 if (slash == NULL)
991 slash++;
992 clen = slash - filename + strlen (new_buf) + 1;
997 memcpy (c, filename, slash - filename);
998 memcpy (c + (slash - filename), new_buf, strlen (new_buf));
999 c[slash - filename + strlen (new_buf)] = '\0';
1015 slash = strrchr (filename, '/');
1016 if (slash
[all...]
/netbsd-current/usr.bin/make/
H A Ddir.c894 const char *brace, *slash, *wildcard, *wildcardComponent; local
907 slash = strchr(pattern, '/');
908 if (slash == NULL) {
/netbsd-current/external/bsd/nsd/dist/
H A Dzonec.c1483 char *slash = strchr(str, '/'); local
1496 if (!slash) {
1502 *slash = '\0';
1538 p = strtol(slash + 1, &end, 10);
1543 zc_error("invalid prefix '%s'", slash + 1);
/netbsd-current/external/mpl/bind/dist/bin/tools/
H A Dmdig.c994 char *slash = NULL; local
1002 slash = strchr(buf, '/');
1003 if (slash != NULL) {
1005 *slash = '\0';
1006 result = isc_parse_uint32(&netmask, slash + 1, 10);
/netbsd-current/external/bsd/ntp/dist/sntp/libevent/
H A Devent_rpcgen.py1573 slash = header_file.rfind('/')
1574 if slash != -1:
1575 header_file = header_file[slash+1:]
/netbsd-current/external/bsd/libevent/dist/
H A Devent_rpcgen.py1748 slash = header_file.rfind("/")
1749 if slash != -1:
1750 header_file = header_file[slash + 1 :]
/netbsd-current/sys/arch/x68k/stand/common/
H A Dstart.S318 addql #1,%a4 | next of slash
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DTokenLexer.cpp858 if (PP.getLangOpts().MicrosoftExt && LHSTok.is(tok::slash) &&
859 RHS.is(tok::slash)) {
H A DPPExpressions.cpp530 case tok::slash:
694 case tok::slash:
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dgcov.c2428 int slash = 0;
2466 dd_base = ptr + 2 + slash;
2471 slash = ptr != result;
2477 if (slash)
2481 slash = 1;
2426 int slash = 0; local
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dgcov.cc2553 int slash = 0;
2591 dd_base = ptr + 2 + slash;
2596 slash = ptr != result;
2602 if (slash)
2606 slash = 1;
2551 int slash = 0; local

Completed in 287 milliseconds

12345678