/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | GDBRemoteSignals.cpp | 1 //===-- GDBRemoteSignals.cpp ----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 20 // clang-format off in Reset() 68 AddSignal(45, "SIG33", false, false, false, "real-time event 33"); in Reset() 69 AddSignal(46, "SIG34", false, false, false, "real-time event 34"); in Reset() 70 AddSignal(47, "SIG35", false, false, false, "real-time event 35"); in Reset() 71 AddSignal(48, "SIG36", false, false, false, "real-time event 36"); in Reset() 72 AddSignal(49, "SIG37", false, false, false, "real-time event 37"); in Reset() 73 AddSignal(50, "SIG38", false, false, false, "real-time event 38"); in Reset() [all …]
|
H A D | FreeBSDSignals.cpp | 1 //===-- FreeBSDSignals.cpp ------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 36 // clang-format off in Reset() 61 ADD_SIGCODE(SIGBUS, 10, BUS_OBJERR, 3, "object-specific hardware error"); in Reset() 75 AddSignal(33, "SIGLIBRT", false, false, false, "reserved by real-time library"); in Reset() 76 AddSignal(65, "SIGRTMIN", false, false, false, "real time signal 0"); in Reset() 77 AddSignal(66, "SIGRTMIN+1", false, false, false, "real time signal 1"); in Reset() 78 AddSignal(67, "SIGRTMIN+2", false, false, false, "real time signal 2"); in Reset() 79 AddSignal(68, "SIGRTMIN+3", false, false, false, "real time signal 3"); in Reset() [all …]
|
H A D | NetBSDSignals.cpp | 1 //===-- NetBSDSignals.cpp -------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 32 // clang-format off in Reset() 55 ADD_SIGCODE(SIGBUS, 10, BUS_ADRERR, 2, "non-existent physical address"); in Reset() 67 AddSignal(33, "SIGRTMIN", false, false, false, "real time signal 0"); in Reset() 68 AddSignal(34, "SIGRTMIN+1", false, false, false, "real time signal 1"); in Reset() 69 AddSignal(35, "SIGRTMIN+2", false, false, false, "real time signal 2"); in Reset() 70 AddSignal(36, "SIGRTMIN+3", false, false, false, "real time signal 3"); in Reset() 71 AddSignal(37, "SIGRTMIN+4", false, false, false, "real time signal 4"); in Reset() [all …]
|
H A D | LinuxSignals.cpp | 1 //===-- LinuxSignals.cpp --------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 41 // clang-format off in Reset() 111 AddSignal(34, "SIGRTMIN", false, false, false, "real time signal 0"); in Reset() 112 AddSignal(35, "SIGRTMIN+1", false, false, false, "real time signal 1"); in Reset() 113 AddSignal(36, "SIGRTMIN+2", false, false, false, "real time signal 2"); in Reset() 114 AddSignal(37, "SIGRTMIN+3", false, false, false, "real time signal 3"); in Reset() 115 AddSignal(38, "SIGRTMIN+4", false, false, false, "real time signal 4"); in Reset() 116 AddSignal(39, "SIGRTMIN+5", false, false, false, "real time signal 5"); in Reset() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/ |
H A D | complex_cmath.h | 1 //===------------------------- __complex_cmath.h --------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 35 return hypot(__c.real(), __c.imag()); in abs() 41 return atan2(__c.imag(), __c.real()); in arg() 59 if (std::isinf(__c.real())) in norm() 60 return abs(__c.real()); in norm() 63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm() 69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/rtc/ |
H A D | trivial-rtc.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/rtc/trivial-rtc.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Alexandre Belloni <alexandre.belloni@bootlin.com> 18 - $ref: rtc.yaml# 23 # AB-RTCMC-32.768kHz-B5ZE-S3: Real Time Clock/Calendar Module with I2C Interface 24 - abracon,abb5zes3 25 # AB-RTCMC-32.768kHz-EOZ9: Real Time Clock/Calendar Module with I2C Interface 26 - abracon,abeoz9 [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/ |
H A D | rtsan_interceptors.cpp | 1 //===--- rtsan_interceptors.cpp - Realtime Sanitizer ------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 80 const int result = REAL(open)(path, oflag, mode); in INTERCEPTOR() 94 const int result = REAL(openat)(fd, path, oflag, mode); in INTERCEPTOR() 102 const int result = REAL(creat)(path, mode); in INTERCEPTOR() 120 int result = REAL(fcntl)(filedes, cmd, arg); in INTERCEPTOR() 129 return REAL(close)(filedes); in INTERCEPTOR() 134 return REAL(fopen)(path, mode); in INTERCEPTOR() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | complex | 1 // -*- C++ -*- 2 //===----------------------------------------------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 29 T real() const; // constexpr in C++14 32 void real(T); // constexpr in C++20 37 complex<T>& operator-=(const T&); // constexpr in C++20 44 template<class X> complex<T>& operator-=(const complex<X>&); // constexpr in C++20 59 constexpr float real() const; 60 void real(float); // constexpr in C++20 [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ComplexDeinterleavingPass.cpp | 1 //===- ComplexDeinterleavingPass.cpp --------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 // instruction). This is performed by checking the real and imaginary components 24 // these intrinsics, whereas, fixed-width vectors are recognized for both 31 // use-def chain. This step is assumed to finish successfully, as all 46 // depth-first manner, traversing and identifying the operands of each 48 // Each node maintains a reference to its Real and Imaginary instructions, 56 // Note: If the operation of a Node is Shuffle, only the Real, Imaginary, and 58 // should be pre-populated. [all …]
|
/freebsd/contrib/ofed/librdmacm/ |
H A D | preload.c | 2 * Copyright (c) 2011-2012 Intel Corporation. All rights reserved. 14 * - Redistributions of source code must retain the above 18 * - Redistributions in binary form must reproduce the above 93 static struct socket_calls real; variable 138 free(config[--config_cnt].name); in free_config() 147 * # domain - *, INET, INET6, IB 148 * # type - *, STREAM, DGRAM 149 * # protocol - *, TCP, UDP 268 fdi->dupfd = -1; in fd_open() 269 atomic_store(&fdi->refcnt, 1); in fd_open() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_interceptors.cpp | 1 //===-- asan_interceptors.cpp ---------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 54 common_flags()->strict_string_checks ? (len) + 1 : (n)) 61 if (REAL(strnlen)) { in MaybeRealStrnlen() 62 return REAL(strnlen)(s, maxlen); in MaybeRealStrnlen() 71 asanThreadRegistry().SetThreadName(t->tid(), name); in SetThreadName() 75 if (CAN_SANITIZE_LEAKS && common_flags()->detect_leaks && in OnExit() 77 return common_flags()->exitcode; in OnExit() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan_interceptors.cpp | 1 //===- nsan_interceptors.cpp ----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 // a loop (`printf` itself uses the libc). printf-free functions are documented 16 //===----------------------------------------------------------------------===// 33 if (!nsan_initialized && REAL(memset) == nullptr) in INTERCEPTOR() 36 void *res = REAL(memset)(dst, v, size); in INTERCEPTOR() 42 wchar_t *res = REAL(wmemset)(dst, v, size); in INTERCEPTOR() 50 if (!nsan_initialized && REAL(memmove) == nullptr) in INTERCEPTOR() 53 void *res = REAL(memmove)(dst, src, size); in INTERCEPTOR() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
H A D | dd_interceptors.cpp | 1 //===-- dd_interceptors.cpp -----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 18 __attribute__((tls_model("initial-exec"))) 20 __attribute__((tls_model("initial-exec"))) 46 return REAL(pthread_mutex_destroy)(m); in INTERCEPTOR() 52 int res = REAL(pthread_mutex_lock)(m); in INTERCEPTOR() 59 int res = REAL(pthread_mutex_trylock)(m); in INTERCEPTOR() 68 return REAL(pthread_mutex_unlock)(m); in INTERCEPTOR() 73 int res = REAL(pthread_spin_destroy)(m); in INTERCEPTOR() [all …]
|
/freebsd/lib/libc/gen/ |
H A D | isgreater.3 | 31 .Nd "compare two floating-point numbers" 37 .Fn isgreater "real-floating x" "real-floating y" 39 .Fn isgreaterequal "real-floating x" "real-floating y" 41 .Fn isless "real-floating x" "real-floating y" 43 .Fn islessequal "real-floating x" "real-floating y" 45 .Fn islessgreater "real-floating x" "real-floating y" 47 .Fn isunordered "real-floating x" "real-floating y" 60 and return a non-zero value if and only if its nominal 76 and returns non-zero if and only if any of 81 For any pair of floating-point values, one [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 1 //===-- sanitizer_common_interceptors.inc -----------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 34 //===----------------------------------------------------------------------===// 132 // musl 1.2.0 on existing 32-bit architectures uses new symbol names for the 133 // time-related functions that take 64-bit time_t values. See 243 common_flags()->strict_string_checks ? (internal_strlen(s)) + 1 : (n) ) 247 ({ CheckNoDeepBind(filename, flag); REAL(dlopen)(filename, flag); }) 285 // oldest Glibc version pre-dates support for that architecture. 286 // For example, regexec@GLIBC_2.3.4 exists on x86_64, but not RISC-V. [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors_mac.cpp | 1 //===-- tsan_interceptors_mac.cpp -----------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 // Mac-specific interceptors. 12 //===----------------------------------------------------------------------===// 26 #include <objc/objc-sync.h> 43 // The non-barrier versions of OSAtomic* functions are semantically mo_relaxed, 47 // conservative and treat the non-barrier versions as mo_acq_rel. 74 return tsan_atomic_f((volatile tsan_t *)ptr, 1, mo) - 1; \ 158 REAL(OSAtomicEnqueue)(list, item, offset); [all …]
|
H A D | tsan_interceptors_posix.cpp | 1 //===-- tsan_interceptors_posix.cpp ---------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 50 (((__sanitizer_FILE *)fp)->_file == -1 \ 51 ? -1 \ 52 : (int)(unsigned short)(((__sanitizer_FILE *)fp)->_file)) 73 // The size is determined by looking at sizeof of real ucontext_t on linux. 138 const int SI_TIMER = -2; 140 void *const MAP_FAILED = (void*)-1; [all …]
|
H A D | tsan_interceptors_libdispatch.cpp | 1 //===-- tsan_interceptors_libdispatch.cpp ---------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 86 new_context->queue = queue; in AllocContext() 87 new_context->orig_context = orig_context; in AllocContext() 88 new_context->orig_work = orig_work; in AllocContext() 89 new_context->free_context_in_callback = true; in AllocContext() 90 new_context->submitted_synchronously = false; in AllocContext() 91 new_context->is_barrier_block = false; in AllocContext() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 1 //===-- msan_interceptors.cpp ---------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 //===----------------------------------------------------------------------===// 70 void __msan_scoped_enable_interceptor_checks() { --in_interceptor_scope; } in __msan_scoped_enable_interceptor_checks() 74 ~InterceptorScope() { --in_interceptor_scope; } in ~InterceptorScope() 98 if (__offset >= 0 && __msan::flags()->report_umrs) { \ 103 if (__msan::flags()->halt_on_error) { \ 119 common_flags()->strict_string_checks ? (len) + 1 : (n) ) 128 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file); in INTERCEPTOR() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerInterceptors.cpp | 1 //===-- FuzzerInterceptors.cpp --------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 //===----------------------------------------------------------------------===// 19 #define REAL(x) __interception::PTR_TO_REAL(x) macro 38 // want the address of the real definition, though, so look it up using in getFuncAddr() 74 return (c1 < c2) ? -1 : 1; in internal_strcmp_strncmp() 96 return *t1 < *t2 ? -1 : 1; in internal_memcmp() 113 for (size_t pos = 0; pos <= len1 - len2; pos++) { in internal_strstr() 122 // Weak hooks forward-declared to avoid dependency on [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ppc/ |
H A D | divtc3.c | 3 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 // Use DOUBLE_PRECISION because the soft-fp method we use is logb (on the upper 9 // 128-bit floats. 36 cDD.s.hi = __compiler_rt_scalbn(cDD.s.hi, -ilogbw); in __divtc3() 37 cDD.s.lo = __compiler_rt_scalbn(cDD.s.lo, -ilogbw); in __divtc3() 38 dDD.s.hi = __compiler_rt_scalbn(dDD.s.hi, -ilogbw); in __divtc3() 39 dDD.s.lo = __compiler_rt_scalbn(dDD.s.lo, -ilogbw); in __divtc3() 49 DD real = {.ld = __gcc_qdiv(realNumerator, denom)}; in __divtc3() local 52 real.s.hi = __compiler_rt_scalbn(real.s.hi, -ilogbw); in __divtc3() 53 real.s.lo = __compiler_rt_scalbn(real.s.lo, -ilogbw); in __divtc3() [all …]
|
/freebsd/contrib/tcsh/nls/spanish/ |
H A D | set2 | 33 31 Break (Ctrl-Break) 44 42 Grupo micro-tarea-no se ha activado la bandera de despertar 45 43 Error de hilo de ejecución - (use cord -T para información detallada) 46 44 Error de paridad de registro CRAY Y-MP 70 68 Primera señal de tiempo real 71 69 Segunda señal de tiempo real 72 70 Tercera señal de tiempo real 73 71 Cuarta señal de tiempo real 74 72 Cuarta señal por la cola de tiempo real 75 73 Antepenúltima señal de tiempo real [all …]
|
/freebsd/tools/regression/security/access/ |
H A D | testaccess.c | 1 /*- 51 * Note that this test uses two hard-coded non-root UIDs; on multi-user 88 if (error == -1) { in setup() 204 * UID-only tests. in main() 219 fprintf(stderr, "saved uid used instead of real uid\n"); in main() 245 /* Check that the real uid is used, not the effective uid */ in main() 248 fprintf(stderr, "Effective uid was used instead of real uid in access().\n"); in main() 253 /* Check that the effective uid is used, not the real uid */ in main() 256 fprintf(stderr, "Real uid was used instead of effective uid in eaccess().\n"); in main() 261 /* Check that the real uid is used, not the effective uid */ in main() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_interceptors.cpp | 1 //===-- memprof_interceptors.cpp -----------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 29 if (REAL(strnlen)) { in MaybeRealStrnlen() 30 return REAL(strnlen)(s, maxlen); in MaybeRealStrnlen() 39 memprofThreadRegistry().SetThreadName(t->tid(), name); in SetThreadName() 49 // ---------------------- Wrappers ---------------- {{{1 67 return REAL(func)(__VA_ARGS__); \ 90 #define COMMON_INTERCEPTOR_BLOCK_REAL(name) REAL(name) [all …]
|
/freebsd/lib/libsys/ |
H A D | setuid.2 | 53 sets the real and effective 54 user IDs and the saved set-user-ID of the current process 57 .\" The real user ID and the saved set-user-ID are changed only if the 67 system call is permitted if the specified ID is equal to the real user ID 69 .\" or the saved set-user-ID 77 sets the real and effective 78 group IDs and the saved set-group-ID of the current process 81 .\" The real group ID and the saved set-group-ID are changed only if the 91 system call is permitted if the specified ID is equal to the real group ID 93 .\" or the saved set-group-ID [all …]
|