Home
last modified time | relevance | path

Searched refs:value1 (Results 1 – 25 of 57) sorted by relevance

123

/llvm-project-15.0.7/clang/test/Frontend/
H A Drewrite-includes-conditions.c4 #define value1 1 macro
5 #if value1
13 #if value1 == value2
15 #elif value1 > value2
17 #elif value1 < value2
37 #if value1 < value2 \
38 || value1 != value2
42 #if value1 /*
/llvm-project-15.0.7/libcxx/test/std/iterators/iterator.requirements/iterator.cust/iterator.cust.swap/
H A Diter_swap.pass.cpp137 int value1 = 0; in test() local
139 HasIterSwap a(value1), b(value2); in test()
141 assert(value1 == 1 && value2 == 1); in test()
144 int value1 = 0; in test() local
146 HasRangesSwap c(value1), d(value2); in test()
149 assert(value1 == 1 && value2 == 1); in test()
152 int value1 = 0; in test() local
154 HasRangesSwap c(value1), d(value2); in test()
156 assert(value1 == 1 && value2 == 1); in test()
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/
H A Dswap.pass.cpp28 const char* value1; member
53 path p1(TC.value1); in main()
60 assert(p2 == TC.value1); in main()
65 assert(p1 == TC.value1); in main()
/llvm-project-15.0.7/llvm/test/MC/AArch64/
H A Dfixup-out-of-range.s59 movz x0, #:abs_g0:value1
65 movz x0, #:abs_g0_s:value1
71 movz x0, #:tprel_g0:value1
84 value1 = 0x12345678 define
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Divar-sem-check-2.m7 @property(retain) id value1; property
19 @synthesize value1=value; // expected-error {{synthesized properties 'value1' and 'value' both clai…
H A Dweak-property.m9 @property (weak) id value1; property
23 @dynamic value1, value, value2, v1,v2,v3,v4;
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp161 uint32_t value1 = pseudo_state->ReadFromPseudoAddress(addr, success); in ReadPseudoMemory() local
170 value1 = llvm::ByteSwap_32(value1); in ReadPseudoMemory()
173 ((uint32_t *)dst)[0] = value1; in ReadPseudoMemory()
202 uint32_t value1; in WritePseudoMemory() local
204 memcpy (&value1, dst, sizeof (uint32_t)); in WritePseudoMemory()
208 value1 = llvm::ByteSwap_32(value1); in WritePseudoMemory()
212 pseudo_state->StoreToPseudoAddress(addr, value1); in WritePseudoMemory()
/llvm-project-15.0.7/llvm/test/Transforms/Inline/ARM/
H A Dinline-fp.ll70 define internal float @single(i32 %response, i8 zeroext %value1) #0 {
72 %conv = zext i8 %value1 to i32
83 define internal float @single_cheap(i32 %response, i8 zeroext %value1) #0 {
85 %conv = zext i8 %value1 to i32
95 define internal double @double(i32 %response, i8 zeroext %value1) #0 {
97 %conv = zext i8 %value1 to i32
108 define internal float @single_force_soft(i32 %response, i8 zeroext %value1) #1 {
110 %conv = zext i8 %value1 to i32
121 define internal float @single_force_soft_fneg(i32 %response, i8 zeroext %value1) #1 {
123 %conv = zext i8 %value1 to i32
/llvm-project-15.0.7/mlir/test/Dialect/SPIRV/Transforms/
H A Drewrite-inserts.mlir4 …spv.func @rewrite(%value0 : f32, %value1 : f32, %value2 : f32, %value3 : i32, %value4: !spv.array<…
8 %2 = spv.CompositeInsert %value1, %1[1 : i32] : f32 into vector<3xf32>
14 %6 = spv.CompositeInsert %value1, %5[1 : i32] : f32 into !spv.array<4xf32>
22 %12 = spv.CompositeInsert %value1, %11[2 : i32] : f32 into !spv.struct<(f32, i32, f32)>
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/
H A Dswap.pass.cpp27 const char* value1 = "foo/bar/baz"; in main() local
30 path p1(value1); in main()
48 path p1(value1); in main()
/llvm-project-15.0.7/compiler-rt/test/safestack/
H A Doverflow.c23 int value1 = 42; in main() local
30 return value1 != 42 || value2 != 42; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.value_compare/
H A Dinvoke.pass.cpp25 bool operator()(const value_type& value1, const value_type& value2) const { in operator ()()
26 return this->comp(value1.first, value2.first); in operator ()()
/llvm-project-15.0.7/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
H A Dgcd.pass.cpp43 auto value1 = static_cast<Input1>(in1); in test0() local
45 static_assert(std::is_same_v<Output, decltype(std::gcd(value1, value2))>, ""); in test0()
46 static_assert(std::is_same_v<Output, decltype(std::gcd(value2, value1))>, ""); in test0()
47 assert(static_cast<Output>(out) == std::gcd(value1, value2)); in test0()
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.value_compare/
H A Dinvoke.pass.cpp25 bool operator()(const value_type& value1, const value_type& value2) const { in operator ()()
26 return this->comp(value1.first, value2.first); in operator ()()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dimplicit-bool-conversion-allow-in-conditions.cpp41 int value1 = functionReturningInt() ? 1 : 2; in implicitConversionIntegerToBoolInConditionalsIsAllowed() local
63 int value1 = functionReturningPointer() ? 1 : 2; in implicitConversionPointerToBoolInConditionalsIsAllowed() local
/llvm-project-15.0.7/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
H A Dlcm.pass.cpp40 auto value1 = static_cast<Input1>(in1); in test0() local
42 static_assert(std::is_same_v<Output, decltype(std::lcm(value1, value2))>, ""); in test0()
43 static_assert(std::is_same_v<Output, decltype(std::lcm(value2, value1))>, ""); in test0()
44 assert(static_cast<Output>(out) == std::lcm(value1, value2)); in test0()
/llvm-project-15.0.7/llvm/test/Transforms/CodeGenPrepare/ARM/
H A Dsink-addrmode.ll226 define void @test_phi_different_block(i32* %ptr, i32 %value1, i32 %value2) {
228 %cmp1 = icmp sgt i32 %value1, 0
241 store i32 %value1, i32* %ptr, align 4
253 define void @test_phi_threegep(i32* %ptr, i32 %value1, i32 %value2) {
255 %cmp1 = icmp sgt i32 %value1, 0
276 store i32 %value1, i32* %phi, align 4
287 %cmp1 = icmp sgt i32 %value1, 0
313 store i32 %value1, i32* %phi, align 4
321 define void @test_nested_select(i32* %ptr, i32 %value1, i32 %value2) {
325 %cmp1 = icmp sgt i32 %value1, 0
[all …]
/llvm-project-15.0.7/mlir/test/mlir-pdll-lsp-server/
H A Dcompletion.test8 …attern FooPattern with benefit(1) {\nlet tuple = (value1 = _: Op, _: Op<test.op>);\nerase tuple.va…
31 // CHECK-NEXT: "filterText": "value1 (field #0)",
32 // CHECK-NEXT: "insertText": "value1",
35 // CHECK-NEXT: "label": "value1 (field #0)",
/llvm-project-15.0.7/llvm/test/Transforms/LoopReroll/
H A Dextra_instr.ll34 %value1 = load i32, i32* %ldptr1, align 4
36 store i32 %value1, i32* %stptr1, align 4
79 %value1 = load i32, i32* %ldptr1, align 4
81 store i32 %value1, i32* %stptr1, align 4
128 %value1 = load i32, i32* %ldptr1, align 4
130 store i32 %value1, i32* %stptr1, align 4
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dnested-template.cpp29 static T value1; member in Outer::Inner1
81 X Outer<X>::Inner1<Y>::value1 = 0; member in Outer<X>::Inner1<Y>
/llvm-project-15.0.7/mlir/test/mlir-vulkan-runner/
H A Daddf.mlir29 %value1 = arith.constant 1.1 : f32
34 call @fillResource1DFloat(%arg3, %value1) : (memref<?xf32>, f32) -> ()
H A Dmulf.mlir30 %value1 = arith.constant 2.0 : f32
35 call @fillResource2DFloat(%arg3, %value1) : (memref<?x?xf32>, f32) -> ()
H A Dtime.mlir36 %value1 = arith.constant 1.1 : f32
41 call @fillResource1DFloat(%arg3, %value1) : (memref<?xf32>, f32) -> ()
/llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/xunit-output/
H A Dbad&name.ini7 value1 = 2.3456 key
/llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/test-data/
H A Dmetrics.ini7 value1 = 2.3456 key

123