Home
last modified time | relevance | path

Searched refs:update (Results 1 – 25 of 751) sorted by relevance

12345678910>>...31

/freebsd-13.1/contrib/ntp/scripts/update-leap/
H A DMakefile.am33 update-leap.1update-leapman \
34 update-leap.1update-leapmdoc \
35 update-leap.in \
38 update-leap.sh \
56 $(srcdir)/update-leap: $(srcdir)/update-leap-opts
59 $(srcdir)/update-leap-opts: update-leap-opts.def $(std_def_list)
64 $(srcdir)/update-leap.1update-leapman: $(srcdir)/update-leap-opts.def $(std_def_list)
67 $(srcdir)/update-leap.man.in: $(srcdir)/update-leap.1update-leapman $(top_srcdir)/sntp/scripts/mans…
69 mv $(srcdir)/update-leap.man.in+ $(srcdir)/update-leap.man.in
73 $(srcdir)/update-leap.1update-leapmdoc: $(srcdir)/update-leap-opts.def $(std_def_list)
[all …]
H A Dupdate-leap.texi3 @setfilename update-leap.info
4 @settitle update-leap User's Manual
10 This file documents the use of @code{update-leap},
18 * update-leap: (update-leap). Check the leapfile and update it if needed.
22 @title update-leap User's Manual
23 @subtitle update-leap, version @value{VERSION}, @value{UPDATED}
30 @node Top, update-leap Description, (dir), (dir)
34 This document applies to version @value{VERSION} of @code{update-leap}.
39 * update-leap Description:: Description
40 * update-leap Invocation:: Invoking update-leap
[all …]
H A Dinvoke-update-leap.texi1 @node update-leap Invocation
2 @section Invoking update-leap
3 @pindex update-leap
16 @code{update-leap}
45 * update-leap usage:: update-leap help/usage (@option{--help})
51 * update-leap force-update:: force-update option (-F)
57 @node update-leap usage
59 @cindex update-leap help
159 @node update-leap ipv4
225 @node update-leap force-update
[all …]
H A DMakefile.in493 update-leap.1update-leapman \
494 update-leap.1update-leapmdoc \
933 $(srcdir)/update-leap: $(srcdir)/update-leap-opts
936 $(srcdir)/update-leap-opts: update-leap-opts.def $(std_def_list)
941 $(srcdir)/update-leap.1update-leapman: $(srcdir)/update-leap-opts.def $(std_def_list)
944 $(srcdir)/update-leap.man.in: $(srcdir)/update-leap.1update-leapman $(top_srcdir)/sntp/scripts/mans…
946 mv $(srcdir)/update-leap.man.in+ $(srcdir)/update-leap.man.in
950 $(srcdir)/update-leap.1update-leapmdoc: $(srcdir)/update-leap-opts.def $(std_def_list)
953 $(srcdir)/update-leap.mdoc.in: $(srcdir)/update-leap.1update-leapmdoc $(top_srcdir)/sntp/scripts/ma…
955 mv $(srcdir)/update-leap.mdoc.in+ $(srcdir)/update-leap.mdoc.in
[all …]
H A Dupdate-leap-opts1 # EDIT THIS FILE WITH CAUTION (update-leap-opts)
4 # From the definitions update-leap-opts.def
37 'force-update' => '',
44 'expiration|e=s', 'ntp-conf-file|f=s', 'force-update|F',
49 update-leap - leap-seconds file manager/updater - Ver. 4.2.8p15
50 USAGE: update-leap [ -<flag> [<val>] | --<name>[{=| }<val>] ]...
57 -F, --force-update Force update of the leapfile
/freebsd-13.1/sys/contrib/ck/include/
H A Dck_fifo.h278 update.pointer = next.pointer; in ck_fifo_mpmc_enqueue()
286 update.pointer = entry; in ck_fifo_mpmc_enqueue()
296 update.generation = tail.generation + 1; in ck_fifo_mpmc_enqueue()
331 update.pointer = next.pointer; in ck_fifo_mpmc_tryenqueue()
332 update.generation = tail.generation + 1; in ck_fifo_mpmc_tryenqueue()
340 update.pointer = entry; in ck_fifo_mpmc_tryenqueue()
341 update.generation = next.generation + 1; in ck_fifo_mpmc_tryenqueue()
349 update.generation = tail.generation + 1; in ck_fifo_mpmc_tryenqueue()
373 update.pointer = next.pointer; in ck_fifo_mpmc_dequeue()
428 update.pointer = next.pointer; in ck_fifo_mpmc_trydequeue()
[all …]
H A Dck_hp_stack.h57 struct ck_stack_entry *entry, *update; in ck_hp_stack_pop_mpmc() local
73 update = ck_pr_load_ptr(&target->head); in ck_hp_stack_pop_mpmc()
74 while (entry != update) { in ck_hp_stack_pop_mpmc()
75 ck_hp_set_fence(record, 0, update); in ck_hp_stack_pop_mpmc()
76 entry = update; in ck_hp_stack_pop_mpmc()
77 update = ck_pr_load_ptr(&target->head); in ck_hp_stack_pop_mpmc()
78 if (update == NULL) in ck_hp_stack_pop_mpmc()
H A Dck_stack.h197 struct ck_stack original, update; in ck_stack_pop_mpmc() local
208 update.generation = original.generation + 1; in ck_stack_pop_mpmc()
209 update.head = original.head->next; in ck_stack_pop_mpmc()
211 while (ck_pr_cas_ptr_2_value(target, &original, &update, &original) == false) { in ck_stack_pop_mpmc()
215 update.generation = original.generation + 1; in ck_stack_pop_mpmc()
219 update.head = original.head->next; in ck_stack_pop_mpmc()
231 struct ck_stack original, update; in ck_stack_trypop_mpmc() local
239 update.generation = original.generation + 1; in ck_stack_trypop_mpmc()
241 update.head = original.head->next; in ck_stack_trypop_mpmc()
243 if (ck_pr_cas_ptr_2_value(target, &original, &update, &original) == true) { in ck_stack_trypop_mpmc()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DStructuralHash.cpp28 void update(uint64_t V) { Hash = hashing::detail::hash_16_bytes(Hash, V); } in update() function in __anonab81b96b0111::details::StructuralHash
33 void update(const Function &F) { in update() function in __anonab81b96b0111::details::StructuralHash
37 update(F.isVarArg()); in update()
38 update(F.arg_size()); in update()
47 update(45798); // Block header in update()
49 update(Inst.getOpcode()); in update()
60 void update(const Module &M) { in update() function in __anonab81b96b0111::details::StructuralHash
62 update(F); in update()
74 H.update(F); in StructuralHash()
80 H.update(M); in StructuralHash()
/freebsd-13.1/sys/dev/bhnd/cores/chipc/
H A Dchipc_gpio.c68 struct chipc_gpio_update *update,
72 struct chipc_gpio_update *update);
607 struct chipc_gpio_update *update) in chipc_gpio_commit_update() argument
617 &update->timeroutmask); in chipc_gpio_commit_update()
650 CC_GPIO_UPDATE(update, pin_num, out, false); in chipc_gpio_pin_update()
653 CC_GPIO_UPDATE(update, pin_num, ctrl, false); in chipc_gpio_pin_update()
666 CC_GPIO_UPDATE(update, pin_num, outen, true); in chipc_gpio_pin_update()
668 CC_GPIO_UPDATE(update, pin_num, ctrl, false); in chipc_gpio_pin_update()
671 CC_GPIO_UPDATE(update, pin_num, out, true); in chipc_gpio_pin_update()
684 CC_GPIO_UPDATE(update, pin_num, out, false); in chipc_gpio_pin_update()
[all …]
/freebsd-13.1/sys/dev/isci/scil/
H A Dsci_base_observer.c77 SCI_BASE_OBSERVER_UPDATE_T update in sci_base_observer_construct() argument
81 this_observer->update = update; in sci_base_observer_construct()
88 SCI_BASE_OBSERVER_UPDATE_T update, in sci_base_observer_initialize() argument
92 sci_base_observer_construct(the_observer, update); in sci_base_observer_initialize()
103 if (this_observer->update != NULL) in sci_base_observer_update()
105 this_observer->update(this_observer, the_subject); in sci_base_observer_update()
H A Dsci_base_observer.h104 SCI_BASE_OBSERVER_UPDATE_T update; member
120 SCI_BASE_OBSERVER_UPDATE_T update
137 SCI_BASE_OBSERVER_UPDATE_T update,
/freebsd-13.1/contrib/bmake/mk/
H A Ddirdeps-cache-update.mk82 .if ${.MAKE.LEVEL} == 0 && !make(cache-update)
97 …{STATIC_DIRDEPS_CACHE:H}/cache-update ${STATIC_DIRDEPS_CACHE:H:H}/cache-update ${STATIC_DIRDEPS_CA…
104 DYNAMIC_DIRDEPS_CACHE := ${OBJTOP}/dirdeps.cache.${STATIC_DIRDEPS_CACHE:H:T}-update
121 ${.MAKE} -C ${SRCTOP} -f ${RELDIR}/Makefile cache-update \
126 .elif ${.MAKE.LEVEL} == 0 && make(cache-update) && !target(cache-update)
140 cache-update: ${DIRDEPS_CACHE}
160 all: cache-update
170 cache-update: cache-built
/freebsd-13.1/crypto/openssh/
H A D.skipped-commit-ids5 1de0e85522051eb2ffa00437e1885e9d7b3e0c2e moduli update
7 04431e8e7872f49a2129bf080a6b73c19d576d40 moduli update
8 c07772f58028fda683ee6abd41c73da3ff70d403 moduli update
9 db6375fc302e3bdf07d96430c63c991b2c2bd3ff moduli update
14 58ec755be4e51978ecfee73539090eb68652a987 moduli update
19 7b7b619c1452a459310b0cf4391c5757c6bdbc0f moduli update
20 5010ff08f7ad92082e87dde098b20f5c24921a8f moduli regen script update
21 3bcae7a754db3fc5ad3cab63dd46774edb35b8ae moduli regen script update
22 52ff0e3205036147b2499889353ac082e505ea54 moduli update
25 7ac6c252d2a5be8fbad4c66d9d35db507c9dac5b moduli update
/freebsd-13.1/sys/contrib/openzfs/etc/init.d/
H A DREADME.md45 update-rc.d zfs-import start 07 S . stop 07 0 1 6 .
46 update-rc.d zfs-load-key start 02 2 3 4 5 . stop 06 0 1 6 .
47 update-rc.d zfs-mount start 02 2 3 4 5 . stop 06 0 1 6 .
48 update-rc.d zfs-zed start 07 2 3 4 5 . stop 08 0 1 6 .
49 update-rc.d zfs-share start 27 2 3 4 5 . stop 05 0 1 6 .
61 rc-update add zfs-import boot
62 rc-update add zfs-load-key boot
63 rc-update add zfs-mount boot
64 rc-update add zfs-zed default
65 rc-update add zfs-share default
/freebsd-13.1/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_inlines_b.h83 prof_sample_check(tsd_t *tsd, size_t usize, bool update) { in prof_sample_check() argument
84 ssize_t check = update ? 0 : usize; in prof_sample_check()
87 if (update) { in prof_sample_check()
101 prof_sample_accum_update(tsd_t *tsd, size_t usize, bool update, in prof_sample_accum_update() argument
108 if (likely(prof_sample_check(tsd, usize, update))) { in prof_sample_accum_update()
131 if (!booted && prof_sample_check(tsd, usize, update)) { in prof_sample_accum_update()
139 if (update) { in prof_sample_accum_update()
146 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) { in prof_alloc_prep() argument
153 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update, in prof_alloc_prep()
/freebsd-13.1/share/examples/diskless/
H A Dclone_root105 update() { function
124 update
128 update) # clean and rebuild mountpoints and device entries
129 update
/freebsd-13.1/contrib/blacklist/diff/
H A Dnamed.diff64 update.c xfrout.c zoneconf.c ${SRCS_UNIX}
78 #include <named/update.h>
153 Index: dist/bin/named/update.c
155 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/update.c,v
157 diff -u -u -r1.9 update.c
158 --- dist/bin/named/update.c 10 Dec 2014 04:37:52 -0000 1.9
159 +++ dist/bin/named/update.c 23 Jan 2015 21:37:09 -0000
162 #include <named/update.h>
168 * This module implements dynamic update as in RFC2136.
184 "update '%s/%s' denied", namebuf, classbuf);
/freebsd-13.1/usr.sbin/freebsd-update/
H A DMakefile3 CONFS= freebsd-update.conf
4 SCRIPTS=freebsd-update.sh
5 MAN= freebsd-update.8
/freebsd-13.1/sys/contrib/libsodium/regen-msvc/
H A Dregen-msvc.py103 sbox.update({"platform": "v140"})
118 sbox.update({"platform": "v141"})
122 sbox.update({"platform": "v140"})
126 sbox.update({"platform": "v120"})
130 sbox.update({"platform": "v110"})
134 sbox.update({"platform": "v100"})
/freebsd-13.1/sys/contrib/openzfs/tests/test-runner/bin/
H A Dzts-report.py.in183 known.update({
192 known.update({
268 maybe.update({
282 maybe.update({
300 known.update({
322 maybe.update({
326 maybe.update({
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dbarrier34 [[nodiscard]] arrival_token arrive(ptrdiff_t update = 1);
132 arrival_token arrive(ptrdiff_t update)
135 for(; update; --update)
196 arrival_token arrive(ptrdiff_t update)
199 auto const __result = __arrived.fetch_sub(update, memory_order_acq_rel) - update;
253 arrival_token arrive(ptrdiff_t update)
255 auto const __inc = __arrived_unit * update;
302 arrival_token arrive(ptrdiff_t update = 1)
304 return __b.arrive(update);
/freebsd-13.1/contrib/bsnmp/snmp_mibII/
H A DmibII_ipaddr.c46 struct update { struct
70 create(struct update *upd) in create() argument
105 modify(struct update *upd, struct mibifa *ifa) in modify()
145 destroy(struct snmp_context *ctx __unused, struct update *upd, in destroy()
161 struct update *upd = (struct update *)dep; in update_func()
225 struct update *upd; in op_ipaddr()
256 if ((upd = (struct update *)snmp_dep_lookup(ctx, in op_ipaddr()
/freebsd-13.1/crypto/openssl/crypto/evp/
H A Dm_md5_sha1.c34 static int update(EVP_MD_CTX *ctx, const void *data, size_t count) in update() function
73 if (update(ctx, ms, mslen) <= 0) in ctrl()
96 if (update(ctx, ms, mslen) <= 0) in ctrl()
129 update,
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeHashing.cpp41 S.update(RecordData.take_front(sizeof(RecordPrefix))); in hashType()
47 S.update(PreData); in hashType()
69 S.update(BytesToHash); in hashType()
77 S.update(TrailingBytes); in hashType()

12345678910>>...31