| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | zvector2.c | 21 vector double fd, fd2; variable 50 ff = fd2; // expected-error {{incompatible type}} in foo() 96 ff += fd2; // expected-error {{cannot convert}} in foo() 104 ff -= fd2; // expected-error {{cannot convert}} in foo() 112 ff *= fd2; // expected-error {{cannot convert}} in foo() 120 ff /= fd2; // expected-error {{cannot convert}} in foo() 128 ff %= fd2; // expected-error {{invalid operands}} in foo() 143 ff &= fd2; // expected-error {{invalid operands}} in foo() 153 ff |= fd2; // expected-error {{invalid operands}} in foo() 163 ff ^= fd2; // expected-error {{invalid operands}} in foo() [all …]
|
| H A D | zvector.c | 21 vector double fd, fd2; variable 104 fd = fd2; in foo() 212 ++fd2; in foo() 252 --fd2; in foo() 292 fd = +fd2; in foo() 318 fd = -fd2; in foo() 393 fd = fd + fd2; in foo() 431 fd += fd2; in foo() 465 fd -= fd2; in foo() 500 fd *= fd2; in foo() [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/tsan/ |
| H A D | fd_dup_norace2.cpp | 44 int fd2 = open("/dev/urandom", O_RDONLY); in main() local 45 if (fd == -1 || fd2 == -1) in main() 49 if (dup2(fd2, fd) == -1) in main() 54 if (close(fd2) == -1) in main()
|
| H A D | fd_dup_race.cpp | 21 int fd2 = open("/dev/random", O_RDONLY); in main() local 22 if (fd == -1 || fd2 == -1) in main() 26 if (dup2(fd2, fd) == -1) in main()
|
| /llvm-project-15.0.7/clang/test/CodeGen/SystemZ/ |
| H A D | zvector.c | 57 fd = fd2; in test_assign() 94 fd = +fd2; in test_pos() 120 fd = -fd2; in test_neg() 166 ++fd2; in test_preinc() 212 fd2++; in test_postinc() 258 --fd2; in test_predec() 304 fd2--; in test_postdec() 534 fd += fd2; in test_add_assign() 764 fd -= fd2; in test_sub_assign() 874 fd *= fd2; in test_mul_assign() [all …]
|
| /llvm-project-15.0.7/lldb/examples/interposing/darwin/fd_interposing/ |
| H A D | FDInterposing.cpp | 732 extern "C" int dup$__interposed__(int fd2) { in dup$__interposed__() argument 736 const int fd = ::dup(fd2); in dup$__interposed__() 739 new String("pid=%i: dup (fd2=%i) -> fd=%i", pid, fd2, fd)); in dup$__interposed__() 746 return ::dup(fd2); in dup$__interposed__() 751 extern "C" int dup2$__interposed__(int fd1, int fd2) { in dup2$__interposed__() argument 758 FDEventMap::iterator pos = g_fd_event_map.find(fd2); in dup2$__interposed__() 761 fd1, fd2, fd2)); in dup2$__interposed__() 763 save_backtrace(fd2, 0, dup2_close_description_sp, false); in dup2$__interposed__() 765 const int fd = ::dup2(fd1, fd2); in dup2$__interposed__() 768 pid, fd1, fd2, fd)); in dup2$__interposed__() [all …]
|
| /llvm-project-15.0.7/clang/test/CXX/special/class.inhctor/ |
| H A D | p3.cpp | 25 D2 fd2() { return 1; } // expected-error {{no viable conversion}} in fd2() function
|
| /llvm-project-15.0.7/polly/lib/External/isl/interface/ |
| H A D | cpp.cc | 113 static bool same_signature(FunctionDecl *fd1, FunctionDecl *fd2) in same_signature() argument 116 int n2 = fd2->getNumParams(); in same_signature() 123 ParmVarDecl *p2 = fd2->getParamDecl(i); in same_signature()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | std-c-library-functions-POSIX.c | 173 int linkat(int fd1, const char *path1, int fd2, const char *path2, int flag);
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | atomic-ops.c | 212 void fd2(struct S *a, struct S *b) { in fd2() function
|
| /llvm-project-15.0.7/compiler-rt/include/sanitizer/ |
| H A D | netbsd_syscall_hooks.h | 2545 #define __sanitizer_syscall_pre_linkat(fd1, name1, fd2, name2, flags) \ argument 2547 (long long)(fd2), (long long)(name2), \ 2549 #define __sanitizer_syscall_post_linkat(res, fd1, name1, fd2, name2, flags) \ argument 2551 (long long)(name1), (long long)(fd2), \ 4767 long long fd2, long long name2, 4770 long long name1, long long fd2,
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common_interceptors.inc | 3069 int fd2 = REAL(accept)(fd, addr, addrlen); 3070 if (fd2 >= 0) { 3071 if (fd >= 0) COMMON_INTERCEPTOR_FD_SOCKET_ACCEPT(ctx, fd, fd2); 3075 return fd2; 3094 int fd2 = REAL(accept4)(fd, addr, addrlen, f); 3095 if (fd2 >= 0) { 3096 if (fd >= 0) COMMON_INTERCEPTOR_FD_SOCKET_ACCEPT(ctx, fd, fd2); 3100 return fd2; 3118 int fd2 = REAL(paccept)(fd, addr, addrlen, set, f); 3119 if (fd2 >= 0) { [all …]
|