Home
last modified time | relevance | path

Searched full:alive (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDemandedBits.cpp90 // The alive bits of the input are the swapped alive bits of in determineLiveOperandBits()
95 // The alive bits of the input are the reversed alive bits of in determineLiveOperandBits()
305 // For integer-valued instructions, set up an initial empty set of alive in performAnalysis()
343 LLVM_DEBUG(dbgs() << " Alive Out: 0x" in performAnalysis()
354 // Compute the set of alive bits for each operand. These are anded into the in performAnalysis()
355 // existing set, if any, and if that changes the set of alive bits, the in performAnalysis()
371 // Bits of each operand that are used to compute alive bits of the in performAnalysis()
372 // output are alive, all others are dead. in performAnalysis()
384 // If we've added to the set of alive bits (or the operand has not in performAnalysis()
509 // First, the alive carry bits are determined from the alive output bits: in determineLiveOperandBitsAddCarry()
[all …]
H A DStackLifetime.cpp178 // ::Maybe true bits represent "may be alive" allocas, ::Must true bits in calculateLocalLiveness()
180 // "may be dead" to "must be alive". in calculateLocalLiveness()
217 // "may be alive" is set by lifetime start. in calculateLocalLiveness()
236 // Convert from "may be dead" to "must be alive". in calculateLocalLiveness()
367 OS << " ; Alive: <" << llvm::join(Names, " ") << ">\n"; in printInstrAlive()
389 OS << "\n ; Alive: <" << llvm::join(Names, " ") << ">\n"; in printInfoComment()
/freebsd/share/examples/ppp/
H A Dppp.conf.sample264 # We don't want certain packets to keep our connection alive
266 set filter alive 0 deny udp src eq 520 # routed
267 set filter alive 1 deny udp dst eq 520 # routed
268 set filter alive 2 deny udp src eq 513 # rwhod
269 set filter alive 3 deny udp src eq 525 # timed
270 set filter alive 4 deny udp src eq 137 # NetBIOS name service
271 set filter alive 5 deny udp src eq 138 # NetBIOS datagram service
272 set filter alive 6 deny tcp src eq 139 # NetBIOS session service
273 set filter alive 7 deny udp dst eq 137 # NetBIOS name service
274 set filter alive 8 deny udp dst eq 138 # NetBIOS datagram service
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDemandedBits.h67 /// Compute alive bits of one addition operand from alive output and known
74 /// Compute alive bits of one subtraction operand from alive output and known
H A DStackLifetime.h81 // Controls what is "alive" if control flow may reach the instruction
84 May, // May be alive on some path.
85 Must, // Must be alive on every path.
157 /// Returns true if the alloca is alive after the instruction.
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dsnps,dwc-ahci-common.yaml31 PM-alive clock, RxOOB detection clock, embedded PHYs reference (Rx/Tx)
47 - description: Power Module keep-alive clock
74 - description: Power Module keep-alive clock domain reset control
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h70 /// either alive or maybe alive. We don't mark anything explicitly dead (even
71 /// if we know they are), since anything not alive with no registered uses
72 /// (in Uses) will never be marked alive and will thus become dead in the end.
/freebsd/sys/contrib/dev/iwlwifi/fw/api/
H A Dalive.h10 /* alive response is_valid values */
14 /* alive response ver_type values */
24 /* alive response ver_subtype values */
H A Dpower.h112 * @keep_alive_seconds: Keep alive period in seconds. Default - 25 sec.
113 * Minimum allowed:- 3 * DTIM. Keep alive period must be
178 * @keep_alive_seconds: Keep alive period in seconds. Default - 25 sec.
179 * Minimum allowed:- 3 * DTIM. Keep alive period must be
332 * note: if not changed, the command is used for keep alive only.
353 * note: if not changed, the command is used for keep alive only.
374 * note: if not changed, the command is used for keep alive only.
397 * note: if not changed, the command is used for keep alive only.
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dleds-tlc591xx.txt35 alive@9 {
36 label = "wrt1900ac:green:alive";
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_arg_retval.h24 // Primary goal of the class is to keep alive arg and retval pointer for leak
79 // Returns all arg and retval which are considered alive.
93 // will keep pointers alive forever, missing leaks caused by cancelation.
H A Dsanitizer_thread_registry.cpp123 uptr *alive) { in GetNumberOfThreads() argument
128 if (alive) *alive = alive_threads_; in GetNumberOfThreads()
153 Printf("race: limit on %u simultaneously alive goroutines is exceeded," in CreateThread()
/freebsd/usr.sbin/ppp/
H A Dradius.c1272 what = "ALIVE"; in radius_Account()
1336 timer_Stop(&bundle->radius.alive.timer); in radius_alive()
1337 bundle->radius.alive.timer.load = bundle->radius.alive.interval * SECTICKS; in radius_alive()
1338 if (bundle->radius.alive.timer.load) { in radius_alive()
1341 timer_Start(&bundle->radius.alive.timer); in radius_alive()
1348 if (*bundle->radius.cfg.file && bundle->radius.alive.interval) { in radius_StartTimer()
1349 bundle->radius.alive.timer.func = radius_alive; in radius_StartTimer()
1350 bundle->radius.alive.timer.name = "radius alive"; in radius_StartTimer()
1351 bundle->radius.alive.timer.load = bundle->radius.alive.interval * SECTICKS; in radius_StartTimer()
1352 bundle->radius.alive.timer.arg = bundle; in radius_StartTimer()
[all …]
H A Dbundle.h32 #define PHASE_NETWORK 3 /* We're alive ! */
128 struct filter alive; /* keep-alive packet filter */ member
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dcap11xx.txt72 alive@2 {
73 label = "cap11xx:green:alive";
/freebsd/sys/ofed/include/rdma/
H A Duverbs_types.h114 * Objects type classes which support a detach state (object is still alive but
154 * alive, regardless if this uobject is still alive in the context's objects
/freebsd/contrib/lutok/
H A Dc_gate.cpp35 /// \param state_ The state to connect to. This object must remain alive while
36 /// the newly-constructed state_c_gate is alive.
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DSEHFrameSupport.h24 /// This pass adds keep-alive edge from SEH frame sections
37 // This adds some unnecessary keep-alive edges to unwind info blocks, in operator()
/freebsd/contrib/kyua/utils/sqlite/
H A Dc_gate.cpp42 /// \param database_ The database to connect to. This object must remain alive
43 /// while the newly-constructed database_c_gate is alive.
/freebsd/contrib/ntp/sntp/libevent/sample/
H A Dhttp-connect.c118 evhttp_add_header(req->output_headers, "Connection", "keep-alive"); in main()
119 evhttp_add_header(req->output_headers, "Proxy-Connection", "keep-alive"); in main()
/freebsd/contrib/netbsd-tests/fs/ffs/
H A Dt_mount.c83 atf_tc_fail("not expecting to be alive"); in ATF_TC_BODY()
124 atf_tc_fail("not expecting to be alive"); in ATF_TC_BODY()
/freebsd/contrib/libevent/sample/
H A Dhttp-connect.c118 evhttp_add_header(req->output_headers, "Connection", "keep-alive"); in main()
119 evhttp_add_header(req->output_headers, "Proxy-Connection", "keep-alive"); in main()
/freebsd/lib/libsys/
H A Dpdfork.2106 process represented by the process descriptor is still alive.
125 is set; if the process is still alive and this is
/freebsd/contrib/llvm-project/lld/ELF/
H A DMarkLive.cpp139 // The last kind of relocation cannot keep the referred section alive, or they
140 // would keep everything alive in a common object file. In fact, each FDE is
141 // alive if the section it refers to is alive.
143 // other two keep the referred section alive.
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectQuit.cpp29 // returns true if there is at least one alive process is_a_detach will be true
30 // if all alive processes will be detached when you quit and false if at least

12345678910>>...19