Home
last modified time | relevance | path

Searched +full:local +full:- +full:timers (Results 1 – 25 of 141) sorted by relevance

123456

/freebsd/sys/contrib/device-tree/Bindings/timer/
H A Dsamsung,exynos4210-mct.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
4 $id: http://devicetree.org/schemas/timer/samsung,exynos4210-mct.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Krzysztof Kozlowski <krzk@kernel.org>
14 global timer and CPU local timers. The global timer is a 64-bit free running
15 up-counter and can generate 4 interrupts when the counter reaches one of the
16 four preset counter values. The CPU local timers are 32-bit free running
17 down-counters and generate an interrupt when the counter expires. There is
18 one CPU local timer instantiated in MCT for every CPU in the system.
[all …]
H A Dmarvell,armada-370-xp-timer.txt1 Marvell Armada 370 and Armada XP Timers
2 ---------------------------------------
5 - compatible: Should be one of the following
6 "marvell,armada-370-timer",
7 "marvell,armada-375-timer",
8 "marvell,armada-xp-timer".
9 - interrupts: Should contain the list of Global Timer interrupts and
10 then local timer interrupts
11 - reg: Should contain location and length for timers register. First
13 local/private timers.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dmips-gic.txt4 It also supports local (per-processor) interrupts and software-generated
5 interrupts which can be used as IPIs. The GIC also includes a free-running
6 global timer, per-CPU count/compare timers, and a watchdog.
9 - compatible : Should be "mti,gic".
10 - interrupt-controller : Identifies the node as an interrupt controller
11 - #interrupt-cells : Specifies the number of cells needed to encode an
13 - The first cell is the type of interrupt, local or shared.
14 See <include/dt-bindings/interrupt-controller/mips-gic.h>.
15 - The second cell is the GIC interrupt number.
16 - The third cell encodes the interrupt flags.
[all …]
H A Dmti,gic.yaml1 # SPDX-License-Identifier: GPL-2.0-only
3 ---
4 $id: http://devicetree.org/schemas/interrupt-controller/mti,gic.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Paul Burton <paulburton@kernel.org>
11 - Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15 It also supports local (per-processor) interrupts and software-generated
16 interrupts which can be used as IPIs. The GIC also includes a free-running
17 global timer, per-CPU count/compare timers, and a watchdog.
23 "#interrupt-cells":
[all …]
/freebsd/contrib/unbound/doc/
H A DTODO9 o (option) pretend-dnssec-unaware, and pretend-edns-unaware modes for workshops.
10 o delegpt use rbtree for ns-list, to avoid slowdown for very large NS sets.
15 o command the server with TSIG inband. get-config, clearcache,
17 o timers rfc 5011 support.
25 o add dynamic-update requests (making a dynupd request) to libunbound api.
28 o add local-file: config with authority features.
29 o (option) to make local-data answers be secure for libunbound (default=no)
32 o overhaul outside-network servicedquery to merge with udpwait and tcpwait,
33 to make timers in servicedquery independent of udpwait queues.
39 …data (on local lan), stores recursion lookup. Provides one cache for multiple resolver machines, …
[all …]
H A DFEATURES11 ------------
17 EDNS0, NSEC3, IPv6, DNAME, Unknown-RR-types.
21 -------
23 RFC 1034-1035: as a recursive, caching server. Not authoritative.
28 RFC 4033-4035: as a validating caching server (unbound daemon).
43 RFC 5011: update of trust anchors with timers.
45 RFC 5358: reflectors-are-evil: access control list for recursive
50 RFC 6303: default local zones.
56 chroot and drop-root-privileges support, default enabled in config file.
69 values are provided via unbound-control stats.
[all …]
/freebsd/contrib/bsnmp/
H A DNEWS10 Fix a core dump when -d tracing suboption has no argument (thanks
18 64bit HC counters in the IF-MIB by polling the OS periodically.
26 Include a sys/tree.h from FreeBSD-current and add autoconf
31 1.11 Make the Mib2 routing table use red-black tree. This vastly
36 Lot of man-page fixes from ru@freebsd.org.
42 Periodic timers from Victor Cruceru.
44 Man-page fixes from Christian Brueffer.
48 A number of changes to facilitate building on FreeBSD-4 from
51 Add repeatable timers.
54 Change all the tick handling in the daemon from 32-bit to 64-bit.
[all …]
/freebsd/share/man/man4/
H A Dapic.436 .Bd -ragged -offset indent
42 .Bl -ohang
44 controls event timers functionality support.
51 There are two components in the Intel APIC system, the local APIC (LAPIC)
53 There is one local APIC in each CPU in the system.
56 Local APICs manage all external interrupts for a specific processor.
57 In addition, they are able to accept and generate inter-processor interrupts
61 they receive from peripheral buses to one or more local APICs.
63 Each local APIC includes one 32-bit programmable timer.
65 Event timer provided by the driver supports both one-shot and periodic modes.
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.h8 //===----------------------------------------------------------------------===//
12 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14 //===----------------------------------------------------------------------===//
25 http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#On-line_algorithm
53 notInMaster = 1 << 3, //!< statistic is valid only for non-primary threads
55 //! KMP_STATS_EVENTS is on (valid only for timers)
79 * @param macro a user defined macro that takes three arguments -
94 // clang-format off
118 // clang-format on
121 * \brief Add new timers under KMP_FOREACH_TIMER() macro in kmp_stats.h
[all …]
H A Dkmp_stats.cpp5 //===----------------------------------------------------------------------===//
9 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11 //===----------------------------------------------------------------------===//
81 sample -= offset; in addSample()
84 double delta = sample - meanVal; in addSample()
88 m2 = m2 + delta * (sample - meanVal); in addSample()
110 double delta = other.meanVal - meanVal; in operator +=()
113 // then the compiler would not be able to re-order over brackets. In C++ it in operator +=()
118 meanVal = meanVal * dscBydnsc + other.meanVal * (1 - dscBydnsc); in operator +=()
165 return i - logOffset; in minBin()
[all …]
/freebsd/sys/dev/ath/
H A Dif_ath_tdma.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
44 * by the driver - eg, calls to ath_hal_gettsf32().
136 struct ath_hal *ah = sc->sc_ah; in ath_tdma_settimers()
141 bt.bt_nextdba = (nexttbtt<<3) - sc->sc_tdmadbaprep; in ath_tdma_settimers()
142 bt.bt_nextswba = (nexttbtt<<3) - sc->sc_tdmaswbaprep; in ath_tdma_settimers()
144 /* Enables TBTT, DBA, SWBA timers by default */ in ath_tdma_settimers()
163 if (if_ath_alq_checkdebug(&sc->sc_alq, ATH_ALQ_TDMA_TIMER_SET)) { in ath_tdma_settimers()
171 t.sc_tdmadbaprep = htobe32(sc->sc_tdmadbaprep); in ath_tdma_settimers()
[all …]
/freebsd/contrib/ntp/html/hints/
H A Dvxworks.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
6 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
11 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
16 <!-- #BeginDate format:En2m -->21-Oct-2010 23:44<!-- #EndDate -->
18 …e problems. This port may help as a starting point for similar ports to real-time OS's and other e…
24 export CC=&quot;cc386 -nostdlib -m486 -DCPU=I80486 -I/usr/wind/target/h&quot;
30 ln -s ../signal.h
31 ln -s ../time.h
32 ln -s socket.h sockio.h
33 ln -s ../selectLib.h select.h
[all …]
/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.h2 * services/listen_dnsport.h - listen on port 53 for incoming DNS queries.
64 * Contains list of query-listen sockets.
278 * @return: the socket. -1 on error.
298 * @return: the socket. -1 on error.
305 * Create and bind local listening socket
307 * @param noproto: on error, this is set true if cause is that local sockets
310 * @return: the socket. -1 on error.
461 * out. Response is stored in c->buffer. Copy to rbuffer because the c->buffer
463 * @param h2_session: http2 session, containing c->buffe
[all...]
/freebsd/usr.sbin/uhsoctl/
H A Duhsoctl.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2008-2009 Fredrik Lindberg
176 struct timers { struct
191 static struct timers timers; argument
198 tmr_run(struct timers *tmrs) in tmr_run()
202 te = TAILQ_FIRST(&tmrs->head); in tmr_run()
206 te->timeout -= tmrs->res; in tmr_run()
207 while (te->timeout <= 0) { in tmr_run()
209 TAILQ_REMOVE(&tmrs->head, te, next); in tmr_run()
[all …]
/freebsd/contrib/llvm-project/lldb/docs/design/
H A Doverview.rst
/freebsd/share/doc/smm/11.timedop/
H A Dtimed.ms48 Command under contract No. N00039-84-C-0089, and by the CSELT
56 .EH 'SMM:11-%''Timed Installation and Operation'
57 .OH 'Timed Installation and Operation''SMM:11-%'
63 time daemons (\fItimed\fP) running on the machines in a local
65 The algorithms implemented by the service is based on a master-slave scheme.
72 of the various hosts in a local area network.
111 terminate (for example, because of a run-time error), or
119 The machines that are gateways between distinct local area
142 augmented with point-to-point links.
143 Machines that are only connected to point-to-point,
[all …]
/freebsd/sys/contrib/xen/arch-x86/hvm/
H A Dsave.h3 * be saved along with the domain's memory and device-model state.
53 * - Pre-3.4 didn't have msr_tsc_aux
54 * - Pre-4.7 didn't have fpu_initialised
291 * be able to do the modification in-place. in _hvm_hw_fix_cpu()
293 ucpu->nat.error_code = ucpu->cmp.error_code; in _hvm_hw_fix_cpu()
294 ucpu->nat.pending_event = ucpu->cmp.pending_event; in _hvm_hw_fix_cpu()
295 ucpu->nat.tsc = ucpu->cmp.tsc; in _hvm_hw_fix_cpu()
296 ucpu->nat.msr_tsc_aux = 0; in _hvm_hw_fix_cpu()
299 ucpu->nat.flags = XEN_X86_FPU_INITIALISED; in _hvm_hw_fix_cpu()
321 * Where are we in ICW2-4 initialisation (0 means no init in progress)?
[all …]
/freebsd/contrib/sendmail/src/
H A DTRACEFLAGS1 # $Id: TRACEFLAGS,v 8.53 2013-11-27 01:27:03 gshapiro Exp $
40 29 recipient.c recipient (local users), finduser
127 98 * timers
/freebsd/contrib/bsnmp/snmpd/
H A Dsnmpd.h2 * Copyright (c) 2001-2003
40 #define PATH_SYSCONFIG "/etc:/usr/etc:/usr/local/etc"
88 * Timers
98 /* list of all current timers */
/freebsd/crypto/krb5/src/util/verto/
H A Dev.c7 * Redistribution and use in source and binary forms, with or without modifica-
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
20 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
222 /* this block tries to deduce configuration from header-defined symbols and defaults */
416 /* hp-ux has it in sys/time.h, which we unconditionally include above */
466 char pad[128 - sizeof (uint32_t)];
488 #define EV_TV_SET(tv,t) do { tv.tv_sec = (long)t; tv.tv_usec = (long)((t - tv.tv_sec) * 1e6); } whi…
489 #define EV_TS_SET(ts,t) do { ts.tv_sec = (long)t; ts.tv_nsec = (long)((t - ts.tv_sec) * 1e9); } whi…
491 /* the following is ecb.h embedded into libev - use update_ev_c to update from an external copy */
[all …]
/freebsd/sys/contrib/openzfs/man/man8/
H A Dzpool-scrub.81 .\" SPDX-License-Identifier: CDDL-1.0
10 .\" or https://opensource.org/licenses/CDDL-1.0.
28 .\" Copyright (c) 2017 Open-E, Inc. All Rights Reserved.
36 .Nm zpool-scrub
76 Because scrubbing and resilvering are I/O-intensive operations, ZFS only allows
94 .Bl -tag -width "-s"
95 .It Fl a , -all
132 .Bl -bullet -compact -offset indent
144 .Dq YYYY-MM-DD HH:MM .
146 .Bl -bullet -compact -offset indent
[all …]
/freebsd/contrib/ntp/html/
H A Dparsenew.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
6 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
13 …clock to the parse driver: Currently the implementation is being cleaned up - so not all informati…
15 <!-- #BeginDate format:En2m -->13-Oct-2010 00:33<!-- #EndDate -->
45 PARSEB_POWERUP no synchronisation - clock confused (must set then)
52 … PARSEB_LEAPADD LEAP addition warning (prior to leap happening - must set when imminent)
55 … PARSEB_LEAPDEL LEAP deletion warning (prior to leap happening - must set when imminent)
59 second - informational only)
63 PARSEB_S_LEAP supports LEAP - might set PARSEB_LEAP
64 PARSEB_S_ANTENNA supports ANTENNA - might set PARSEB_ALTERNATE
[all …]
/freebsd/sys/dev/pms/RefTisa/discovery/dm/
H A Ddmtypes.h2 *Copyright (c) 2014 PMC-Sierra, Inc. All rights reserved.
115 dmTimerRequest_t DiscoverySMPTimer; /* discovery-related SMP application Timer */
153 dmList_t MainLink; /**< in-use portcontext list */
160 /**< SAS address of the local device*/
174 /* maybe needs timers for saPhyStart() */
234 bit8 SASSpecDeviceType; /* 0 - 3; SAS_NO_DEVICE - SAS_FANOUT_EXPANDER_DEVICE */
374 /**< agsaRoot_t->osData points to this */
380 dmRoot_t dmRootNonInt; /* for non-interrupt */
385 /**< software-related initialization params used in saInitialize() */
388 /**< timers used commonly in SAS/SATA */
/freebsd/sys/netinet/
H A Digmp.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2007-2009 Bruce Simpson.
157 * System-wide globals.
160 * queue. The IGMP subsystem lock ends up being system-wide for the moment,
173 * per-link state iterators.
187 * to a vnet in ifp->if_vnet.
201 * VIMAGE-wide globals.
203 * The IGMPv3 timers themselves need to run per-image, however, for
204 * historical reasons, timers run globally. This needs to be improved.
[all …]
/freebsd/sys/netinet6/
H A Dmld6.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
33 /*-
152 * * The MLD subsystem lock ends up being system-wide for the moment,
153 * but could be per-VIMAGE later on.
158 * * MLD_LOCK covers per-link state and any global variables in this file.
160 * per-link state iterators.
192 * to a vnet in ifp->if_vnet.
200 (pin6)->s6_addr16[1] = htons((zoneid) & 0xFFFF) \
203 * VIMAGE-wide globals.
[all …]

123456