Home
last modified time | relevance | path

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

12345678910>>...113

/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/
H A DTestLinuxCore.py196 values = {}
197 values["fctrl"] = "0x037f"
198 values["fstat"] = "0x0000"
199 values["ftag"] = "0x00ff"
200 values["fop"] = "0x0000"
201 values["fiseg"] = "0x00000000"
202 values["fioff"] = "0x0040011e"
203 values["foseg"] = "0x00000000"
204 values["fooff"] = "0x00000000"
205 values["mxcs
[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/llvm/utils/gn/secondary/llvm/include/llvm/Config/
H A DBUILD.gn61 values = []
64 values += [ "LLVM_ENABLE_ABI_BREAKING_CHECKS=1" ]
66 values += [ "LLVM_ENABLE_ABI_BREAKING_CHECKS=" ]
70 values += [ "LLVM_ENABLE_REVERSE_ITERATION=1" ]
72 values += [ "LLVM_ENABLE_REVERSE_ITERATION=" ]
81 values = [
138 values += [
144 values += [
152 values += [
163 values
[all...]
/llvm-project/polly/lib/External/isl/imath/
H A Dimtimer.c42 void randomize_values(mp_int values, int nt, int prec);
43 void release_values(mp_int values, int nt);
150 void randomize_values(mp_int values, int nt, int prec) { in randomize_values() argument
153 for (i = 0; i < nt; ++i) mp_int_random(values + i, prec); in randomize_values()
156 void release_values(mp_int values, int nt) { in release_values() argument
159 for (i = 0; i < nt; ++i) mp_int_clear(values + i); in release_values()
161 free(values); in release_values()
166 mp_int values; in get_multiply_time() local
169 if ((values = alloc_values(3, prec)) == NULL) return 0.0; in get_multiply_time()
170 randomize_values(values, 2, prec); in get_multiply_time()
[all …]
/llvm-project/mlir/lib/IR/
H A DBuilders.cpp112 DenseIntElementsAttr Builder::getBoolVectorAttr(ArrayRef<bool> values) { in getNamedAttr()
114 VectorType::get(static_cast<int64_t>(values.size()), getI1Type()), in getUnitAttr()
115 values);
118 DenseIntElementsAttr Builder::getI32VectorAttr(ArrayRef<int32_t> values) { in getBoolAttr()
120 VectorType::get(static_cast<int64_t>(values.size()), getIntegerType(32)), in getDictionaryAttr()
121 values); in getDictionaryAttr()
124 DenseIntElementsAttr Builder::getI64VectorAttr(ArrayRef<int64_t> values) { in getIndexAttr()
126 VectorType::get(static_cast<int64_t>(values.size()), getIntegerType(64)), in getIndexAttr()
127 values);
130 DenseIntElementsAttr Builder::getIndexVectorAttr(ArrayRef<int64_t> values) { in getI64IntegerAttr()
132 getBoolVectorAttr(ArrayRef<bool> values) getBoolVectorAttr() argument
138 getI32VectorAttr(ArrayRef<int32_t> values) getI32VectorAttr() argument
144 getI64VectorAttr(ArrayRef<int64_t> values) getI64VectorAttr() argument
150 getIndexVectorAttr(ArrayRef<int64_t> values) getIndexVectorAttr() argument
156 getF32VectorAttr(ArrayRef<float> values) getF32VectorAttr() argument
161 getF64VectorAttr(ArrayRef<double> values) getF64VectorAttr() argument
167 getDenseBoolArrayAttr(ArrayRef<bool> values) getDenseBoolArrayAttr() argument
171 getDenseI8ArrayAttr(ArrayRef<int8_t> values) getDenseI8ArrayAttr() argument
175 getDenseI16ArrayAttr(ArrayRef<int16_t> values) getDenseI16ArrayAttr() argument
179 getDenseI32ArrayAttr(ArrayRef<int32_t> values) getDenseI32ArrayAttr() argument
183 getDenseI64ArrayAttr(ArrayRef<int64_t> values) getDenseI64ArrayAttr() argument
187 getDenseF32ArrayAttr(ArrayRef<float> values) getDenseF32ArrayAttr() argument
191 getDenseF64ArrayAttr(ArrayRef<double> values) getDenseF64ArrayAttr() argument
195 getI32TensorAttr(ArrayRef<int32_t> values) getI32TensorAttr() argument
202 getI64TensorAttr(ArrayRef<int64_t> values) getI64TensorAttr() argument
209 getIndexTensorAttr(ArrayRef<int64_t> values) getIndexTensorAttr() argument
277 getBoolArrayAttr(ArrayRef<bool> values) getBoolArrayAttr() argument
283 getI32ArrayAttr(ArrayRef<int32_t> values) getI32ArrayAttr() argument
288 getI64ArrayAttr(ArrayRef<int64_t> values) getI64ArrayAttr() argument
294 getIndexArrayAttr(ArrayRef<int64_t> values) getIndexArrayAttr() argument
301 getF32ArrayAttr(ArrayRef<float> values) getF32ArrayAttr() argument
307 getF64ArrayAttr(ArrayRef<double> values) getF64ArrayAttr() argument
313 getStrArrayAttr(ArrayRef<StringRef> values) getStrArrayAttr() argument
319 getTypeArrayAttr(TypeRange values) getTypeArrayAttr() argument
325 getAffineMapArrayAttr(ArrayRef<AffineMap> values) getAffineMapArrayAttr() argument
[all...]
/llvm-project/clang/test/Analysis/
H A Dctor.mm323 int values[3];
329 clang_analyzer_eval(a.values[0] == 1); // expected-warning{{TRUE}}
330 clang_analyzer_eval(a.values[1] == 2); // expected-warning{{TRUE}}
331 clang_analyzer_eval(a.values[2] == 3); // expected-warning{{TRUE}}
335 clang_analyzer_eval(b.values[0] == 1); // expected-warning{{TRUE}}
336 clang_analyzer_eval(b.values[1] == 2); // expected-warning{{TRUE}}
337 clang_analyzer_eval(b.values[2] == 3); // expected-warning{{TRUE}}
342 clang_analyzer_eval(c.values[0] == 1); // expected-warning{{TRUE}}
343 clang_analyzer_eval(c.values[1] == 2); // expected-warning{{TRUE}}
344 clang_analyzer_eval(c.values[
[all...]
H A Dregion-store.c31 int values[length]; in concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment() local
32 values[i] = 4; in concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment()
33 return values[0]; // no-warning in concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment()
46 void testConstraintOnRegionOffset(int *values, int length, int i){ in testConstraintOnRegionOffset() argument
47 if (values[1] == 4) { in testConstraintOnRegionOffset()
48 values[i] = 5; in testConstraintOnRegionOffset()
49 clang_analyzer_eval(values[1] == 4);// expected-warning {{UNKNOWN}} in testConstraintOnRegionOffset()
53 int initArray(int *values);
54 void testConstraintOnRegionOffsetStack(int *values, int length, int i) { in testConstraintOnRegionOffsetStack() argument
55 if (values[0] == 4) { in testConstraintOnRegionOffsetStack()
[all …]
/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp250 void test_unexpanded_exprs(Types ...values) { in test_unexpanded_exprs() argument
252 (void)(values + 0); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
253 (void)(0 + values); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
256 values.f(); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
258 x.f(values); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
263 …(void)static_cast<Types&>(values); // expected-error{{expression contains unexpanded parameter pac… in test_unexpanded_exprs()
266 …(void)dynamic_cast<Types&>(values); // expected-error{{expression contains unexpanded parameter pa… in test_unexpanded_exprs()
269 …(void)reinterpret_cast<Types&>(values); // expected-error{{expression contains unexpanded paramete… in test_unexpanded_exprs()
272 …(void)const_cast<Types&>(values); // expected-error{{expression contains unexpanded parameter pack… in test_unexpanded_exprs()
276 (void)typeid(values); // expected-error{{expression contains unexpanded parameter pack 'values'}} in test_unexpanded_exprs()
[all …]
/llvm-project/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/
H A Duninitialized_move.pass.cpp63 int values[N] = {1, 2, 3, 4, 5}; in test_ctor_throws() local
68 std::uninitialized_move(values, values + N, It(p)); in test_ctor_throws()
73 assert(values[0] == 0); in test_ctor_throws()
74 assert(values[1] == 0); in test_ctor_throws()
75 assert(values[2] == 0); in test_ctor_throws()
76 assert(values[3] == 4); in test_ctor_throws()
77 assert(values[4] == 5); in test_ctor_throws()
86 int values[N] = {1, 2, 3, 4, 5}; in test_counted() local
89 auto ret = std::uninitialized_move(It(values), It(values + 1), FIt(p)); in test_counted()
94 assert(values[0] == 0); in test_counted()
[all …]
H A Duninitialized_move_n.pass.cpp63 int values[N] = {1, 2, 3, 4, 5}; in test_ctor_throws() local
68 std::uninitialized_move_n(values, N, It(p)); in test_ctor_throws()
73 assert(values[0] == 0); in test_ctor_throws()
74 assert(values[1] == 0); in test_ctor_throws()
75 assert(values[2] == 0); in test_ctor_throws()
76 assert(values[3] == 4); in test_ctor_throws()
77 assert(values[4] == 5); in test_ctor_throws()
86 int values[N] = {1, 2, 3, 4, 5}; in test_counted() local
89 auto ret = std::uninitialized_move_n(It(values), 1, FIt(p)); in test_counted()
90 assert(ret.first == It(values +1)); in test_counted()
[all …]
/llvm-project/flang/test/Semantics/
H A Detime.f905 REAL(KIND=8), DIMENSION(2) :: values local
8 call etime(values, time)
12 REAL(KIND=4), DIMENSION(2) :: values local
14 call etime(values)
18 REAL(KIND=4), DIMENSION(2) :: values local
21 call etime(values, time)
23 time = etime(values)
27 REAL(KIND=4), DIMENSION(2) :: values local
29 call etime(values, time)
/llvm-project/llvm/utils/gn/secondary/lldb/include/lldb/Host/
H A DBUILD.gn12 values = [
13 # FIXME: Actual values for everything.
35 values += [ "LLDB_ENABLE_LIBEDIT=1" ]
37 values += [ "LLDB_ENABLE_LIBEDIT=" ]
41 values += [ "LLDB_ENABLE_LIBXML2=1" ]
43 values += [ "LLDB_ENABLE_LIBXML2=" ]
47 values += [
52 values += [
59 values += [ "LLVM_ENABLE_CURL=1" ]
61 values
[all...]
/llvm-project/libc/src/__support/FPUtil/
H A Dexcept_value_utils.h1 //===-- Common header for helpers to set exceptional values -----*- C++ -*-===//
26 // This file contains utility functions and classes to manage exceptional values
32 // static constexpr int N = ...; // Number of exceptional values.
54 Mapping values[N]; in lookup()
58 if (LIBC_UNLIKELY(x_bits == values[i].input)) { in lookup()
59 StorageType out_bits = values[i].rnd_towardzero_result; in lookup()
62 out_bits += values[i].rnd_upward_offset; in lookup()
65 out_bits += values[i].rnd_downward_offset; in lookup()
68 out_bits += values[i].rnd_tonearest_offset; in lookup()
80 if (LIBC_UNLIKELY(x_abs == values[ in lookup_odd()
50 Mapping values[N]; global() member
[all...]
/llvm-project/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/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)}}
46 …ttribute__((ext_vector_type(4)))' but the argument has type 'float4' (vector of 4 'float' values)}}
47 …_attribute__((ext_vector_type(4)))' but the argument has type 'half4' (vector of 4 'half' values)}}
50 …ttribute__((ext_vector_type(4)))' but the argument has type 'float4' (vector of 4 'float' values)}}
51 …_attribute__((ext_vector_type(4)))' but the argument has type 'half4' (vector of 4 'half' values)}}
[all …]
/llvm-project/mlir/python/mlir/dialects/
H A D_ods_common.py122 """Returns the given sequence of values or the results of the given op.
175 provided indices may be in the form of dynamic SSA values or static values,
178 values and static indices from various similar structures, respectively.
184 # ArrayAttr: Extract index values.
222 # - `static_values`: an `ArrayAttr` of `i64`s with static values, from Python
228 values: MixedValues,
233 if isinstance(values, ArrayAttr):
234 static_values = values
235 elif isinstance(values, (Operatio
[all...]
/llvm-project/llvm/utils/gn/secondary/clang/include/clang/Config/
H A DBUILD.gn10 values = [
36 values += [ "CLANG_ENABLE_ARCMT=1" ]
38 values += [ "CLANG_ENABLE_ARCMT=" ]
42 values += [ "CLANG_ENABLE_STATIC_ANALYZER=1" ]
44 values += [ "CLANG_ENABLE_STATIC_ANALYZER=" ]
48 values += [
54 values += [
62 values += [ "CLANG_HAVE_LIBXML=1" ]
64 values += [ "CLANG_HAVE_LIBXML=" ]
71 values
[all...]
/llvm-project/mlir/include/mlir/IR/
H A DValueRange.h46 /// Returns the types of the values within this range.
91 /// Returns the range of types of the values within this range.
137 /// Append the given values to the range.
138 void append(ValueRange values);
140 /// Assign this range to the given values.
141 void assign(ValueRange values);
251 /// Returns the types of the values within this range.
277 /// Replace all uses of results of this range with the provided 'values'. The
278 /// size of `values` must match the size of this range.
281 replaceAllUsesWith(ValuesT &&values) { in replaceAllUsesWith() argument
298 replaceUsesWithIf(ValuesT && values,function_ref<bool (OpOperand &)> shouldReplace) replaceUsesWithIf() argument
396 ValueRange(const std::initializer_list<Value> & values) ValueRange() argument
398 ValueRange(iterator_range<OperandRange::iterator> values) ValueRange() argument
400 ValueRange(iterator_range<ResultRange::iterator> values) ValueRange() argument
402 ValueRange(ArrayRef<BlockArgument> values) ValueRange() argument
[all...]
/llvm-project/llvm/utils/gn/secondary/compiler-rt/test/
H A DBUILD.gn20 values = [
81 values += [ "LLVM_ENABLE_EXPENSIVE_CHECKS_PYBOOL=True" ]
83 values += [ "LLVM_ENABLE_EXPENSIVE_CHECKS_PYBOOL=False" ]
87 values += [ "HOST_ARCH=x86_64" ]
89 values += [ "HOST_ARCH=aarch64" ]
95 values += [ "HOST_OS=Darwin" ]
97 values += [ "HOST_OS=Linux" ]
99 values += [ "HOST_OS=Windows" ]
105 values += [ "CAN_SYMBOLIZE=1" ]
107 values
[all...]
/llvm-project/mlir/lib/Dialect/OpenACC/Transforms/
H A DLegalizeData.cpp
/llvm-project/flang/runtime/
H A Dtime-intrinsic.cpp45 // default values provided.
218 // strings to blanks and values to -HUGE as defined by the standard). in DateAndTimeUnavailable()
222 const Fortran::runtime::Descriptor *values) { in DateAndTimeUnavailable()
232 if (values) { in DateAndTimeUnavailable()
233 auto typeCode{values->type().GetCategoryAndKind()}; in DateAndTimeUnavailable()
235 values->rank() == 1 && values->GetDimension(0).Extent() >= 8 && in DateAndTimeUnavailable()
238 // DATE_AND_TIME values argument must have decimal range > 4. Do not accept in DateAndTimeUnavailable()
244 kind, terminator, *values, i); in DateAndTimeUnavailable()
350 std::size_t zoneChars, const Fortran::runtime::Descriptor *values) {
220 DateAndTimeUnavailable(Fortran::runtime::Terminator & terminator,char * date,std::size_t dateChars,char * time,std::size_t timeChars,char * zone,std::size_t zoneChars,const Fortran::runtime::Descriptor * values) DateAndTimeUnavailable() argument
282 GetDateAndTime(Fortran::runtime::Terminator & terminator,char * date,std::size_t dateChars,char * time,std::size_t timeChars,char * zone,std::size_t zoneChars,const Fortran::runtime::Descriptor * values) GetDateAndTime() argument
353 GetDateAndTime(Fortran::runtime::Terminator & terminator,char * date,std::size_t dateChars,char * time,std::size_t timeChars,char * zone,std::size_t zoneChars,const Fortran::runtime::Descriptor * values) GetDateAndTime() argument
[all...]
/llvm-project/clang/test/SemaHLSL/
H A Dstandard_conversion_sequences.hlsl22 // expected-warning@#f2{{implicit conversion truncates vector: 'vector<float, 3>' (vector of 3 'float' values) to 'vector<float, 2>' (vector of 2 'float' values)}}
30 // expected-warning@#f2_2{{implicit conversion truncates vector: 'vector<double, 4>' (vector of 4 'double' values) to 'vector<float, 2>' (vector of 2 'float' values)}}
31 // expected-warning@#f2_2{{implicit conversion loses floating-point precision: 'vector<double, 4>' (vector of 4 'double' values) to 'vector<float, 2>' (vector of 2 'float' values)}}
38 // expected-warning@#i2{{mplicit conversion turns floating-point number into integer: 'vector<float, 2>' (vector of 2 'float' values) to 'vector<int, 2>' (vector of 2 'int' values)}}
46 // expected-warning@#i2_2{{implicit conversion truncates vector: 'vector<double, 4>' (vector of 4 'double' values) to 'vector<int, 2>' (vector of 2 'int' values)}}
[all...]
/llvm-project/lldb/packages/Python/lldbsuite/test/
H A Dlldbplatform.py49 def translate(values): argument
50 if isinstance(values, int):
52 return __name_lookup[values]
53 elif isinstance(values, str):
55 return [values]
56 elif hasattr(values, "__iter__"):
58 result = [translate(x) for x in values]
61 return values
/llvm-project/llvm/test/Analysis/PhiValues/
H A Dbasic.ll1 ; RUN: opt < %s -passes='print<phi-values>' -disable-output 2>&1 | FileCheck %s
17 ; 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
[all...]
/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/
H A Dlocstats.ll1 ; RUN: llc -debug-entry-values %s -o - -filetype=obj \
3 ; RUN: llc -debug-entry-values --dwarf-version=4 %s -o - -filetype=obj \
5 ; RUN: llc -debug-entry-values --dwarf-version=3 %s -o - -filetype=obj \
7 ; RUN: llc -debug-entry-values --dwarf-version=2 %s -o - -filetype=obj \
36 ; CHECK-NEXT: "#variables - entry values with 0% of parent scope covered by DW_AT_location": 1,
37 ; CHECK-NEXT: "#variables - entry values with (0%,10%) of parent scope covered by DW_AT_location": …
38 ; CHECK-NEXT: "#variables - entry values with [10%,20%) of parent scope covered by DW_AT_location":…
39 ; CHECK-NEXT: "#variables - entry values with [20%,30%) of parent scope covered by DW_AT_location":…
40 ; CHECK-NEXT: "#variables - entry values with [30%,40%) of parent scope covered by DW_AT_location":…
41 ; CHECK-NEXT: "#variables - entry values with [40%,50%) of parent scope covered by DW_AT_location":…
[all …]

12345678910>>...113