HomeSort by relevance Sort by last modified time
    Searched refs:target (Results 226 - 250 of 6851) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CameraITS/tools/
config.py 16 import its.target
20 """Set the target exposure.
22 This program is just a wrapper around the its.target module, to allow the
26 python config.py - Measure the target exposure, and cache it.
27 python config.py EXP - Hard-code (and cache) the target exposure.
30 provided, just as with all the test scripts. The "target" argument is
47 ["reboot", "camera", "target", "device"]]
51 # Automatically measure target exposure.
52 its.target.clear_cached_target_exposure()
53 exposure = its.target.get_target_exposure(cam
    [all...]
  /external/catch2/include/internal/
catch_matchers_floating.h 23 WithinAbsMatcher(double target, double margin);
32 WithinUlpsMatcher(double target, int ulps, FloatingPointKind baseType);
46 Floating::WithinUlpsMatcher WithinULP(double target, int maxUlpDiff);
47 Floating::WithinUlpsMatcher WithinULP(float target, int maxUlpDiff);
48 Floating::WithinAbsMatcher WithinAbs(double target, double margin);
  /external/clang/test/OpenMP/
target_parallel_for_defaultmap_messages.cpp 9 #pragma omp target parallel for defaultmap // expected-error {{expected '(' after 'defaultmap'}}
11 #pragma omp target parallel for defaultmap ( // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
13 #pragma omp target parallel for defaultmap () // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}}
15 #pragma omp target parallel for 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'}}
17 #pragma omp target parallel for defaultmap (tofrom: // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}
19 #pragma omp target parallel for defaultmap (tofrom) // expected-warning {{missing ':' after defaultmap modifier - ignoring}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}
21 #pragma omp target parallel for defaultmap (tofrom scalar) // expected-warning {{missing ':' after defaultmap modifier - ignoring}}
23 #pragma omp target parallel for 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 '('}}
25 #pragma omp target parallel for defaultmap (scalar: // expected-error {{expected ')'}} expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected-note {{to match this '('}}
27 #pragma omp target parallel for defaultmap (tofrom, scalar // expected-error {{expected ')'}} expected-warning {{miss (…)
    [all...]
target_data_use_device_ptr_messages.cpp 16 #pragma omp target data map(i) use_device_ptr // expected-error {{expected '(' after 'use_device_ptr'}}
18 #pragma omp target data map(i) use_device_ptr( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected expression}}
20 #pragma omp target data map(i) use_device_ptr() // expected-error {{expected expression}}
22 #pragma omp target data map(i) use_device_ptr(alloc) // expected-error {{use of undeclared identifier 'alloc'}}
24 #pragma omp target data map(i) use_device_ptr(arg // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected pointer or reference to pointer in 'use_device_ptr' clause}}
26 #pragma omp target data map(i) use_device_ptr(i) // expected-error {{expected pointer or reference to pointer in 'use_device_ptr' clause}}
28 #pragma omp target data map(i) use_device_ptr(j) // expected-error {{expected pointer or reference to pointer in 'use_device_ptr' clause}}
30 #pragma omp target data map(i) use_device_ptr(k) // OK
32 #pragma omp target data map(i) use_device_ptr(z) // OK
34 #pragma omp target data map(i) use_device_ptr(aa) // expected-error{{expected pointer or reference to pointer in 'use (…)
    [all...]
target_exit_data_ast_print.cpp 14 #pragma omp target exit data map(from: i)
16 #pragma omp target exit data map(from: i) if (target exit data: j > 0)
18 #pragma omp target exit data map(from: i) if (b)
20 #pragma omp target exit data map(from: c)
22 #pragma omp target exit data map(from: c) if(b>e)
24 #pragma omp target exit data map(release: x[0:10], c)
26 #pragma omp target exit data map(delete: x[0:10])
28 #pragma omp target exit data map(always, delete: x[0:10])
30 #pragma omp target exit data map(from: c) map(release: d
    [all...]
target_parallel_for_simd_misc_messages.c 3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp target parallel for simd'}}
4 #pragma omp target parallel for simd
6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp target parallel for simd'}}
7 #pragma omp target parallel for simd foo
11 #pragma omp target parallel for simd
15 // expected-error@+2 {{statement after '#pragma omp target parallel for simd' must be a for loop}}
16 #pragma omp target parallel for simd
27 #pragma omp target parallel for simd
49 // expected-warning@+1 {{extra tokens at the end of '#pragma omp target parallel for simd' are ignored}}
50 #pragma omp target parallel for simd foo ba
    [all...]
declare_target_ast_print.cpp 9 #pragma omp declare target
10 // CHECK: #pragma omp declare target
13 #pragma omp end declare target
14 // CHECK: #pragma omp end declare target
17 #pragma omp declare target
18 // CHECK: #pragma omp declare target
21 #pragma omp end declare target
22 // CHECK: #pragma omp end declare target
26 #pragma omp declare target
27 // CHECK: #pragma omp declare target
    [all...]
target_parallel_ast_print.cpp 38 #pragma omp target parallel
40 #pragma omp target parallel default(none), private(argc,b) firstprivate(argv) shared (d) if (parallel:argc > 0) num_threads(C) proc_bind(master) reduction(+:c, arr1[argc]) reduction(max:e, arr[:C][0:10])
42 #pragma omp target parallel if (C) num_threads(s) proc_bind(close) reduction(^:e, f, arr[0:C][:argc]) reduction(&& : g)
44 #pragma omp target parallel if (target:argc > 0)
46 #pragma omp target parallel if (parallel:argc > 0)
48 #pragma omp target parallel if (C)
50 #pragma omp target parallel map(i)
52 #pragma omp target parallel map(a[0:10], i)
54 #pragma omp target parallel map(to: i) map(from: j
    [all...]
target_enter_data_ast_print.cpp 14 #pragma omp target enter data map(to: i)
16 #pragma omp target enter data map(to: i) if (target enter data: j > 0)
18 #pragma omp target enter data map(to: i) if (b)
20 #pragma omp target enter data map(to: c)
22 #pragma omp target enter data map(to: c) if(b>e)
24 #pragma omp target enter data map(alloc: x[0:10], c)
26 #pragma omp target enter data map(to: c) map(alloc: d)
28 #pragma omp target enter data map(always,alloc: e)
30 #pragma omp target enter data nowait map(to: i
    [all...]
target_parallel_for_simd_messages.cpp 9 #pragma omp target parallel for simd // expected-error {{unexpected OpenMP directive '#pragma omp target parallel for simd'}}
12 #pragma omp target parallel for simd { // expected-warning {{extra tokens at the end of '#pragma omp target parallel for simd' are ignored}}
15 #pragma omp target parallel for simd ( // expected-warning {{extra tokens at the end of '#pragma omp target parallel for simd' are ignored}}
18 #pragma omp target parallel for simd[ // expected-warning {{extra tokens at the end of '#pragma omp target parallel for simd' are ignored}}
21 #pragma omp target parallel for simd] // expected-warning {{extra tokens at the end of '#pragma omp target parallel for simd' are ignored}
    [all...]
target_enter_data_nowait_messages.cpp 6 #pragma omp nowait target enter data map(to: i) // expected-error {{expected an OpenMP directive}}
7 #pragma omp target nowait enter data map(to: i) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
8 #pragma omp target enter nowait data map(to: i) // expected-error {{expected an OpenMP directive}}
9 #pragma omp target enter data nowait() map(to: i) // expected-warning {{extra tokens at the end of '#pragma omp target enter data' are ignored}} expected-error {{expected at least one map clause for '#pragma omp target enter data'}}
10 #pragma omp target enter data map(to: i) nowait( // expected-warning {{extra tokens at the end of '#pragma omp target enter data' are ignored}}
11 #pragma omp target enter data map(to: i) nowait (argc)) // expected-warning {{extra tokens at the end of '#pragma omp (…)
    [all...]
target_exit_data_nowait_messages.cpp 6 #pragma omp nowait target exit data map(from: i) // expected-error {{expected an OpenMP directive}}
7 #pragma omp target nowait exit data map(from: i) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
8 #pragma omp target exit nowait data map(from: i) // expected-error {{expected an OpenMP directive}}
9 #pragma omp target exit data nowait() map(from: i) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}} expected-error {{expected at least one map clause for '#pragma omp target exit data'}}
10 #pragma omp target exit data map(from: i) nowait( // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}}
11 #pragma omp target exit data map(from: i) nowait (argc)) // expected-warning {{extra tokens at the end of '#pragma om (…)
    [all...]
  /external/junit/src/main/java/org/junit/internal/runners/statements/
RunBefores.java 11 private final Object target; field in class:RunBefores
15 public RunBefores(Statement next, List<FrameworkMethod> befores, Object target) {
18 this.target = target;
24 before.invokeExplosively(target);
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
BeanPropertySetter.java 19 private final Object target; field in class:BeanPropertySetter
25 * @param target The target on which the setter must be invoked
29 public BeanPropertySetter(final Object target, final Field propertyField, boolean reportNoSetterFound) {
31 this.target = target;
37 * @param target The target on which the setter must be invoked
40 public BeanPropertySetter(final Object target, final Field propertyField) {
41 this(target, propertyField, false)
    [all...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryModuleBuilder.java 217 public <T> FactoryModuleBuilder implement(Class<T> source, Class<? extends T> target) {
218 return implement(source, TypeLiteral.get(target));
222 public <T> FactoryModuleBuilder implement(Class<T> source, TypeLiteral<? extends T> target) {
223 return implement(TypeLiteral.get(source), target);
227 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, Class<? extends T> target) {
228 return implement(source, TypeLiteral.get(target));
233 TypeLiteral<T> source, TypeLiteral<? extends T> target) {
234 return implement(Key.get(source), target);
239 Class<T> source, Annotation annotation, Class<? extends T> target) {
240 return implement(source, annotation, TypeLiteral.get(target));
    [all...]
  /external/skia/src/compute/hs/gen/
target_cuda.c 104 hsg_target_cuda(struct hsg_target * const target,
113 fprintf(target->state->source,
118 fprintf(target->state->source,
123 fprintf(target->state->source,
130 target->state = malloc(sizeof(*target->state));
144 target->state->header = fopen("hs_cuda_config.h","wb");
145 target->state->source = fopen((config->type.words == 1) ?
152 hsg_copyright(target->state->header);
154 fprintf(target->state->header
    [all...]
target_opencl.c 94 "// target-specific config \n"
97 "// arch/target-specific macros\n"
120 hsg_target_opencl(struct hsg_target * const target,
129 fprintf(target->state->source,
134 fprintf(target->state->source,
139 fprintf(target->state->source,
146 target->state = malloc(sizeof(*target->state));
149 target->state->header = fopen("hs_config.h", "wb");
150 target->state->source = fopen("hs_kernels.cl","wb")
    [all...]
  /external/skqp/src/compute/hs/gen/
target_cuda.c 104 hsg_target_cuda(struct hsg_target * const target,
113 fprintf(target->state->source,
118 fprintf(target->state->source,
123 fprintf(target->state->source,
130 target->state = malloc(sizeof(*target->state));
144 target->state->header = fopen("hs_cuda_config.h","wb");
145 target->state->source = fopen((config->type.words == 1) ?
152 hsg_copyright(target->state->header);
154 fprintf(target->state->header
    [all...]
target_opencl.c 94 "// target-specific config \n"
97 "// arch/target-specific macros\n"
120 hsg_target_opencl(struct hsg_target * const target,
129 fprintf(target->state->source,
134 fprintf(target->state->source,
139 fprintf(target->state->source,
146 target->state = malloc(sizeof(*target->state));
149 target->state->header = fopen("hs_config.h", "wb");
150 target->state->source = fopen("hs_kernels.cl","wb")
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
BranchInstruction.java 39 protected int index; // Branch target relative to this instruction
45 protected InstructionHandle target; // Target object in instruction list field in class:BranchInstruction
64 * @param target instruction to branch to
66 protected BranchInstruction(final short opcode, final InstructionHandle target) {
68 setTarget(target);
81 throw new ClassGenException("Branch target offset too large for short: " + index);
88 * @param _target branch target
89 * @return the offset to `target' relative to this instruction
93 throw new ClassGenException("Target of " + super.toString(true
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/net/
base64.c 126 b64_ntop(src, srclength, target, targsize)
129 char *target;
150 target[datalength++] = Base64[output[0]];
151 target[datalength++] = Base64[output[1]];
152 target[datalength++] = Base64[output[2]];
153 target[datalength++] = Base64[output[3]];
169 target[datalength++] = Base64[output[0]];
170 target[datalength++] = Base64[output[1]];
172 target[datalength++] = Pad64;
174 target[datalength++] = Base64[output[2]]
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_function.pass.cpp 37 assert(f.template target<FunctionObject>());
38 assert(f.template target<FuncType>() == 0);
39 assert(f.template target<FuncType*>() == 0);
44 assert(f2.template target<FunctionObject>());
45 assert(f2.template target<FuncType>() == 0);
46 assert(f2.template target<FuncType*>() == 0);
58 FuncType* target = &FreeFunction; local
59 std::function<FuncType> f = target;
61 assert(f.template target<FuncType*>());
62 assert(*f.template target<FuncType*>() == target)
80 TargetType target = &MemFunClass::foo; local
    [all...]
  /development/testrunner/coverage/
coverage_targets.py 27 """Accessor for the code coverage target xml file
30 <target
37 >/target>
56 """Parse the coverage target data from from given file path, and add it to
76 target = coverage_target.CoverageTarget()
77 self._ParseCoverageTarget(target, target_element)
78 self._AddTarget(target)
80 def _AddTarget(self, target):
81 self._target_map[target.GetName()] = target
    [all...]
  /external/mesa3d/src/mesa/main/
arbprogram.h 34 _mesa_BindProgramARB(GLenum target, GLuint id);
48 _mesa_ProgramStringARB(GLenum target, GLenum format, GLsizei len,
53 _mesa_ProgramEnvParameter4dARB(GLenum target, GLuint index,
58 _mesa_ProgramEnvParameter4dvARB(GLenum target, GLuint index,
63 _mesa_ProgramEnvParameter4fARB(GLenum target, GLuint index,
68 _mesa_ProgramEnvParameter4fvARB(GLenum target, GLuint index,
73 _mesa_ProgramEnvParameters4fvEXT(GLenum target, GLuint index, GLsizei count,
78 _mesa_ProgramLocalParameter4dARB(GLenum target, GLuint index,
84 _mesa_ProgramLocalParameter4dvARB(GLenum target, GLuint index,
89 _mesa_ProgramLocalParameter4fARB(GLenum target, GLuint index
    [all...]
  /development/tools/repo_diff/service/repodiff/repositories/
common.go 8 func cleanedDiffTarget(target e.DiffTarget) e.DiffTarget {
11 URL: protocolStrippedURL(target.Upstream.URL),
12 Branch: target.Upstream.Branch,
15 URL: protocolStrippedURL(target.Downstream.URL),
16 Branch: target.Downstream.Branch,

Completed in 710 milliseconds

1 2 3 4 5 6 7 8 91011>>