Searched refs:target (Results 1 - 25 of 3625) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dp9-dynamic.cpp5 void target() throw(int) function
/external/clang/test/CodeGen/
H A Dattr-target-ppc.c3 long __attribute__((target("power8-vector,no-vsx"))) foo (void) { return 0; } // expected-error {{option '-mpower8-vector' cannot be specified with '-mno-vsx'}}
H A Dattr-target-x87-softfp.c1 // RUN: %clang_cc1 -triple x86_64-linux-gnu -target-cpu x86-64 -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK -check-prefix=HARD
2 // RUN: %clang_cc1 -msoft-float -triple x86_64-linux-gnu -target-cpu x86-64 -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK -check-prefix=SOFT
4 int __attribute__((target("x87"))) foo(int a) { return 4; }
5 int __attribute__((target("no-x87"))) bar(int a) { return 4; }
10 // CHECK: #0 = {{.*}}"target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87"
14 // CHECK: #1 = {{.*}}"target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,-x87"
H A Dattr-target-x86.c1 // RUN: %clang_cc1 -triple x86_64-linux-gnu -target-cpu x86-64 -emit-llvm %s -o - | FileCheck %s
5 int __attribute__((target("avx,sse4.2,arch=ivybridge"))) foo(int a) { return 4; }
7 int __attribute__((target("tune=sandybridge"))) walrus(int a) { return 4; }
8 int __attribute__((target("fpmath=387"))) koala(int a) { return 4; }
10 int __attribute__((target("no-sse2"))) echidna(int a) { return 4; }
12 int __attribute__((target("sse4"))) panda(int a) { return 4; }
16 int __attribute__((target("avx, sse4.2, arch= ivybridge"))) qux(int a) { return 4; }
17 int __attribute__((target("no-aes, arch=ivybridge"))) qax(int a) { return 4; }
19 int __attribute__((target("no-mmx"))) qq(int a) { return 40; }
21 int __attribute__((target("arc
[all...]
/external/clang/test/Sema/
H A Dattr-target.c3 int __attribute__((target("avx,sse4.2,arch=ivybridge"))) foo() { return 4; }
4 int __attribute__((target())) bar() { return 4; } //expected-error {{'target' attribute takes one argument}}
5 int __attribute__((target("tune=sandybridge"))) baz() { return 4; } //expected-warning {{Ignoring unsupported 'tune=' in the target attribute string}}
6 int __attribute__((target("fpmath=387"))) walrus() { return 4; } //expected-warning {{Ignoring unsupported 'fpmath=' in the target attribute string}}
/external/toolchain-utils/go/chromeos/
H A Dtarget_sh4 # Run a command on the target ChromeOS device.
8 target="$1"
11 ssh ${target} "$*"
/external/llvm/bindings/ocaml/backends/
H A Dbackend_ocaml.c23 * LLVMInitialize ## target ## AsmPrinter();
24 * LLVMInitialize ## target ## AsmParser();
25 * LLVMInitialize ## target ## Disassembler();
28 #define INITIALIZER1(target) \
29 CAMLprim value llvm_initialize_ ## target(value Unit) { \
30 LLVMInitialize ## target ## TargetInfo(); \
31 LLVMInitialize ## target ## Target(); \
32 LLVMInitialize ## target ## TargetMC(); \
36 #define INITIALIZER(target) INITIALIZER1(target)
[all...]
/external/clang/test/OpenMP/
H A Dtarget_if_messages.cpp14 #pragma omp target if // expected-error {{expected '(' after 'if'}}
16 #pragma omp target if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp target if () // expected-error {{expected expression}}
20 #pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
24 #pragma omp target if (argc > 0 ? argv[1] : argv[2])
26 #pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause}}
28 #pragma omp target i
[all...]
H A Dtarget_messages.cpp3 // CHECK: error: OpenMP target is invalid: 'aaa-bbb-ccc-ddd'
6 // CHECK-UNSUPPORTED-HOST-TARGET: error: The target '{{nvptx64-nvidia-cuda|nvptx-nvidia-cuda}}' is not a supported OpenMP host target.
11 #pragma omp target // expected-error {{unexpected OpenMP directive '#pragma omp target'}}
14 #pragma omp target { // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
16 #pragma omp target ( // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
18 #pragma omp target [ // expecte
[all...]
H A Dtarget_parallel_if_messages.cpp14 #pragma omp target parallel if // expected-error {{expected '(' after 'if'}}
16 #pragma omp target parallel if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp target parallel if () // expected-error {{expected expression}}
20 #pragma omp target parallel if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp target parallel if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target parallel' are ignored}}
24 #pragma omp target parallel if (argc > 0 ? argv[1] : argv[2])
26 #pragma omp target parallel if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target parallel' cannot contain more than one 'if' clause}}
28 #pragma omp target paralle
[all...]
H A Dtarget_update_if_messages.cpp15 #pragma omp target update to(n) if // expected-error {{expected '(' after 'if'}}
16 #pragma omp target update from(n) if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target update to(n) if () // expected-error {{expected expression}}
18 #pragma omp target update from(n) if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
19 #pragma omp target update to(n) if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
20 #pragma omp target update from(n) if (argc > 0 ? argv[1] : argv[2])
21 #pragma omp target update to(n) if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target update' cannot contain more than one 'if' clause}}
22 #pragma omp target updat
[all...]
H A Dtarget_parallel_default_messages.cpp6 #pragma omp target parallel default // expected-error {{expected '(' after 'default'}}
8 #pragma omp target parallel default ( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
10 #pragma omp target parallel default () // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
12 #pragma omp target parallel default (none // expected-error {{expected ')'}} expected-note {{to match this '('}}
14 #pragma omp target parallel default (shared), default(shared) // expected-error {{directive '#pragma omp target parallel' cannot contain more than one 'default' clause}}
16 #pragma omp target parallel default (x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
19 #pragma omp target parallel default(none)
22 #pragma omp target parallel default(none)
24 #pragma omp target paralle
[all...]
H A Dtarget_defaultmap_messages.cpp8 #pragma omp target defaultmap // expected-error {{expected '(' after 'defaultmap'}}
10 #pragma omp target defaultmap ( // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
12 #pragma omp target defaultmap () // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}}
14 #pragma omp target defaultmap (tofrom // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':' after defaultmap modifier - ignoring}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}
16 #pragma omp target defaultmap (tofrom: // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}
18 #pragma omp target defaultmap (tofrom) // expected-warning {{missing ':' after defaultmap modifier - ignoring}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}
20 #pragma omp target defaultmap (tofrom scalar) // expected-warning {{missing ':' after defaultmap modifier - ignoring}}
22 #pragma omp target defaultmap (tofrom, // expected-error {{expected ')'}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}} expected-warning {{missing ':' after defaultmap modifier - ignoring}} expected-note {{to match this '('}}
24 #pragma omp target defaultmap (scalar: // expected-error {{expected ')'}} expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected-note {{to match this '('}}
26 #pragma omp target defaultma
[all...]
H A Dtarget_device_messages.cpp13 #pragma omp target device // expected-error {{expected '(' after 'device'}}
15 #pragma omp target device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target device () // expected-error {{expected expression}}
19 #pragma omp target device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
21 #pragma omp target device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
23 #pragma omp target device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
25 #pragma omp target device (argc + argc)
27 #pragma omp target device (argc), device (argc+1) // expected-error {{directive '#pragma omp target' canno
[all...]
H A Dtarget_parallel_device_messages.cpp13 #pragma omp target parallel device // expected-error {{expected '(' after 'device'}}
15 #pragma omp target parallel device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target parallel device () // expected-error {{expected expression}}
19 #pragma omp target parallel device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
21 #pragma omp target parallel device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target parallel' are ignored}}
23 #pragma omp target parallel device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
25 #pragma omp target parallel device (argc + argc)
27 #pragma omp target parallel device (argc), device (argc+1) // expected-error {{directive '#pragma omp target paralle
[all...]
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debt_redirect.h6 int target; member in struct:ebt_redirect_info
/external/vogar/test/vogar/target/junit4/
H A DNoMethodTest.java17 package vogar.target.junit4;
/external/valgrind/none/tests/s390x/
H A Dex.c4 char target[] ="XXXXXXXXXXXXXXXX"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
13 printf("before: target = |%s|\n", target);
21 : : "a" (target), "a" (buffer): "1", "2", "memory");
23 printf("after: target = |%s|\n", target);
26 printf("------- EX 0,... has no effect (writes out target)\n");
27 printf(" target = |");
31 "lgr 3, %0\n\t" // target
[all...]
H A Dexrl.c4 char target[] ="XXXXXXXXXXXXXXXX"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
13 printf("before: target = |%s|\n", target);
20 : : "a" (target), "a" (buffer) : "1", "2", "memory");
22 printf("after: target = |%s|\n", target);
25 printf("------- EXRL 0,... has no effect (writes out target)\n");
26 printf(" target = |");
29 "lgr 3, %0\n\t" // target
[all...]
/external/toolchain-utils/go/android/
H A Dtarget_sh4 # Run a command on the target Android device.
8 target="$1"
12 adb_${target} shell "$*; echo -n \$? > ${exitcode}" | sed -e 's:\r$::' -u
13 exit $(adb_${target} shell "cat ${exitcode}")
/external/toolchain-utils/go/
H A Dpush_goroot6 # Usage: push_goroot <target>...
15 for target in "$@"
17 echo -n "pushing to ${target} ... "
18 target_sh ${target} "rm -rf ${goroot}"
19 target_sh ${target} "mkdir -p ${goroot}/pkg"
21 pkgdir="$(go_${target} env GOOS)_$(go_${target} env GOARCH)"
24 target_cp "pkg/${pkgdir}_shared" ${target}:${goroot}/pkg
25 target_sh ${target} "ln -s ${pkgdir}_shared ${goroot}/pkg/${pkgdir}"
27 target_cp "pkg/${pkgdir}" ${target}
[all...]
/external/sfntly/cpp/src/test/
H A Dserialization_test.h24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
/external/jsoncpp/test/
H A Dgenerate_expected.py6 target = os.path.splitext(path)[0] + '.expected' variable
7 if os.path.exists( target ):
8 print('skipping:', target)
10 print('creating:', target)
11 file(target,'wt').write(text)
/external/libcxx/test/std/re/re.const/re.matchflag/
H A Dmatch_not_bol.pass.cpp25 std::string target = "foo"; local
27 assert( std::regex_match(target, re));
28 assert(!std::regex_match(target, re, std::regex_constants::match_not_bol));
32 std::string target = "foo"; local
34 assert( std::regex_match(target, re));
35 assert( std::regex_match(target, re, std::regex_constants::match_not_bol));
39 std::string target = "fooby"; local
41 assert( std::regex_search(target, re));
42 assert(!std::regex_search(target, re, std::regex_constants::match_not_bol));
46 std::string target local
[all...]
H A Dmatch_not_eol.pass.cpp25 std::string target = "foo"; local
27 assert( std::regex_match(target, re));
28 assert(!std::regex_match(target, re, std::regex_constants::match_not_eol));
32 std::string target = "foo"; local
34 assert( std::regex_match(target, re));
35 assert( std::regex_match(target, re, std::regex_constants::match_not_eol));
39 std::string target = "refoo"; local
41 assert( std::regex_search(target, re));
42 assert(!std::regex_search(target, re, std::regex_constants::match_not_eol));
46 std::string target local
[all...]

Completed in 556 milliseconds

1234567891011>>