Home
last modified time | relevance | path

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

12345678910>>...127

/external/lzma/CPP/7zip/
D7zip_gcc.mak242 # ifeq ($(CXX), $(CROSS_COMPILE)g++)
261 $(CXX) -o $(PROGPATH) $(LFLAGS_ALL)
264 $(CXX) -static -o $(PROGPATH_STATIC) $(LFLAGS_ALL)
284 $(CXX) $(CXXFLAGS) $<
288 $(CXX) $(CXXFLAGS) $<
290 $(CXX) $(CXXFLAGS) $<
293 $(CXX) $(CXXFLAGS) $<
296 $(CXX) $(CXXFLAGS) $<
298 $(CXX) $(CXXFLAGS) $<
300 $(CXX) $(CXXFLAGS) $<
[all …]
/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/cronet/stable/third_party/icu/source/
DrunConfigureICU62 TRU64V5.1/CXX Use the Compaq cxx compiler on Tru64 (OSF)
63 zOS Use the IBM cxx compiler on z/OS (os/390)
64 zOSV1R2 Use the IBM cxx compiler for z/OS 1.2
143 CXX=`which xlclang++`; export CXX
144 if [ ! -x $CXX ]; then
154 CXX=g++; export CXX
165 CXX=`which ibm-clang++_r`; export CXX
166 if [ ! -x $CXX ]; then
176 CXX=`which CC`; export CXX
184 CXX=g++; export CXX
[all …]
/external/cronet/tot/third_party/icu/source/
DrunConfigureICU62 TRU64V5.1/CXX Use the Compaq cxx compiler on Tru64 (OSF)
63 zOS Use the IBM cxx compiler on z/OS (os/390)
64 zOSV1R2 Use the IBM cxx compiler for z/OS 1.2
143 CXX=`which xlclang++`; export CXX
144 if [ ! -x $CXX ]; then
154 CXX=g++; export CXX
165 CXX=`which ibm-clang++_r`; export CXX
166 if [ ! -x $CXX ]; then
176 CXX=`which CC`; export CXX
184 CXX=g++; export CXX
[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/
DrunConfigureICU63 TRU64V5.1/CXX Use the Compaq cxx compiler on Tru64 (OSF)
143 CXX=`which xlclang++`; export CXX
144 if [ ! -x $CXX ]; then
154 CXX=g++; export CXX
165 CXX=`which ibm-clang++_r`; export CXX
166 if [ ! -x $CXX ]; then
176 CXX=`which CC`; export CXX
184 CXX=g++; export CXX
192 CXX=`which CC`; export CXX
201 CXX=aCC; export CXX
[all …]
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/cxxbridge-macro-1.0.130/src/
Dexpand.rs190 unsafe impl #generics ::cxx::ExternType for #ident #generics { in expand_struct()
194 type Kind = ::cxx::kind::Trivial; in expand_struct()
218 ::cxx::private::prevent_unwind(__fn, || *lhs == *rhs) in expand_struct_operators()
231 ::cxx::private::prevent_unwind(__fn, || *lhs != *rhs) in expand_struct_operators()
245 ::cxx::private::prevent_unwind(__fn, || *lhs < *rhs) in expand_struct_operators()
257 ::cxx::private::prevent_unwind(__fn, || *lhs <= *rhs) in expand_struct_operators()
270 ::cxx::private::prevent_unwind(__fn, || *lhs > *rhs) in expand_struct_operators()
282 ::cxx::private::prevent_unwind(__fn, || *lhs >= *rhs) in expand_struct_operators()
297 ::cxx::private::prevent_unwind(__fn, || ::cxx::private::hash(this)) in expand_struct_operators()
366 unsafe impl ::cxx::ExternType for #ident { in expand_enum()
[all …]
Dderive.rs21 Trait::Eq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)), in expand_struct()
23 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_struct()
25 Trait::PartialEq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)), in expand_struct()
63 traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)); in expand_enum()
67 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_enum()
70 traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)); in expand_enum()
89 traits.push(quote!(::cxx::core::cmp::Eq)); in expand_enum()
92 traits.push(quote!(::cxx::core::cmp::PartialEq)); in expand_enum()
105 impl #generics ::cxx::core::marker::Copy for #ident #generics {} in struct_copy()
124 #(#fields: ::cxx::core::clone::Clone::clone(#values),)* in struct_clone()
[all …]
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/cxxbridge-macro-1.0.130/src/
Dexpand.rs190 unsafe impl #generics ::cxx::ExternType for #ident #generics { in expand_struct()
194 type Kind = ::cxx::kind::Trivial; in expand_struct()
218 ::cxx::private::prevent_unwind(__fn, || *lhs == *rhs) in expand_struct_operators()
231 ::cxx::private::prevent_unwind(__fn, || *lhs != *rhs) in expand_struct_operators()
245 ::cxx::private::prevent_unwind(__fn, || *lhs < *rhs) in expand_struct_operators()
257 ::cxx::private::prevent_unwind(__fn, || *lhs <= *rhs) in expand_struct_operators()
270 ::cxx::private::prevent_unwind(__fn, || *lhs > *rhs) in expand_struct_operators()
282 ::cxx::private::prevent_unwind(__fn, || *lhs >= *rhs) in expand_struct_operators()
297 ::cxx::private::prevent_unwind(__fn, || ::cxx::private::hash(this)) in expand_struct_operators()
366 unsafe impl ::cxx::ExternType for #ident { in expand_enum()
[all …]
Dderive.rs21 Trait::Eq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)), in expand_struct()
23 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_struct()
25 Trait::PartialEq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)), in expand_struct()
63 traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)); in expand_enum()
67 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_enum()
70 traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)); in expand_enum()
89 traits.push(quote!(::cxx::core::cmp::Eq)); in expand_enum()
92 traits.push(quote!(::cxx::core::cmp::PartialEq)); in expand_enum()
105 impl #generics ::cxx::core::marker::Copy for #ident #generics {} in struct_copy()
124 #(#fields: ::cxx::core::clone::Clone::clone(#values),)* in struct_clone()
[all …]
/external/rust/cxx/macro/src/
Dexpand.rs191 unsafe impl #generics ::cxx::ExternType for #ident #generics { in expand_struct()
195 type Kind = ::cxx::kind::Trivial; in expand_struct()
219 ::cxx::private::prevent_unwind(__fn, || *lhs == *rhs) in expand_struct_operators()
232 ::cxx::private::prevent_unwind(__fn, || *lhs != *rhs) in expand_struct_operators()
246 ::cxx::private::prevent_unwind(__fn, || *lhs < *rhs) in expand_struct_operators()
258 ::cxx::private::prevent_unwind(__fn, || *lhs <= *rhs) in expand_struct_operators()
271 ::cxx::private::prevent_unwind(__fn, || *lhs > *rhs) in expand_struct_operators()
283 ::cxx::private::prevent_unwind(__fn, || *lhs >= *rhs) in expand_struct_operators()
298 ::cxx::private::prevent_unwind(__fn, || ::cxx::private::hash(this)) in expand_struct_operators()
367 unsafe impl ::cxx::ExternType for #ident { in expand_enum()
[all …]
Dderive.rs21 Trait::Eq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)), in expand_struct()
23 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_struct()
25 Trait::PartialEq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)), in expand_struct()
63 traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)); in expand_enum()
67 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_enum()
70 traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)); in expand_enum()
89 traits.push(quote!(::cxx::core::cmp::Eq)); in expand_enum()
92 traits.push(quote!(::cxx::core::cmp::PartialEq)); in expand_enum()
105 impl #generics ::cxx::core::marker::Copy for #ident #generics {} in struct_copy()
124 #(#fields: ::cxx::core::clone::Clone::clone(#values),)* in struct_clone()
[all …]
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/cxx-1.0.130/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/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/cronet/stable/third_party/rust/chromium_crates_io/vendor/cxx-1.0.130/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/pytorch/aten/src/ATen/native/quantized/cpu/qnnpack/
Dconfigure.py194 build.unittest("hgemm-test", build.cxx("hgemm.cc"))
195 build.unittest("q8avgpool-test", build.cxx("q8avgpool.cc"))
196 build.unittest("q8conv-test", build.cxx("q8conv.cc"))
197 build.unittest("q8dwconv-test", build.cxx("q8dwconv.cc"))
198 build.unittest("q8gavgpool-test", build.cxx("q8gavgpool.cc"))
199 build.unittest("q8gemm-test", build.cxx("q8gemm.cc"))
200 build.unittest("q8vadd-test", build.cxx("q8vadd.cc"))
201 build.unittest("sconv-test", build.cxx("sconv.cc"))
202 build.unittest("sgemm-test", build.cxx("sgemm.cc"))
203 build.unittest("u8clamp-test", build.cxx("u8clamp.cc"))
[all …]
/external/sdv/vsomeip/third_party/boost/predef/
Dazure-pipelines.yml35 …GCC 10 (GNU): { CXX: g++-10, PACKAGES: g++-10, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc, B2_ARGS: 'c…
36 …GCC 10 (ISO): { CXX: g++-10, PACKAGES: g++-10, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc, B2_ARGS: 'c…
37 GCC 10: { CXX: g++-10, PACKAGES: g++-10, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
38 GCC 9: { CXX: g++-9, PACKAGES: g++-9, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
39 GCC 8: { CXX: g++-8, PACKAGES: g++-8, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
40 GCC 7: { CXX: g++-7, PACKAGES: g++-7, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
41 GCC 6: { CXX: g++-6, PACKAGES: g++-6, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
42 GCC 5: { CXX: g++-5, PACKAGES: g++-5, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
43 GCC 4.9: { CXX: g++-4.9, PACKAGES: g++-4.9, VM_IMAGE: 'ubuntu-16.04', TOOLSET: gcc }
44 GCC 4.8: { CXX: g++-4.8, PACKAGES: g++-4.8, VM_IMAGE: 'ubuntu-16.04', TOOLSET: gcc }
[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/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=g++-11
52 export CXX=g++-12
57 export CXX=g++-13
[all …]
/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/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/cronet/tot/third_party/rust/chromium_crates_io/patches/cxx/
D0003-Change-cxx-header-include-to-be-an-absolute-path.patch4 Subject: [PATCH 3/4] Absolute path for cxx header
8 third_party/rust/chromium_crates_io/vendor/cxx-1.0.110/src/cxx.cc | 2 +-
11 …y/rust/chromium_crates_io/vendor/cxx-1.0.110/src/cxx.cc b/third_party/rust/chromium_crates_io/vend…
13 --- a/third_party/rust/chromium_crates_io/vendor/cxx-1.0.110/src/cxx.cc
14 +++ b/third_party/rust/chromium_crates_io/vendor/cxx-1.0.110/src/cxx.cc
16 -#include "../include/cxx.h"
17 +#include "third_party/rust/cxx/v1/cxx.h"

12345678910>>...127