Home
last modified time | relevance | path

Searched refs:tp1 (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/unord.hash/
H A Dfloating.pass.cpp44 std::size_t tp1 = h(static_cast<T>(0.1)); in test() local
50 assert(t0 != tp1); in test()
56 assert(tp1 != t1); in test()
57 assert(tp1 != tn1); in test()
58 assert(tp1 != pinf); in test()
59 assert(tp1 != ninf); in test()
/llvm-project-15.0.7/compiler-rt/test/tsan/
H A Dsetuid2.c16 unsigned long long tp0, tp1; in main() local
18 tp1 = monotonic_clock_ns(); in main()
19 while (tp1 - tp0 < 3 * 1000000000ull) { in main()
20 tp1 = monotonic_clock_ns(); in main()
H A Dbench.h24 timespec tp1; in main() local
25 clock_gettime(CLOCK_MONOTONIC, &tp1); in main()
27 (tp1.tv_sec * 1000000000ULL + tp1.tv_nsec) - in main()
/llvm-project-15.0.7/mlir/lib/Dialect/SparseTensor/IR/
H A DSparseTensorDialect.cpp212 if (auto tp1 = getSource().getType().dyn_cast<RankedTensorType>()) { in verify() local
214 if (tp1.getRank() != tp2.getRank()) in verify()
216 auto shape1 = tp1.getShape(); in verify()
221 for (unsigned d = 0, rank = tp1.getRank(); d < rank; d++) in verify()
/llvm-project-15.0.7/clang/test/Analysis/
H A Duninit-const.c39 int *tp1 = &t; // expected-note {{'tp1' initialized here}} in f_1_1() local
40 int *tp2 = tp1; // expected-note {{'tp2' initialized to the value of 'tp1'}} in f_1_1()
/llvm-project-15.0.7/mlir/lib/Dialect/Tensor/IR/
H A DTensorOps.cpp851 static bool isSameTypesWithoutEncoding(Type tp1, Type tp2) { in isSameTypesWithoutEncoding() argument
852 if (auto rtp1 = tp1.dyn_cast<RankedTensorType>()) { in isSameTypesWithoutEncoding()
859 return tp1 == tp2; in isSameTypesWithoutEncoding()