Home
last modified time | relevance | path

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

12345678910>>...32

/freebsd/crypto/openssl/test/ssl-tests/
H A D21-key-update.cnf5 test-0 = 0-update-key-client-update-not-requested
6 test-1 = 1-update-key-server-update-not-requested
7 test-2 = 2-update-key-client-update-requested
8 test-3 = 3-update-key-server-update-requested
11 [0-update-key-client-update-not-requested]
12 ssl_conf = 0-update-key-client-update-not-requested-ssl
14 [0-update-key-client-update-not-requested-ssl]
15 server = 0-update-key-client-update-not-requested-server
16 client = 0-update-key-client-update-not-requested-client
18 [0-update-key-client-update-not-requested-server]
[all …]
H A D21-key-update.cnf.in19 name => "update-key-client-update-not-requested",
30 name => "update-key-server-update-not-requested",
41 name => "update-key-client-update-requested",
52 name => "update-key-server-update-requested",
/freebsd/contrib/ntp/scripts/update-leap/
H A DMakefile.am18 EXTRA_SCRIPTS= update-leap
23 man_MANS= update-leap.$(UPDATE_LEAP_MS)
25 noinst_MANS= update-leap.$(UPDATE_LEAP_MS)
29 invoke-update-leap.menu \
30 invoke-update-leap.texi \
31 update-leap-opts.def \
32 update-leap-opts \
33 update-leap.1update-leapman \
34 update-leap.1update-leapmdoc \
35 update-leap.in \
[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)
32 This document describes the use of the NTP Project's @code{update-leap} program.
34 This document applies to version @value{VERSION} of @code{update-leap}.
39 * update-leap Description:: Description
[all …]
H A Dinvoke-update-leap.texi1 @node update-leap Invocation
2 @section Invoking update-leap
3 @pindex update-leap
7 # EDIT THIS FILE WITH CAUTION (invoke-update-leap.texi)
10 # From the definitions update-leap-opts.def
16 @code{update-leap}
42 using the @code{agtexi-cmd} template and the option descriptions for the @code{update-leap} program.
45 * update-leap usage:: update-leap help/usage (@option{--help})
46 * update
[all...]
H A DMakefile.in92 subdir = scripts/update-leap
139 CONFIG_CLEAN_FILES = update-leap
198 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/update-leap.in
484 EXTRA_SCRIPTS = update-leap
487 @INSTALL_UPDATE_LEAP_TRUE@man_MANS = update-leap.$(UPDATE_LEAP_MS)
488 @INSTALL_UPDATE_LEAP_FALSE@noinst_MANS = update-leap.$(UPDATE_LEAP_MS)
490 invoke-update-leap.menu \
491 invoke-update-leap.texi \
492 update-leap-opts.def \
493 update
[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.8p18
50 USAGE: update-leap [ -<flag> [<val>] | --<name>[{=| }<val>] ]...
57 -F, --force-update Force update of the leapfile
/freebsd/sys/contrib/ck/include/
H A Dck_fifo.h249 struct ck_fifo_mpmc_pointer tail, next, update; in ck_fifo_mpmc_enqueue() local
278 update.pointer = next.pointer; in ck_fifo_mpmc_enqueue()
279 update.generation = tail.generation + 1; in ck_fifo_mpmc_enqueue()
280 ck_pr_cas_ptr_2(&fifo->tail, &tail, &update); in ck_fifo_mpmc_enqueue()
286 update.pointer = entry; in ck_fifo_mpmc_enqueue()
287 update.generation = next.generation + 1; in ck_fifo_mpmc_enqueue()
288 if (ck_pr_cas_ptr_2(&tail.pointer->next, &next, &update) == true) in ck_fifo_mpmc_enqueue()
296 update.generation = tail.generation + 1; in ck_fifo_mpmc_enqueue()
297 ck_pr_cas_ptr_2(&fifo->tail, &tail, &update); in ck_fifo_mpmc_enqueue()
306 struct ck_fifo_mpmc_pointer tail, next, update; in ck_fifo_mpmc_tryenqueue() local
[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/sys/crypto/
H A Dchacha20_poly1305.c52 exf->update(ctx, aad, aad_len); in chacha20_poly1305_encrypt()
54 exf->update(ctx, zeroes, in chacha20_poly1305_encrypt()
61 exf->update(ctx, dst, todo); in chacha20_poly1305_encrypt()
68 exf->update(ctx, dst, resid); in chacha20_poly1305_encrypt()
71 exf->update(ctx, zeroes, in chacha20_poly1305_encrypt()
77 exf->update(ctx, lengths, sizeof(lengths)); in chacha20_poly1305_encrypt()
107 exf->update(ctx, aad, aad_len); in chacha20_poly1305_decrypt()
109 exf->update(ctx, zeroes, in chacha20_poly1305_decrypt()
111 exf->update(ctx, src, resid); in chacha20_poly1305_decrypt()
113 exf->update(ctx, zeroes, in chacha20_poly1305_decrypt()
[all …]
/freebsd/sys/dev/bhnd/cores/chipc/
H A Dchipc_gpio.c63 struct chipc_gpio_update *update,
67 struct chipc_gpio_update *update);
602 struct chipc_gpio_update *update) in chipc_gpio_commit_update() argument
607 chipc_gpio_commit_reg(sc, CHIPC_GPIOPD, &update->pulldown); in chipc_gpio_commit_update()
608 chipc_gpio_commit_reg(sc, CHIPC_GPIOPU, &update->pullup); in chipc_gpio_commit_update()
612 &update->timeroutmask); in chipc_gpio_commit_update()
613 chipc_gpio_commit_reg(sc, CHIPC_GPIOOUT, &update->out); in chipc_gpio_commit_update()
616 chipc_gpio_commit_reg(sc, CHIPC_GPIOOUTEN, &update->outen); in chipc_gpio_commit_update()
617 chipc_gpio_commit_reg(sc, CHIPC_GPIOCTRL, &update->ctrl); in chipc_gpio_commit_update()
628 struct chipc_gpio_update *update, uint32_t pin_num, uint32_t flags) in chipc_gpio_pin_update() argument
[all …]
/freebsd/crypto/openssh/
H A D.skipped-commit-ids6 1de0e85522051eb2ffa00437e1885e9d7b3e0c2e moduli update
8 04431e8e7872f49a2129bf080a6b73c19d576d40 moduli update
9 c07772f58028fda683ee6abd41c73da3ff70d403 moduli update
10 db6375fc302e3bdf07d96430c63c991b2c2bd3ff moduli update
15 58ec755be4e51978ecfee73539090eb68652a987 moduli update
20 7b7b619c1452a459310b0cf4391c5757c6bdbc0f moduli update
21 5010ff08f7ad92082e87dde098b20f5c24921a8f moduli regen script update
22 3bcae7a754db3fc5ad3cab63dd46774edb35b8ae moduli regen script update
23 52ff0e3205036147b2499889353ac082e505ea54 moduli update
26 7ac6c252d2a5be8fbad4c66d9d35db507c9dac5b moduli update
[all …]
/freebsd/sys/dev/isci/scil/
H A Dsci_base_observer.c75 SCI_BASE_OBSERVER_UPDATE_T update in sci_base_observer_construct() argument
79 this_observer->update = update; in sci_base_observer_construct()
86 SCI_BASE_OBSERVER_UPDATE_T update, in sci_base_observer_initialize() argument
90 sci_base_observer_construct(the_observer, update); in sci_base_observer_initialize()
101 if (this_observer->update != NULL) in sci_base_observer_update()
103 this_observer->update(this_observer, the_subject); in sci_base_observer_update()
/freebsd/contrib/bmake/mk/
H A Ddirdeps-cache-update.mk3 # $Id: dirdeps-cache-update.mk,v 1.23 2024/02/17 17:26:57 sjg Exp $
44 # cache-update target into the build to regenerate dirdeps.cache
46 # If MK_STATIC_DIRDEPS_CACHE_UPDATE_IMMEDIATE is "yes" we update
47 # STATIC_DIRDEPS_CACHE as soon as the update is ready,
56 # for a target other than cache-update we simply copy
60 # If we are included for the target cache-update we take care of
69 -e '/cache-update/d'
84 .if ${.MAKE.LEVEL} == 0 && !make(cache-update)
94 # so need to hook cache-update to dirdeps now.
99 .for d in ${STATIC_DIRDEPS_CACHE:H}/cache-update
[all...]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DStructuralHash.cpp100 void update(const Function &F, bool DetailedHash) {
134 void update(const GlobalVariable &GV) {
144 void update(const Module &M, bool DetailedHash) {
146 update(GV);
148 update(F, DetailedHash);
158 H.update(F, DetailedHash);
164 H.update(M, DetailedHash);
30 void update(const Function &F) { update() function in __anon8dbff9370111::StructuralHashImpl
60 void update(const GlobalVariable &GV) { update() function in __anon8dbff9370111::StructuralHashImpl
70 void update(const Module &M) { update() function in __anon8dbff9370111::StructuralHashImpl
/freebsd/contrib/llvm-project/libcxx/modules/
H A Dstd.compat.cppm.in58 # error "please update the header information for <debugging> in headers_not_available in utils/…
61 # error "please update the header information for <flat_map> in headers_not_available in utils/l…
64 # error "please update the header information for <flat_set> in headers_not_available in utils/l…
67 # error "please update the header information for <generator> in headers_not_available in utils/…
70 # error "please update the header information for <hazard_pointer> in headers_not_available in u…
73 # error "please update the header information for <inplace_vector> in headers_not_available in u…
76 # error "please update the header information for <linalg> in headers_not_available in utils/lib…
79 # error "please update the header information for <rcu> in headers_not_available in utils/libcxx…
82 # error "please update the header information for <spanstream> in headers_not_available in utils…
85 # error "please update the header information for <stacktrace> in headers_not_available in utils…
[all …]
H A Dstd.cppm.in180 # error "please update the header information for <debugging> in headers_not_available in utils/…
183 # error "please update the header information for <flat_map> in headers_not_available in utils/l…
186 # error "please update the header information for <flat_set> in headers_not_available in utils/l…
189 # error "please update the header information for <generator> in headers_not_available in utils/…
192 # error "please update the header information for <hazard_pointer> in headers_not_available in u…
195 # error "please update the header information for <inplace_vector> in headers_not_available in u…
198 # error "please update the header information for <linalg> in headers_not_available in utils/lib…
201 # error "please update the header information for <rcu> in headers_not_available in utils/libcxx…
204 # error "please update the header information for <spanstream> in headers_not_available in utils…
207 # error "please update the header information for <stacktrace> in headers_not_available in utils…
[all …]
/freebsd/sys/contrib/openzfs/etc/init.d/
H A DREADME.md41 update-rc.d zfs-import start 07 S . stop 07 0 1 6 .
42 update-rc.d zfs-load-key start 02 2 3 4 5 . stop 06 0 1 6 .
43 update-rc.d zfs-mount start 02 S . stop 06 0 1 6 .
44 update-rc.d zfs-zed start 07 2 3 4 5 . stop 08 0 1 6 .
45 update-rc.d zfs-share start 27 2 3 4 5 . stop 05 0 1 6 .
57 rc-update add zfs-import boot
58 rc-update add zfs-load-key boot
59 rc-update add zfs-mount boot
60 rc-update add zfs-zed default
61 rc-update ad
[all...]
/freebsd/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/contrib/llvm-project/llvm/include/llvm/Support/
H A DHashBuilder.h48 /// Forward to `HasherT::update(ArrayRef<uint8_t>)`.
53 void update(ArrayRef<uint8_t> Data) { this->getHasher().update(Data); } in update() function
55 /// Forward to `HasherT::update(ArrayRef<uint8_t>)`.
60 void update(StringRef Data) { in update() function
61 update( in update()
95 /// * void update(ArrayRef<uint8_t> Data)
117 /// `update(ArrayRef<uint8_t> Data)` method. We want to avoid collisions for
134 /// `void update(ArrayRef<uint8_t>)` method, endianness plays a role in the hash in add()
168 // through the `update` fas
407 void update(ArrayRef<uint8_t> Data) { update() function
[all...]
/freebsd/contrib/blocklist/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/crypto/openssl/
H A DHACKING.md15 make update
19 `make update` ensures that your functions declarations are added to
26 after running `make update` to ensure that documentation has correct format.
28 `make update` also generates files related to OIDs (in the `crypto/objects/`
31 generated files need to be removed and regenerated using `make update`.
/freebsd/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/usr.sbin/freebsd-update/
H A DMakefile1 CONFS= freebsd-update.conf
2 SCRIPTS=freebsd-update.sh
3 MAN= freebsd-update.8

12345678910>>...32