Home
last modified time | relevance | path

Searched defs:V (Results 1 – 25 of 1574) sorted by relevance

12345678910>>...63

/llvm-project/clang/test/Analysis/
H A Diterator-range.cpp10 void deref_begin(const std::vector<int> &V) { in deref_begin()
15 void deref_begind_begin(const std::vector<int> &V) { in deref_begind_begin()
22 void deref_unknown(const std::vector<int> &V) { in deref_unknown()
27 void deref_ahead_of_end(const std::vector<int> &V) { in deref_ahead_of_end()
32 void deref_end(const std::vector<int> &V) { in deref_end()
40 void incr_begin(const std::vector<int> &V) { in incr_begin()
45 void incr_behind_begin(const std::vector<int> &V) { in incr_behind_begin()
50 void incr_unknown(const std::vector<int> &V) { in incr_unknown()
55 void incr_ahead_of_end(const std::vector<int> &V) { in incr_ahead_of_end()
60 void incr_end(const std::vector<int> &V) { in incr_end()
[all …]
H A Dinvalidated-iterator.cpp8 void normal_dereference(std::vector<int> &V) { in normal_dereference()
13 void invalidated_dereference(std::vector<int> &V) { in invalidated_dereference()
19 void normal_prefix_increment(std::vector<int> &V) { in normal_prefix_increment()
24 void invalidated_prefix_increment(std::vector<int> &V) { in invalidated_prefix_increment()
30 void normal_prefix_decrement(std::vector<int> &V) { in normal_prefix_decrement()
35 void invalidated_prefix_decrement(std::vector<int> &V) { in invalidated_prefix_decrement()
41 void normal_postfix_increment(std::vector<int> &V) { in normal_postfix_increment()
46 void invalidated_postfix_increment(std::vector<int> &V) { in invalidated_postfix_increment()
52 void normal_postfix_decrement(std::vector<int> &V) { in normal_postfix_decrement()
57 void invalidated_postfix_decrement(std::vector<int> &V) { in invalidated_postfix_decrement()
[all …]
/llvm-project/llvm/lib/XRay/
H A DFDRRecords.cpp18 Error BufferExtents::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
19 Error WallclockRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
20 Error NewCPUIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
21 Error TSCWrapRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
22 Error CustomEventRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
23 Error CallArgRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
24 Error PIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
25 Error NewBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
26 Error EndBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
27 Error FunctionRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
[all …]
/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
H A Din_place_type_args.pass.cpp27 using V = std::variant<int>; in test_ctor_sfinae() typedef
33 using V = std::variant<int, long, long long>; in test_ctor_sfinae() typedef
39 using V = std::variant<int, long, int *>; in test_ctor_sfinae() typedef
47 using V = std::variant<int, long, int>; in test_ctor_sfinae() typedef
53 using V = std::variant<int, long, int *>; in test_ctor_sfinae() typedef
59 using V = std::variant<int, long, int *>; in test_ctor_sfinae() typedef
86 using V = std::variant<const int, volatile int, int>; in test_ctor_basic() typedef
93 using V = std::variant<const int, volatile int, int>; in test_ctor_basic() typedef
100 using V = std::variant<const int, volatile int, int>; in test_ctor_basic() typedef
H A Din_place_index_args.pass.cpp28 using V = std::variant<int>; in test_ctor_sfinae() typedef
34 using V = std::variant<int, long, long long>; in test_ctor_sfinae() typedef
40 using V = std::variant<int, long, int *>; in test_ctor_sfinae() typedef
46 using V = std::variant<int, long, int *>; in test_ctor_sfinae() typedef
52 using V = std::variant<int, long, int *>; in test_ctor_sfinae() typedef
76 using V = std::variant<const int, volatile int, int>; in test_ctor_basic() typedef
83 using V = std::variant<const int, volatile int, int>; in test_ctor_basic() typedef
90 using V = std::variant<const int, volatile int, int>; in test_ctor_basic() typedef
H A DT.pass.cpp53 using V = std::variant<Dummy, NoThrowT>; in test_T_ctor_noexcept() typedef
57 using V = std::variant<Dummy, ThrowsT>; in test_T_ctor_noexcept() typedef
64 using V = std::variant<long, long long>; in test_T_ctor_sfinae() typedef
68 using V = std::variant<std::string, std::string>; in test_T_ctor_sfinae() typedef
72 using V = std::variant<std::string, void*>; in test_T_ctor_sfinae() typedef
76 using V = std::variant<std::string, float>; in test_T_ctor_sfinae() typedef
80 using V = std::variant<std::unique_ptr<int>, bool>; in test_T_ctor_sfinae() typedef
93 using V = std::variant<X>; in test_T_ctor_sfinae() typedef
97 using V = std::variant<AnyConstructible, NoConstructible>; in test_T_ctor_sfinae() typedef
152 using V = std::variant<int, BoomOnAnything>; in test_no_narrowing_check_for_class_types() typedef
[all …]
H A Ddefault.pass.cpp41 using V = std::variant<std::monostate, int>; in test_default_ctor_sfinae() typedef
45 using V = std::variant<NonDefaultConstructible, int>; in test_default_ctor_sfinae() typedef
52 using V = std::variant<int>; in test_default_ctor_noexcept() typedef
56 using V = std::variant<NotNoexcept>; in test_default_ctor_noexcept() typedef
63 using V = std::variant<DefaultCtorThrows, int>; in test_default_ctor_throws() typedef
92 using V = std::variant<int, long>; in test_default_ctor_basic() typedef
98 using V = std::variant<int, long>; in test_default_ctor_basic() typedef
104 using V = std::variant<int, NonDefaultConstructible>; in test_default_ctor_basic() typedef
H A Din_place_type_init_list_args.pass.cpp42 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
50 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
58 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
66 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
74 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
80 using V = std::variant<InitListArg, InitListArg, int>; in test_ctor_sfinae() typedef
H A Din_place_index_init_list_args.pass.cpp42 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
48 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
56 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
62 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
69 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
75 using V = std::variant<InitList, InitListArg, int>; in test_ctor_sfinae() typedef
/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
H A Dmove.pass.cpp137 using V = std::variant<int>; in test_move_assignment_noexcept() typedef
141 using V = std::variant<MoveOnly>; in test_move_assignment_noexcept() typedef
145 using V = std::variant<int, long>; in test_move_assignment_noexcept() typedef
149 using V = std::variant<int, MoveOnly>; in test_move_assignment_noexcept() typedef
153 using V = std::variant<MoveOnlyNT>; in test_move_assignment_noexcept() typedef
157 using V = std::variant<MoveOnlyOddNothrow>; in test_move_assignment_noexcept() typedef
164 using V = std::variant<int, long>; in test_move_assignment_sfinae() typedef
168 using V = std::variant<int, CopyOnly>; in test_move_assignment_sfinae() typedef
172 using V = std::variant<int, NoCopy>; in test_move_assignment_sfinae() typedef
176 using V = std::variant<int, MoveOnly>; in test_move_assignment_sfinae() typedef
[all …]
H A Dcopy.pass.cpp222 using V = std::variant<CopyMaybeThrows>; in test_copy_assignment_not_noexcept() typedef
226 using V = std::variant<int, CopyDoesThrow>; in test_copy_assignment_not_noexcept() typedef
233 using V = std::variant<int, long>; in test_copy_assignment_sfinae() typedef
237 using V = std::variant<int, CopyOnly>; in test_copy_assignment_sfinae() typedef
241 using V = std::variant<int, NoCopy>; in test_copy_assignment_sfinae() typedef
245 using V = std::variant<int, MoveOnly>; in test_copy_assignment_sfinae() typedef
249 using V = std::variant<int, MoveOnlyNT>; in test_copy_assignment_sfinae() typedef
255 using V = std::variant<int, long>; in test_copy_assignment_sfinae() typedef
259 using V = std::variant<int, NTCopyAssign>; in test_copy_assignment_sfinae() typedef
264 using V = std::variant<int, TCopyAssign>; in test_copy_assignment_sfinae() typedef
[all …]
/llvm-project/libcxx/test/std/utilities/variant/variant.get/
H A Dget_index.pass.cpp36 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
43 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
50 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
57 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
67 using V = std::variant<int, const long>; in test_lvalue_get() typedef
74 using V = std::variant<int, const long>; in test_lvalue_get() typedef
83 using V = std::variant<int, const long>; in test_rvalue_get() typedef
90 using V = std::variant<int, const long>; in test_rvalue_get() typedef
99 using V = std::variant<int, const long>; in test_const_rvalue_get() typedef
106 using V = std::variant<int, const long>; in test_const_rvalue_get() typedef
[all …]
H A Dget_type.pass.cpp30 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
37 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
44 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
51 using V = std::variant<int, const long>; in test_const_lvalue_get() typedef
61 using V = std::variant<int, const long>; in test_lvalue_get() typedef
68 using V = std::variant<int, const long>; in test_lvalue_get() typedef
77 using V = std::variant<int, const long>; in test_rvalue_get() typedef
84 using V = std::variant<int, const long>; in test_rvalue_get() typedef
94 using V = std::variant<int, const long>; in test_const_rvalue_get() typedef
101 using V = std::variant<int, const long>; in test_const_rvalue_get() typedef
[all …]
H A Dget_if_index.pass.cpp28 using V = std::variant<int>; in test_const_get_if() typedef
33 using V = std::variant<int, const long>; in test_const_get_if() typedef
41 using V = std::variant<int, const long>; in test_const_get_if() typedef
51 using V = std::variant<int>; in test_get_if() typedef
56 using V = std::variant<int, long>; in test_get_if() typedef
64 using V = std::variant<int, const long>; in test_get_if() typedef
H A Dget_if_type.pass.cpp26 using V = std::variant<int>; in test_const_get_if() typedef
31 using V = std::variant<int, const long>; in test_const_get_if() typedef
39 using V = std::variant<int, const long>; in test_const_get_if() typedef
49 using V = std::variant<int>; in test_get_if() typedef
54 using V = std::variant<int, const long>; in test_get_if() typedef
62 using V = std::variant<int, const long>; in test_get_if() typedef
/llvm-project/clang/test/CodeGen/X86/
H A Dx86-crc-builtins.c8 unsigned int test__crc32b(unsigned int CRC, unsigned char V) { in test__crc32b()
14 unsigned int test__crc32w(unsigned int CRC, unsigned short V) { in test__crc32w()
20 unsigned int test__crc32d(unsigned int CRC, unsigned int V) { in test__crc32d()
27 unsigned long long test__crc32q(unsigned long long CRC, unsigned long long V) { in test__crc32q()
34 unsigned int test_mm_crc32_u8(unsigned int CRC, unsigned char V) { in test_mm_crc32_u8()
40 unsigned int test_mm_crc32_u16(unsigned int CRC, unsigned short V) { in test_mm_crc32_u16()
46 unsigned int test_mm_crc32_u32(unsigned int CRC, unsigned int V) { in test_mm_crc32_u32()
53 unsigned long long test_mm_crc32_u64(unsigned long long CRC, unsigned long long V) { in test_mm_crc32_u64()
/llvm-project/offload/DeviceRTL/include/
H A DUtils.h
/llvm-project/clang/test/SemaCXX/
H A Dpr72025.cpp3 struct V { struct
5 banana V() : c("i") {} // expected-error {{unknown type name}} in V() argument
/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.status/
H A Dindex.pass.cpp29 using V = std::variant<int, long>; in main() typedef
34 using V = std::variant<int, long>; in main() typedef
39 using V = std::variant<int, long>; in main() typedef
44 using V = std::variant<int, std::string>; in main() typedef
52 using V = std::variant<int, MakeEmptyT>; in main() typedef
H A Dvalueless_by_exception.pass.cpp29 using V = std::variant<int, long>; in main() typedef
34 using V = std::variant<int, long>; in main() typedef
39 using V = std::variant<int, long, std::string>; in main() typedef
45 using V = std::variant<int, MakeEmptyT>; in main() typedef
/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h135 classof(const Value * V) classof() argument
159 classof(const Value * V) classof() argument
186 classof(const Value * V) classof() argument
426 classof(const Value * V) classof() argument
451 classof(const Value * V) classof() argument
475 classof(const Value * V) classof() argument
526 classof(const Value * V) classof() argument
549 classof(const Value * V) classof() argument
607 classof(const Value * V) classof() argument
654 classof(const Value * V) classof() argument
669 classof(const Value * V) classof() argument
686 classof(const Value * V) classof() argument
701 classof(const Value * V) classof() argument
718 classof(const Value * V) classof() argument
741 classof(const Value * V) classof() argument
760 classof(const Value * V) classof() argument
858 classof(const Value * V) classof() argument
891 classof(const Value * V) classof() argument
910 classof(const Value * V) classof() argument
1078 setElementSizeInBytes(Constant * V) setElementSizeInBytes() argument
1094 classof(const Value * V) classof() argument
1106 classof(const Value * V) classof() argument
1124 classof(const Value * V) classof() argument
1136 classof(const Value * V) classof() argument
1148 classof(const Value * V) classof() argument
1165 setVolatile(Constant * V) setVolatile() argument
1180 classof(const Value * V) classof() argument
1198 classof(const Value * V) classof() argument
1213 classof(const Value * V) classof() argument
1232 classof(const Value * V) classof() argument
1245 classof(const Value * V) classof() argument
1257 classof(const Value * V) classof() argument
1272 classof(const Value * V) classof() argument
1305 classof(const Value * V) classof() argument
1325 classof(const Value * V) classof() argument
1347 classof(const Value * V) classof() argument
1367 classof(const Value * V) classof() argument
1386 classof(const Value * V) classof() argument
1397 classof(const Value * V) classof() argument
1410 classof(const Value * V) classof() argument
1423 classof(const Value * V) classof() argument
1456 classof(const Value * V) classof() argument
1475 classof(const Value * V) classof() argument
1493 classof(const Value * V) classof() argument
1505 classof(const Value * V) classof() argument
1517 classof(const Value * V) classof() argument
1531 classof(const Value * V) classof() argument
1543 classof(const Value * V) classof() argument
1554 classof(const Value * V) classof() argument
1578 classof(const Value * V) classof() argument
1601 classof(const Value * V) classof() argument
1612 classof(const Value * V) classof() argument
1635 classof(const Value * V) classof() argument
1662 classof(const Value * V) classof() argument
1687 classof(const Value * V) classof() argument
1710 classof(const Value * V) classof() argument
1738 classof(const Value * V) classof() argument
1750 classof(const Value * V) classof() argument
1774 classof(const Value * V) classof() argument
[all...]
H A DIRBuilder.h458 getInt1(bool V) getInt1() argument
1100 CreateRet(Value * V) CreateRet() argument
1112 Value *V = PoisonValue::get(getCurrentFunctionReturnType()); CreateAggregateRet() local
1334 if (Value *V = global() variable
1351 if (Value *V = global() variable
1368 if (Value *V = global() variable
1385 if (Value *V = Folder.FoldExactBinOp(Instruction::UDiv, LHS, RHS, isExact)) global() variable
1398 if (Value *V = Folder.FoldExactBinOp(Instruction::SDiv, LHS, RHS, isExact)) global() variable
1410 if (Value *V = Folder.FoldBinOp(Instruction::URem, LHS, RHS)) global() variable
1416 if (Value *V = Folder.FoldBinOp(Instruction::SRem, LHS, RHS)) global() variable
1423 if (Value *V = global() variable
1444 if (Value *V = Folder.FoldExactBinOp(Instruction::LShr, LHS, RHS, isExact)) global() variable
1463 if (Value *V = Folder.FoldExactBinOp(Instruction::AShr, LHS, RHS, isExact)) global() variable
1481 if (auto *V = Folder.FoldBinOp(Instruction::And, LHS, RHS)) global() variable
1503 if (auto *V = Folder.FoldBinOp(Instruction::Or, LHS, RHS)) global() variable
1525 if (Value *V = Folder.FoldBinOp(Instruction::Xor, LHS, RHS)) global() variable
1544 if (Value *V = Folder.FoldBinOpFMF(Instruction::FAdd, L, R, FMF)) global() variable
1559 if (Value *V = Folder.FoldBinOpFMF(Instruction::FAdd, L, R, FMF)) global() variable
1571 if (Value *V = Folder.FoldBinOpFMF(Instruction::FSub, L, R, FMF)) global() variable
1586 if (Value *V = Folder.FoldBinOpFMF(Instruction::FSub, L, R, FMF)) global() variable
1598 if (Value *V = Folder.FoldBinOpFMF(Instruction::FMul, L, R, FMF)) global() variable
1613 if (Value *V = Folder.FoldBinOpFMF(Instruction::FMul, L, R, FMF)) global() variable
1625 if (Value *V = Folder.FoldBinOpFMF(Instruction::FDiv, L, R, FMF)) global() variable
1640 if (Value *V = Folder.FoldBinOpFMF(Instruction::FDiv, L, R, FMF)) global() variable
1652 if (Value *V = Folder.FoldBinOpFMF(Instruction::FRem, L, R, FMF)) return V; global() variable
1666 if (Value *V = Folder.FoldBinOpFMF(Instruction::FRem, L, R, FMF)) return V; global() variable
1674 if (Value *V = Folder.FoldBinOp(Opc, LHS, RHS)) return V; global() variable
1874 if (auto *V = Folder.FoldGEP(Ty, Ptr, IdxList, NW)) global() variable
1888 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idx, GEPNoWrapFlags::none())) global() variable
1898 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idx, GEPNoWrapFlags::inBounds())) global() variable
1911 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idxs, GEPNoWrapFlags::none())) global() variable
1924 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idxs, GEPNoWrapFlags::inBounds())) global() variable
1934 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idx, GEPNoWrapFlags::none())) global() variable
1944 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idx, GEPNoWrapFlags::inBounds())) global() variable
1957 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idxs, GEPNoWrapFlags::none())) global() variable
1970 if (auto *V = Folder.FoldGEP(Ty, Ptr, Idxs, GEPNoWrapFlags::inBounds())) global() variable
2358 if (auto *V = Folder.FoldCmp(P, LHS, RHS)) global() variable
2467 if (Value *V = Folder.FoldExtractElement(Vec, Idx)) global() variable
2489 if (Value *V = Folder.FoldInsertElement(Vec, NewElt, Idx)) global() variable
2509 if (Value *V = Folder.FoldShuffleVector(V1, V2, Mask)) global() variable
2523 if (auto *V = Folder.FoldExtractValue(Agg, Idxs)) global() variable
2530 if (auto *V = Folder.FoldInsertValue(Agg, Val, Idxs)) global() variable
[all...]
/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h64 DWARFFormValue(dwarf::Form F, const ValueType &V) : Form(F), Value(V) {} in DWARFFormValue() argument
179 toString(const std::optional<DWARFFormValue> & V) toString() argument
215 toString(const std::optional<DWARFFormValue> & V,const char * Default) toString() argument
228 toUnsigned(const std::optional<DWARFFormValue> & V) toUnsigned() argument
240 toUnsigned(const std::optional<DWARFFormValue> & V,uint64_t Default) toUnsigned() argument
251 toReference(const std::optional<DWARFFormValue> & V) toReference() argument
263 toReference(const std::optional<DWARFFormValue> & V,uint64_t Default) toReference() argument
273 toSigned(const std::optional<DWARFFormValue> & V) toSigned() argument
285 toSigned(const std::optional<DWARFFormValue> & V,int64_t Default) toSigned() argument
296 toAddress(const std::optional<DWARFFormValue> & V) toAddress() argument
303 toSectionedAddress(const std::optional<DWARFFormValue> & V) toSectionedAddress() argument
315 toAddress(const std::optional<DWARFFormValue> & V,uint64_t Default) toAddress() argument
326 toSectionOffset(const std::optional<DWARFFormValue> & V) toSectionOffset() argument
338 toSectionOffset(const std::optional<DWARFFormValue> & V,uint64_t Default) toSectionOffset() argument
349 toBlock(const std::optional<DWARFFormValue> & V) toBlock() argument
[all...]
/llvm-project/libc/benchmarks/
H A DJSON.cpp32 static Error intFromJsonTemplate(const json::Value &V, T &Out) { in intFromJsonTemplate()
44 static Error fromJson(const json::Value &V, bool &Out) { in fromJson()
52 static Error fromJson(const json::Value &V, double &Out) { in fromJson()
60 static Error fromJson(const json::Value &V, std::string &Out) { in fromJson()
68 static Error fromJson(const json::Value &V, uint32_t &Out) { in fromJson()
72 static Error fromJson(const json::Value &V, int &Out) { in fromJson()
76 static Error fromJson(const json::Value &V, libc_benchmarks::Duration &D) { in fromJson()
83 static Error fromJson(const json::Value &V, MaybeAlign &Out) { in fromJson()
101 static Error fromJson(const json::Value &V, in fromJson()
123 Error vectorFromJsonTemplate(const json::Value &V, C &Out) { in vectorFromJsonTemplate()
[all …]
/llvm-project/llvm/unittests/ADT/
H A DSmallVectorTest.cpp170 SmallVector<NonCopyable, 0> V; in CompileTest() local
175 SmallVector<NonCopyable, 0> V(42); in TEST() local
240 auto &V = this->theVector; in TYPED_TEST() local
249 auto &V = this->theVector; in TYPED_TEST() local
260 auto &V = this->theVector; in TYPED_TEST() local
269 auto &V = this->theVector; in TYPED_TEST() local
279 auto &V = this->theVector; in TYPED_TEST() local
327 auto &V = this->theVector; in TYPED_TEST() local
340 auto &V = this->theVector; in TYPED_TEST() local
353 auto &V = this->theVector; in TYPED_TEST() local
[all …]

12345678910>>...63