Searched refs:concat (Results 1 - 25 of 90) sorted by relevance

1234

/freebsd-current/contrib/dialog/
H A Dversion.c26 #define concat(a,b) a "-" quoted(b) macro
27 #define DLG_VERSION concat(DIALOG_VERSION,DIALOG_PATCHDATE)
/freebsd-current/lib/geom/concat/
H A DMakefile5 GEOM_CLASS= concat
/freebsd-current/sys/modules/geom/geom_concat/
H A DMakefile2 .PATH: ${SRCTOP}/sys/geom/concat
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHaiku.cpp167 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/lib"));
168 getFilePaths().push_back(concat(getDriver().SysRoot, "/boot/system/develop/lib"));
203 addSystemInclude(DriverArgs, CC1Args, concat(D.SysRoot,
205 addSystemInclude(DriverArgs, CC1Args, concat(D.SysRoot,
207 addSystemInclude(DriverArgs, CC1Args, concat(D.SysRoot,
209 addSystemInclude(DriverArgs, CC1Args, concat(D.SysRoot,
211 addSystemInclude(DriverArgs, CC1Args, concat(D.SysRoot,
213 addSystemInclude(DriverArgs, CC1Args, concat(D.SysRoot,
215 addSystemInclude(DriverArgs, CC1Args, concat(D.SysRoot,
217 addSystemInclude(DriverArgs, CC1Args, concat(
[all...]
H A DLinux.cpp136 if (D.getVFS().exists(concat(SysRoot, "/lib", MT)))
138 if (D.getVFS().exists(concat(SysRoot, "/lib/mips64-linux-gnu")))
145 if (D.getVFS().exists(concat(SysRoot, "/lib", MT)))
147 if (D.getVFS().exists(concat(SysRoot, "/lib/mips64el-linux-gnu")))
152 if (D.getVFS().exists(concat(SysRoot, "/lib/powerpc-linux-gnuspe")))
303 addPathIfExists(D, concat(SysRoot, "/libo32"), Paths);
304 addPathIfExists(D, concat(SysRoot, "/usr/libo32"), Paths);
308 addPathIfExists(D, concat(SysRoot, "/lib", MultiarchTriple), Paths);
309 addPathIfExists(D, concat(SysRoot, "/lib/..", OSLibDir), Paths);
317 concat(SysRoo
[all...]
H A DNetBSD.cpp389 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/i386"));
398 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabi"));
402 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/eabihf"));
405 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/oabi"));
412 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/o32"));
414 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/64"));
417 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/powerpc"));
420 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/sparc"));
426 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib"));
491 concat(
[all...]
H A DDragonFly.cpp215 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib"));
216 getFilePaths().push_back(concat(getDriver().SysRoot, "/usr/lib/gcc80"));
237 concat(D.SysRoot, "/usr/include"));
242 addLibStdCXXIncludePaths(concat(getDriver().SysRoot, "/usr/include/c++/8.0"), "", "",
/freebsd-current/tests/sys/geom/class/concat/
H A Dappend1.sh13 actual=$(diskinfo /dev/concat/${name} | awk '{print $3}')
33 # reported size of the concat device grows accordingly.
41 dd if=$tmpfile of=/dev/concat/${name} || exit 1
42 if cmp -s $tmpfile /dev/concat/${name}; then
H A Dappend2.sh13 actual=$(diskinfo /dev/concat/${name} | awk '{print $3}')
42 # reported size of the concat device grows accordingly. A sector from
50 dd if=$copy of=/dev/concat/${name} || exit 1
52 # Stop the concat device and destroy the backing providers.
58 # Re-create the providers and verify that the concat device comes
67 if [ -c /dev/concat/${name} ]; then
68 echo "ok - concat device was instantiated"
70 echo "not ok - concat device was instantiated"
73 if cmp -s $copy /dev/concat/${name}; then
H A D1_test.sh16 size=`diskinfo /dev/concat/${name} | awk '{print $3}'`
H A D2_test.sh20 dd if=${src} of=/dev/concat/${name} bs=1m count=$tsize >/dev/null 2>&1
21 dd if=/dev/concat/${name} of=${dst} bs=1m count=$tsize >/dev/null 2>&1
/freebsd-current/contrib/netbsd-tests/lib/libc/regex/
H A Dt_exhaust.c66 concat(const char *d, const char *s) function
83 s2 = concat(s1, ")");
85 d = concat("(", s2);
96 s3 = concat(s1, s2);
99 s1 = concat(s3, ")");
101 d = concat("(", s1);
112 s3 = concat(s1, s2);
115 d = concat("(.?)", s3);
149 s2 = concat(s1, "(.*)");
152 d = concat(s
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_strings.lua159 assert(table.concat{} == "")
160 assert(table.concat({}, 'x') == "")
161 assert(table.concat({'\0', '\0\1', '\0\1\2'}, '.\0.') == "\0.\0.\0\1.\0.\0\1\2")
163 assert(table.concat(a, "123").."123" == string.rep("xuxu123", 300))
164 assert(table.concat(a, "b", 20, 20) == "xuxu")
165 assert(table.concat(a, "", 20, 21) == "xuxuxuxu")
166 assert(table.concat(a, "x", 22, 21) == "")
167 assert(table.concat(a, "3", 299) == "xuxu3xuxu")
168 assert(table.concat({}, "x", 2^31-1, 2^31-2) == "")
169 assert(table.concat({}, "
[all...]
H A Dtst.lib_coroutine.lua297 coroutine.yield(nil, "concat");
339 assert(run(function () return a..b end, {"concat"}) == "1012")
342 {"concat", "concat", "concat"}) == "1012hello10")
345 {"concat", "concat", "concat"}) == "ab10chello12x")
/freebsd-current/tests/sys/geom/class/
H A DMakefile8 TESTS_SUBDIRS+= concat
/freebsd-current/lib/geom/
H A DMakefile.classes9 GEOM_CLASSES+= concat
/freebsd-current/usr.bin/patch/
H A Dbackupfile.c39 static char *concat(const char *, const char *);
58 return concat(file, simple_backup_suffix);
62 base_versions = concat(basename(tmp_file), ".~");
81 return concat(file, simple_backup_suffix);
158 concat(const char *str1, const char *str2) function
/freebsd-current/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DCOFF.cpp43 Twine('/').concat(Twine(Offset)).toVector(Buffer);
/freebsd-current/usr.sbin/autofs/
H A Dautomountd.c249 options = concat(options, ',', adr->adr_options);
254 options = concat(cmdline_options, ',', options);
283 tmp = concat(adr->adr_path, '/', key);
312 options = concat(options, ',', "automounted");
340 options = concat(options, ',', "retrycnt=1");
342 options = concat(options, ',',
343 concat("retrycnt", '=', retrycnt));
467 options = concat(options, ',', optarg);
/freebsd-current/sys/geom/vinum/
H A Dgeom_vinum_share.c300 if (!strcmp(buf, "concat"))
340 return "concat";
/freebsd-current/bin/sh/
H A Darith_yacc.c350 char *concat; local
360 STARTSTACKSTR(concat);
364 STPUTC(*p++, concat);
367 STPUTC(' ', concat);
369 STPUTC('\0', concat);
370 p = grabstackstr(concat);
/freebsd-current/tools/pkgbase/
H A Dmetalog_reader.lua351 sb[#sb+1] = ''..table.concat({
359 return table.concat(sb, '')
376 sb[#sb+1] = pkgname..table.concat({
382 return table.concat(sb, '')
397 table.concat(table_map(rows, function(e) return e.linenum end), ',')
409 ..table.concat(
416 return table.concat(warn, ''), table.concat(errs, '')
455 ..table.concat(filenames, ',')..' in line '
456 ..table.concat(
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableList.h177 [[nodiscard]] ImmutableList<T> concat(ElemT &&Head, ImmutableList<T> Tail) { function in class:llvm::ImmutableListFactory
201 return concat(std::forward<ElemT>(Data), L);
207 return concat(T(std::forward<CtorArgs>(Args)...), Tail);
216 return concat(std::forward<ElemT>(Data), getEmptyList());
/freebsd-current/cddl/usr.sbin/dtrace/tests/common/scripting/
H A DMakefile12 err.D_SYNTAX.concat.d \
/freebsd-current/contrib/ofed/infiniband-diags/src/
H A Dsmpquery.c496 char concat[64]; local
498 memset(concat, 0, 64);
499 snprintf(concat, sizeof(concat), "%s %s", argv[1], argv[2]);
500 if (resolve_portid_str(ibd_ca, ibd_ca_port, &portid, concat,
502 IBEXIT("can't resolve destination port %s", concat);

Completed in 184 milliseconds

1234