Home
last modified time | relevance | path

Searched full:cxx (Results 1 – 25 of 2000) sorted by relevance

12345678910>>...80

/external/jemalloc_new/
D.travis.yml7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
11 …env: CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bo…
13 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
19 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-…
21 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-a…
23 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno…
25 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=tcache:false" EXTRA_CFLA…
27 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=dss:primary" EXTRA_CFLAG…
29 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu" EXT…
[all …]
/external/libcxx/utils/libcxx/test/
Dconfig.py64 self.cxx = None
160 self.lit_config.note('Using compiler: %s' % self.cxx.path)
161 self.lit_config.note('Using flags: %s' % self.cxx.flags)
162 if self.cxx.use_modules:
164 self.cxx.modules_flags)
166 % self.cxx.compile_flags)
167 if len(self.cxx.warning_flags):
168 self.lit_config.note('Using warnings: %s' % self.cxx.warning_flags)
169 self.lit_config.note('Using link flags: %s' % self.cxx.link_flags)
183 self.cxx,
[all …]
/external/icu/icu4c/source/
DrunConfigureICU61 TRU64V5.1/CXX Use the Compaq cxx compiler on Tru64 (OSF)
62 zOS Use the IBM cxx compiler on z/OS (os/390)
63 zOSV1R2 Use the IBM cxx compiler for z/OS 1.2
142 CXX=`which xlclang++`; export CXX
143 if [ ! -x $CXX ]; then
153 CXX=g++; export CXX
161 CXX=`which CC`; export CXX
169 CXX=g++; export CXX
177 CXX=`which CC`; export CXX
186 CXX=aCC; export CXX
[all …]
/external/rust/cxx/book/src/
Dtutorial.md2 # Tutorial: CXX blobstore client
11 <https://github.com/dtolnay/cxx>. To try it out directly, run `cargo run` from
20 projects. (CXX works with other build systems too; refer to chapter 5.)
22 Create a blank Cargo project: `mkdir cxx-demo`; `cd cxx-demo`; `cargo init`.
24 Edit the Cargo.toml to add a dependency on the `cxx` crate:
29 # name = "cxx-demo"
34 cxx = "1.0"
41 CXX relies on a description of the function signatures that will be exposed from
43 in a Rust module annotated with the `#[cxx::bridge]` attribute macro.
51 #[cxx::bridge]
[all …]
Dextern-c++.md5 #[cxx::bridge]
16 The `extern "C++"` section of a CXX bridge declares C++ types and signatures to
28 # #[cxx::bridge]
51 **Thread safety:** Be aware that CXX does not assume anything about the thread
53 CXX produces for you in Rust *do not* come with `Send` and `Sync` impls. If you
59 # #[cxx::bridge]
87 in are accurate; that would be unreasonable. CXX performs static assertions that
101 #[cxx::bridge]
137 #[cxx::bridge]
161 #[cxx::bridge(namespace = "path::to")]
[all …]
/external/lzma/C/Util/7z/
Dmakefile.gcc2 CXX = gcc
12 $(CXX) -o $(PROG) $(LDFLAGS) $(OBJS) $(LIB)
15 $(CXX) $(CFLAGS) 7zMain.c
18 $(CXX) $(CFLAGS) ../../7zAlloc.c
21 $(CXX) $(CFLAGS) ../../7zArcIn.c
24 $(CXX) $(CFLAGS) ../../7zBuf.c
27 $(CXX) $(CFLAGS) ../../7zBuf2.c
30 $(CXX) $(CFLAGS) ../../7zCrc.c
33 $(CXX) $(CFLAGS) ../../7zCrcOpt.c
36 $(CXX) $(CFLAGS) -D_7ZIP_PPMD_SUPPPORT ../../7zDec.c
[all …]
/external/llvm/test/CodeGen/WinEH/
Dwineh-noret-cleanup.ll1 ; RUN: sed -e s/.Cxx:// %s | llc -mtriple=x86_64-pc-windows-msvc | FileCheck %s --check-prefix=CXX
10 ;Cxx: define void @test() personality i32 (...)* @__CxxFrameHandler3 {
20 ;Cxx: %catch = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
40 ;Cxx: %catch2 = catchpad within %cs2 [i8* null, i32 u0x40, i8* null]
45 ; CXX-LABEL: test:
46 ; CXX-LABEL: $ip2state$test:
47 ; CXX-NEXT: .long .Lfunc_begin0@IMGREL
48 ; CXX-NEXT: .long -1
49 ; CXX-NEXT: .long .Ltmp0@IMGREL+1
50 ; CXX-NEXT: .long 1
[all …]
/external/FP16/
Dconfigure.py16 fp16_tables = build.cxx("tables.cc")
18 [build.cxx("ieee-to-fp32-bits.cc"), fp16_tables])
20 [build.cxx("ieee-to-fp32-value.cc"), fp16_tables])
22 [build.cxx("ieee-from-fp32-value.cc"), fp16_tables])
25 [build.cxx("alt-to-fp32-bits.cc"), fp16_tables])
27 [build.cxx("alt-to-fp32-value.cc"), fp16_tables])
29 [build.cxx("alt-from-fp32-value.cc"), fp16_tables])
33 …build.unittest("alt-xmm-to-fp32-ymm-avx", [build.cxx("peachpy/alt-xmm-to-fp32-xmm-avx.cc"), stubs])
34 …build.unittest("alt-xmm-to-fp32-ymm-avx2", [build.cxx("peachpy/alt-xmm-to-fp32-ymm-avx2.cc"), stub…
37 build.unittest("ieee-to-fp32-psimd", build.cxx("ieee-to-fp32-psimd.cc"))
[all …]
/external/grpc-grpc/third_party/nanopb/tests/cxx_main_program/
DSConscript10 # Copy the files to .cxx extension in order to force C++ build.
12 env.Command("pb_encode.cxx", "#../pb_encode.c", c)
13 env.Command("pb_decode.cxx", "#../pb_decode.c", c)
14 env.Command("pb_common.cxx", "#../pb_common.c", c)
16 env.Command("alltypes.pb.cxx", "$BUILD/alltypes/alltypes.pb.c", c)
17 env.Command("encode_alltypes.cxx", "$BUILD/alltypes/encode_alltypes.c", c)
18 env.Command("decode_alltypes.cxx", "$BUILD/alltypes/decode_alltypes.c", c)
21 enc = env.Program(["encode_alltypes.cxx", "alltypes.pb.cxx", "pb_encode.cxx", "pb_common.cxx"])
22 dec = env.Program(["decode_alltypes.cxx", "alltypes.pb.cxx", "pb_decode.cxx", "pb_common.cxx"])
/external/nanopb-c/tests/cxx_main_program/
DSConscript10 # Copy the files to .cxx extension in order to force C++ build.
12 env.Command("pb_encode.cxx", "#../pb_encode.c", c)
13 env.Command("pb_decode.cxx", "#../pb_decode.c", c)
14 env.Command("pb_common.cxx", "#../pb_common.c", c)
16 env.Command("alltypes.pb.cxx", "$BUILD/alltypes/alltypes.pb.c", c)
17 env.Command("encode_alltypes.cxx", "$BUILD/alltypes/encode_alltypes.c", c)
18 env.Command("decode_alltypes.cxx", "$BUILD/alltypes/decode_alltypes.c", c)
21 enc = env.Program(["encode_alltypes.cxx", "alltypes.pb.cxx", "pb_encode.cxx", "pb_common.cxx"])
22 dec = env.Program(["decode_alltypes.cxx", "alltypes.pb.cxx", "pb_decode.cxx", "pb_common.cxx"])
/external/lzma/CPP/7zip/Bundles/LzmaCon/
Dmakefile.gcc2 CXX = g++ -O2
78 $(CXX) -o $(PROG) $(LDFLAGS) $(OBJS) $(LIB2)
81 $(CXX) $(CFLAGS) LzmaAlone.cpp
84 $(CXX) $(CFLAGS) ../../UI/Common/Bench.cpp
87 $(CXX) $(CFLAGS) ../../UI/Console/BenchCon.cpp
90 $(CXX) $(CFLAGS) ../../UI/Console/ConsoleClose.cpp
93 $(CXX) $(CFLAGS) ../../Compress/LzmaDecoder.cpp
96 $(CXX) $(CFLAGS) ../../Compress/LzmaEncoder.cpp
99 $(CXX) $(CFLAGS) ../../Compress/LzmaRegister.cpp
102 $(CXX) $(CFLAGS) ../../Common/CreateCoder.cpp
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/
D.travis.yml14 - MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8"
24 - MATRIX_EVAL="CC=gcc-4.9 CXX=g++-4.9"
34 - MATRIX_EVAL="CC=gcc-5 CXX=g++-5"
44 - MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
54 - MATRIX_EVAL="CC=gcc-7 CXX=g++-7"
64 - MATRIX_EVAL="CC=gcc-8 CXX=g++-8"
74 - MATRIX_EVAL="CC=gcc-9 CXX=g++-9"
87 - MATRIX_EVAL="CC=clang-3.8 CXX=clang++-3.8"
99 - MATRIX_EVAL="CC=clang-3.9 CXX=clang++-3.9"
111 - MATRIX_EVAL="CC=clang-4.0 CXX=clang++-4.0"
[all …]
/external/elfutils/debuginfod/
DChangeLog4 * debuginfod.cxx (parse_opt): Add "--passive" flag. Complain
12 * debuginfod.cxx (groom): Rework into separate decision/action
30 * debuginfod.cxx (inc_metrics, add_metrics): Add two-tag variants.
43 * debuginfod.cxx (waitq::fronters): New field.
50 * debuginfod.cxx (libarchive_fdcache::lookup): Add endl after
64 * debuginfod.cxx (parse_opt): Turn the -d arg ":memory:" into
69 * debuginfod.cxx (options): Add ARGP_KEY_FORWARDED_TTL_LIMIT.
77 * debuginfod.cxx: Remove error.h include.
82 * debuginfod.cxx (handler_cb): Fix after_you unique_set key
95 * debuginfod.cxx (handle_buildid_f_match): remove X-DEBUGINFOD-FILE
[all …]
/external/google-fruit/extras/scripts/
Dpostsubmit-helper.sh12 export CXX=g++-4.9
17 export CXX=g++-5
22 export CXX=g++-6
27 export CXX=g++-7
32 export CXX=g++-8
37 export CXX=g++-9
42 export CXX=g++-10
47 export CXX=clang++-3.5
52 export CXX=clang++-3.6
57 export CXX=clang++-3.7
[all …]
/external/rust/cxx/
DREADME.md1 CXX &mdash; safe FFI between Rust and C++
4 …o/badge/github-dtolnay/cxx-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …ps://img.shields.io/crates/v/cxx.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
6cxx-66c2a5?style=for-the-badge&labelColor=555555&logoColor=white&logo=data:image/svg+xml;base64,PH…
7 …ds.io/github/workflow/status/dtolnay/cxx/CI/master?style=for-the-badge" height="20">](https://gith…
21 cxx = "1.0"
24 cxx-build = "1.0"
28 *[Release notes](https://github.com/dtolnay/cxx/releases)*
34 Please see **<https://cxx.rs>** for a tutorial, reference material, and example
43 this, CXX receives a complete picture of the boundary to perform static analyses
[all …]
/external/clang/test/Driver/
Dnacl-direct.c105 // RUN: | FileCheck --check-prefix=CHECK-ARM-CXX %s
106 // CHECK-ARM-CXX: {{.*}}clang{{.*}}" "-cc1"
107 // CHECK-ARM-CXX: "-resource-dir" "foo"
108 // CHECK-ARM-CXX: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}arm-nacl{{/|\\\\}}include{{/|\\\…
109 // CHECK-ARM-CXX: "-internal-isystem" "foo{{/|\\\\}}include"
110 // CHECK-ARM-CXX: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}arm-nacl{{/|\\\\}}usr{{/|\\\\}}i…
111 // CHECK-ARM-CXX: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}arm-nacl{{/|\\\\}}include"
112 // CHECK-ARM-CXX: "-lpthread"
116 // RUN: | FileCheck --check-prefix=CHECK-I686-CXX %s
117 // CHECK-I686-CXX: {{.*}}clang{{.*}}" "-cc1"
[all …]
Dsanitizer-ld.c82 // RUN: | FileCheck --check-prefix=CHECK-ASAN-LINUX-CXX %s
84 // CHECK-ASAN-LINUX-CXX: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
85 // CHECK-ASAN-LINUX-CXX-NOT: "-lc"
86 // CHECK-ASAN-LINUX-CXX: "-whole-archive" "{{.*}}libclang_rt.asan-i386.a" "-no-whole-archive"
87 // CHECK-ASAN-LINUX-CXX: "-whole-archive" "{{.*}}libclang_rt.asan_cxx-i386.a" "-no-whole-archive"
88 // CHECK-ASAN-LINUX-CXX-NOT: "--dynamic-list"
89 // CHECK-ASAN-LINUX-CXX: "-export-dynamic"
90 // CHECK-ASAN-LINUX-CXX: stdc++
91 // CHECK-ASAN-LINUX-CXX: "-lpthread"
92 // CHECK-ASAN-LINUX-CXX: "-lrt"
[all …]
/external/jsoncpp/.travis_scripts/
Dmeson_builder.sh21 if ${CXX+false}; then
22 echo "CXX not set in environment."
28 echo "USAGE: CXX=$(which clang++) BUILD_TYPE=[release|debug] LIB_TYPE=[static|shared] $0"
31 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
32 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
33 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=static DESTDIR=/tmp/meson_json_c…
34 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=static DESTDIR=/tmp/meson_json_c…
36 …echo " CXX=$(which g++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
37 …echo " CXX=$(which g++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
38 …echo " CXX=$(which g++) BUILD_TYPE=release LIB_TYPE=static DESTDIR=/tmp/meson_json_c…
[all …]
Dcmake_builder.sh29 if ${CXX+false}; then
30 echo "CXX not set in environment."
36 echo "USAGE: CXX=$(which clang++) BUILD_TYPE=[Release|Debug] LIB_TYPE=[static|shared] $0"
39 …echo " CXX=$(which clang++) BUILD_TYPE=Release LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c…
40 …echo " CXX=$(which clang++) BUILD_TYPE=Debug LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c…
41 …echo " CXX=$(which clang++) BUILD_TYPE=Release LIB_TYPE=static DESTDIR=/tmp/cmake_json_c…
42 …echo " CXX=$(which clang++) BUILD_TYPE=Debug LIB_TYPE=static DESTDIR=/tmp/cmake_json_c…
44 …echo " CXX=$(which g++) BUILD_TYPE=Release LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c…
45 …echo " CXX=$(which g++) BUILD_TYPE=Debug LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c…
46 …echo " CXX=$(which g++) BUILD_TYPE=Release LIB_TYPE=static DESTDIR=/tmp/cmake_json_c…
[all …]
/external/flac/.github/workflows/
Daction.yml28 cxx: g++
35 cxx: clang++
42 cxx: g++
49 cxx: clang++
56 cxx: clang++
63 cxx: clang++
70 cxx: g++
77 cxx: clang++
84 cxx: g++
91 cxx: clang++
[all …]
/external/rust/cxx/src/
Dextern_type.rs13 /// `ExternType` makes it possible for CXX to safely share a consistent Rust
14 /// type across multiple #\[cxx::bridge\] invocations that refer to a common
17 /// In the following snippet, two #\[cxx::bridge\] invocations in different
25 /// the same type in Rust. The CXX code generator will use an automatically
33 /// #[cxx::bridge(namespace = "example")]
44 /// #[cxx::bridge(namespace = "example")]
61 /// emitted by bindgen as the definition of a C++ type emitted by CXX.
76 /// use cxx::{type_id, ExternType};
80 /// type Kind = cxx::kind::Opaque;
83 /// #[cxx::bridge(namespace = "folly")]
[all …]
/external/libcxx/include/
DCMakeLists.txt201 add_custom_target(cxx-generated-config ALL
203 set(generated_config_deps cxx-generated-config)
221 COMMENT "Copying CXX header ${f}")
232 COMMENT "Copying CXX __config")
236 add_custom_target(cxx-headers ALL DEPENDS ${out_files} ${LIBCXX_CXX_ABI_HEADER_TARGET})
238 add_custom_target(cxx-headers)
240 set_target_properties(cxx-headers PROPERTIES FOLDER "Misc")
247 COMPONENT cxx-headers
258 COMPONENT cxx-headers)
262 add_custom_target(install-cxx-headers
[all …]
/external/eigen/bench/
Dbenchmark_suite2 CXX=${CXX-g++} # default value unless caller has defined CXX
4 $CXX -O3 -I .. -DNDEBUG benchmark.cpp -o benchmark && time ./benchmark >/dev/null
6 $CXX -O3 -I .. benchmark.cpp -o benchmark && time ./benchmark >/dev/null
8 $CXX -O3 -I .. -DEIGEN_DEFAULT_TO_ROW_MAJOR -DNDEBUG benchmark.cpp -o benchmark && time ./benchmark…
10 $CXX -O3 -I .. -DEIGEN_DEFAULT_TO_ROW_MAJOR benchmark.cpp -o benchmark && time ./benchmark >/dev/nu…
12 $CXX -O3 -I .. -DNDEBUG benchmarkX.cpp -o benchmarkX && time ./benchmarkX >/dev/null
14 $CXX -O3 -I .. benchmarkX.cpp -o benchmarkX && time ./benchmarkX >/dev/null
16 $CXX -O3 -I .. -DEIGEN_DEFAULT_TO_ROW_MAJOR -DNDEBUG benchmarkX.cpp -o benchmarkX && time ./benchma…
18 $CXX -O3 -I .. -DEIGEN_DEFAULT_TO_ROW_MAJOR benchmarkX.cpp -o benchmarkX && time ./benchmarkX >/dev…
/external/clang/test/Modules/Inputs/
Dmodule.map2 module cxx_library { header "cxx-header.h" requires cplusplus }
18 module cxx_irgen_top { header "cxx-irgen-top.h" }
19 module cxx_irgen_left { header "cxx-irgen-left.h" }
20 module cxx_irgen_right { header "cxx-irgen-right.h" }
201 header "cxx-many-overloads.h"
205 header "cxx-inline-namespace.h"
209 header "cxx-inline-namespace-b.h"
213 header "cxx-linkage-cache.h"
217 header "cxx-templates-common.h"
219 explicit module unimported { header "cxx-templates-unimported.h" }
[all …]
/external/openscreen/build/toolchain/linux/
DBUILD.gn9 assert(defined(invoker.cxx), "Caller must define cxx command.")
15 "cxx",
43 tool("cxx") {
45 …command = "$cxx -MMD -MF $depfile {{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} -c {{sourc…
47 description = "CXX {{output}}"
138 cxx = "$prefix/clang++"
139 ld = cxx
178 cxx = "g++"
179 ld = cxx
190 cxx = "g++"
[all …]

12345678910>>...80