Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 2153) sorted by relevance

12345678910>>...87

/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/
H A DTestLinuxCore.py164 values = {}
293 values = {}
312 values["s2"] = "0"
313 values["s3"] = "0"
350 values = {}
370 values["s2"] = "0"
371 values["s3"] = "0"
436 values = {}
447 values["s2"] = "0"
451 values["d2"] = "0"
[all …]
H A Dfpr_sse.cpp18 unsigned int values[8] = { in _start() local
32 ::"m"(values[0]), in _start()
33 "m"(values[1]), "m"(values[2]), "m"(values[3]), "m"(values[4]), in _start()
34 "m"(values[5]), "m"(values[6]), "m"(values[7])); in _start()
/llvm-project-15.0.7/openmp/runtime/tools/lib/
H A DUname.pm77 my %values;
83 @values{ @posix } = POSIX::uname();
94 $values{ fqdn } =
137 $values{ processor } = $values{ machine };
166 } elsif ( $values{ machine } eq "x86" or $values{ machine } eq "i386" ) {
167 $values{ hardware_platform } =
200 } elsif ( $values{ machine } eq "x86_64" or $values{ machine } eq "amd64" ) {
393 $values{ host_name } =
403 $values{ domain_name } =
442 $values{ $name } = $value;
[all …]
/llvm-project-15.0.7/libc/test/src/__support/CPP/
H A Darrayref_test.cpp32 value_type values[] = {1, 2}; in TYPED_TEST() local
33 ParamType arrayref(values, 2); in TYPED_TEST()
44 value_type values[] = {1, 2}; in TYPED_TEST() local
45 ParamType arrayref(&values[0], &values[2]); in TYPED_TEST()
57 ParamType arrayref(values); in TYPED_TEST()
69 ParamType arrayref(values); in TYPED_TEST()
80 ParamType initial(values); in TYPED_TEST()
93 ParamType arrayref(values); in TYPED_TEST()
112 ParamType arrayref(values); in TYPED_TEST()
148 ParamType arrayref(values); in TYPED_TEST()
[all …]
/llvm-project-15.0.7/polly/lib/External/isl/imath/
H A Dimtimer.c43 void release_values(mp_int values, int nt);
156 void release_values(mp_int values, int nt) { in release_values() argument
161 free(values); in release_values()
166 mp_int values; in get_multiply_time() local
170 randomize_values(values, 2, prec); in get_multiply_time()
173 for (i = 0; i < nt; ++i) mp_int_mul(values, values + 1, values + 2); in get_multiply_time()
176 release_values(values, 3); in get_multiply_time()
183 mp_int values; in get_exptmod_time() local
187 randomize_values(values, 3, prec); in get_exptmod_time()
191 mp_int_exptmod(values, values + 1, values + 2, values + 3); in get_exptmod_time()
[all …]
/llvm-project-15.0.7/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp245 void test_unexpanded_exprs(Types ...values) { in test_unexpanded_exprs() argument
251 values.f(); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
253 x.f(values); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
281 throw values; // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
300 …(void)new (values) X(values); // expected-error{{expression contains unexpanded parameter pack 'va… in test_unexpanded_exprs()
304 delete values; // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
309 values.~T(); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
332 values.foo(); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
333 t.foo(values); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
344 x.f(values); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
[all …]
H A Dp5.mm4 void f(Types ...values) {
5 …for (id x in values) { } // expected-error {{expression contains unexpanded parameter pack 'values
6 …@synchronized(values) { // expected-error {{expression contains unexpanded parameter pack 'values'…
7 @throw values; // expected-error {{expression contains unexpanded parameter pack 'values'}}
/llvm-project-15.0.7/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/
H A Duninitialized_move.pass.cpp67 std::uninitialized_move(values, values + N, It(p)); in test_ctor_throws()
72 assert(values[0] == 0); in test_ctor_throws()
73 assert(values[1] == 0); in test_ctor_throws()
74 assert(values[2] == 0); in test_ctor_throws()
75 assert(values[3] == 4); in test_ctor_throws()
76 assert(values[4] == 5); in test_ctor_throws()
88 auto ret = std::uninitialized_move(It(values), It(values + 1), FIt(p)); in test_counted()
93 assert(values[0] == 0); in test_counted()
94 ret = std::uninitialized_move(It(values+1), It(values+N), FIt(p+1)); in test_counted()
102 assert(values[1] == 0); in test_counted()
[all …]
H A Duninitialized_move_n.pass.cpp62 int values[N] = {1, 2, 3, 4, 5}; in test_ctor_throws() local
72 assert(values[0] == 0); in test_ctor_throws()
73 assert(values[1] == 0); in test_ctor_throws()
74 assert(values[2] == 0); in test_ctor_throws()
75 assert(values[3] == 4); in test_ctor_throws()
76 assert(values[4] == 5); in test_ctor_throws()
94 assert(values[0] == 0); in test_counted()
104 assert(values[1] == 0); in test_counted()
105 assert(values[2] == 0); in test_counted()
106 assert(values[3] == 0); in test_counted()
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Dregion-store.c27 int values[length]; in concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment() local
28 values[i] = 4; in concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment()
29 return values[0]; // no-warning in concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment()
43 void testConstraintOnRegionOffset(int *values, int length, int i){ in testConstraintOnRegionOffset() argument
44 if (values[1] == 4) { in testConstraintOnRegionOffset()
45 values[i] = 5; in testConstraintOnRegionOffset()
46 clang_analyzer_eval(values[1] == 4);// expected-warning {{UNKNOWN}} in testConstraintOnRegionOffset()
50 int initArray(int *values);
52 if (values[0] == 4) { in testConstraintOnRegionOffsetStack()
53 initArray(values); in testConstraintOnRegionOffsetStack()
[all …]
H A Dctor.mm327 int values[3];
352 int values[2][3];
377 IntWrapper values[3];
432 a.values[0].x = 1;
433 a.values[1].x = 2;
434 a.values[2].x = 3;
460 a.values[0][0].x = 0;
461 a.values[0][1].x = 0;
495 a.values[0].x = 1;
496 a.values[1].x = 2;
[all …]
/llvm-project-15.0.7/llvm/utils/gn/secondary/llvm/include/llvm/Config/
H A DBUILD.gn59 values = []
79 values = [
139 values += [
147 values += [
157 values += [
169 values += [
183 values += [
189 values += [
197 values += [
286 values += [
[all …]
/llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/include/lldb/Host/
H A DBUILD.gn11 values = [
12 # FIXME: Actual values for everything.
35 values += [ "LLDB_ENABLE_LIBEDIT=1" ]
37 values += [ "LLDB_ENABLE_LIBEDIT=" ]
43 values += [ "LLDB_ENABLE_LIBXML2=" ]
47 values += [
52 values += [
59 values += [ "HAVE_SYS_EVENT_H=" ]
61 values += [ "HAVE_SYS_EVENT_H=1" ]
65 values += [ "HAVE_PPOLL=1" ]
[all …]
/llvm-project-15.0.7/mlir/lib/IR/
H A DBuilders.cpp106 values); in getBoolVectorAttr()
112 values); in getI32VectorAttr()
118 values); in getI64VectorAttr()
124 values); in getIndexVectorAttr()
131 values); in getI32TensorAttr()
138 values); in getI64TensorAttr()
145 values); in getIndexTensorAttr()
209 ArrayAttr Builder::getBoolArrayAttr(ArrayRef<bool> values) { in getBoolArrayAttr() argument
234 ArrayAttr Builder::getF32ArrayAttr(ArrayRef<float> values) { in getF32ArrayAttr() argument
240 ArrayAttr Builder::getF64ArrayAttr(ArrayRef<double> values) { in getF64ArrayAttr() argument
[all …]
H A DTypeRange.cpp22 TypeRange::TypeRange(OperandRange values) in TypeRange() argument
23 : TypeRange(values.begin().getBase(), values.size()) {} in TypeRange()
24 TypeRange::TypeRange(ResultRange values) in TypeRange() argument
25 : TypeRange(values.getBase(), values.size()) {} in TypeRange()
26 TypeRange::TypeRange(ValueRange values) : TypeRange(OwnerT(), values.size()) { in TypeRange() argument
29 ValueRange::OwnerT owner = values.begin().getBase(); in TypeRange()
/llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp23.cpp14 void unexpanded_capture(Ts ...values) { in unexpanded_capture() argument
15 …auto unexp = [values] {}; // expected-error{{initializer contains unexpanded parameter pack 'value… in unexpanded_capture()
19 void implicit_capture(Ts ...values) { in implicit_capture() argument
20 auto implicit = [&] { print(values...); }; in implicit_capture()
25 void do_print(Ts... values) { in do_print() argument
26 auto bycopy = [values...]() { print(values...); }; in do_print()
28 auto byref = [&values...]() { print(values...); }; in do_print()
31 auto bycopy2 = [=]() { print(values...); }; in do_print()
33 auto byref2 = [&]() { print(values...); }; in do_print()
/llvm-project-15.0.7/llvm/utils/gn/secondary/clang/include/clang/Config/
H A DBUILD.gn10 values = [
40 values += [ "CLANG_ENABLE_ARCMT=1" ]
42 values += [ "CLANG_ENABLE_ARCMT=" ]
46 values += [ "CLANG_ENABLE_STATIC_ANALYZER=1" ]
48 values += [ "CLANG_ENABLE_STATIC_ANALYZER=" ]
52 values += [ "CLANG_HAVE_RLIMITS=1" ]
54 values += [ "CLANG_HAVE_RLIMITS=" ]
58 values += [ "CLANG_HAVE_LIBXML=1" ]
60 values += [ "CLANG_HAVE_LIBXML=" ]
67 values += [ "HOST_LINK_VERSION=305" ]
[all …]
/llvm-project-15.0.7/clang/test/SemaOpenCL/
H A Dprintf-format-strings.cl34 …ttribute__((ext_vector_type(4)))' but the argument has type 'float4' (vector of 4 'float' values)}}
35 …_attribute__((ext_vector_type(4)))' but the argument has type 'half4' (vector of 4 'half' values)}}
38 …ttribute__((ext_vector_type(4)))' but the argument has type 'float4' (vector of 4 'float' values)}}
39 …_attribute__((ext_vector_type(4)))' but the argument has type 'half4' (vector of 4 'half' values)}}
42 …ttribute__((ext_vector_type(4)))' but the argument has type 'float4' (vector of 4 'float' values)}}
43 …_attribute__((ext_vector_type(4)))' but the argument has type 'half4' (vector of 4 'half' values)}}
47 …_attribute__((ext_vector_type(4)))' but the argument has type 'half4' (vector of 4 'half' values)}}
51 …_attribute__((ext_vector_type(4)))' but the argument has type 'half4' (vector of 4 'half' values)}}
90 …ttribute__((ext_vector_type(4)))' but the argument has type 'float4' (vector of 4 'float' values)}}
93 …ttribute__((ext_vector_type(4)))' but the argument has type 'float4' (vector of 4 'float' values)}}
[all …]
/llvm-project-15.0.7/llvm/utils/gn/secondary/compiler-rt/test/
H A DBUILD.gn20 values = [
78 values += [ "HOST_ARCH=x86_64" ]
80 values += [ "HOST_ARCH=aarch64" ]
86 values += [ "HOST_OS=Darwin" ]
88 values += [ "HOST_OS=Linux" ]
90 values += [ "HOST_OS=Windows" ]
96 values += [ "CAN_SYMBOLIZE=1" ]
98 values += [ "CAN_SYMBOLIZE=0" ]
102 values += [ "ANDROID_PYBOOL=True" ]
108 values += [ "LLVM_ENABLE_ZLIB=1" ]
[all …]
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbplatform.py40 def translate(values): argument
42 if isinstance(values, six.integer_types):
44 return __name_lookup[values]
45 elif isinstance(values, six.string_types):
47 return [values]
48 elif hasattr(values, "__iter__"):
50 result = [translate(x) for x in values]
53 return values
/llvm-project-15.0.7/llvm/test/Analysis/PhiValues/
H A Dbasic.ll17 ; CHECK: PHI %phi1 has values:
21 ; CHECK: PHI %phi2 has values:
40 ; CHECK: PHI %phi1 has values:
53 ; CHECK: PHI %phi2 has values:
67 ; CHECK: PHI %phi has values:
79 ; CHECK: PHI %phi has values:
94 ; CHECK: PHI %phi1 has values:
107 ; CHECK: PHI %phi2 has values:
114 ; CHECK: PHI %phi3 has values:
128 ; CHECK: PHI %phi1 has values:
[all …]
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DValueRange.h134 void append(ValueRange values);
137 void assign(ValueRange values);
269 replaceAllUsesWith(ValuesT &&values) { in replaceAllUsesWith() argument
270 assert(static_cast<size_t>(std::distance(values.begin(), values.end())) == in replaceAllUsesWith()
274 for (auto it : llvm::zip(*this, values)) in replaceAllUsesWith()
367 : ValueRange(OperandRange(values)) {} in ValueRange()
369 : ValueRange(ResultRange(values)) {} in ValueRange()
370 ValueRange(ArrayRef<BlockArgument> values) in ValueRange() argument
371 : ValueRange(ArrayRef<Value>(values.data(), values.size())) {} in ValueRange()
373 ValueRange(OperandRange values);
[all …]
/llvm-project-15.0.7/flang/include/flang/Lower/
H A DMangler.h72 reinterpret_cast<const uint8_t *>(x.values().data()), in mangleArrayLiteral()
73 x.values().size() * sizeof(x.values()[0]), x.shape(), TC, KIND); in mangleArrayLiteral()
81 reinterpret_cast<const uint8_t *>(x.values().data()), in mangleArrayLiteral()
82 x.values().size() * sizeof(x.values()[0]), x.shape(), in mangleArrayLiteral()
89 reinterpret_cast<const uint8_t *>(x.values().data()), in mangleArrayLiteral()
90 x.values().size() * sizeof(x.values()[0]), x.shape(), in mangleArrayLiteral()
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/
H A Dtest_tensor_unary_ops.py20 indices, values = B.get_coordinates_and_values() variable
22 passed += np.allclose(values, [10.3, 11.3, 40.7, 41.7])
25 indices, values = B.get_coordinates_and_values() variable
27 passed += np.allclose(values, [11, -11, 41, -41])
30 indices, values = B.get_coordinates_and_values() variable
32 passed += np.allclose(values, [10, -12, 40, -42])
35 indices, values = B.get_coordinates_and_values() variable
37 passed += np.allclose(values, [-10.3, 11.3, -40.7, 41.7])
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/Analysis/
H A DAffineStructures.h52 values.reserve(numReservedCols); in IntegerPolyhedron()
403 return values[pos].value(); in getValue()
409 return values[pos].has_value(); in hasValue()
421 values->clear(); in getValues()
422 values->reserve(end - start); in getValues()
424 values->push_back(getValue(i)); in getValues()
431 return {values.data(), values.size()}; in getMaybeValues()
444 values[pos] = val; in setValue()
452 assert(values.size() == end - start && in setValues()
455 setValue(i, values[i - start]); in setValues()
[all …]

12345678910>>...87