/third_party/openssl/test/ssl-tests/ |
D | 21-key-update.conf | 5 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 …]
|
D | 21-key-update.conf.in | 19 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",
|
/third_party/gstreamer/gstplugins_good/gst/goom/ |
D | goom_core.c | 191 goomInfo->update.decay_ifs--; in goom_update() 192 if (goomInfo->update.decay_ifs > 0) in goom_update() 193 goomInfo->update.ifs_incr += 2; in goom_update() 194 if (goomInfo->update.decay_ifs == 0) in goom_update() 195 goomInfo->update.ifs_incr = 0; in goom_update() 197 if (goomInfo->update.recay_ifs) { in goom_update() 198 goomInfo->update.ifs_incr -= 2; in goom_update() 199 goomInfo->update.recay_ifs--; in goom_update() 200 if ((goomInfo->update.recay_ifs == 0) && (goomInfo->update.ifs_incr <= 0)) in goom_update() 201 goomInfo->update.ifs_incr = 1; in goom_update() [all …]
|
D | plugin_info.c | 192 pp->update.lockvar = 0; in plugin_info_init() 193 pp->update.goomvar = 0; in plugin_info_init() 194 pp->update.loopvar = 0; in plugin_info_init() 195 pp->update.stop_lines = 0; in plugin_info_init() 196 pp->update.ifs_incr = 1; /* dessiner l'ifs (0 = non: > = increment) */ in plugin_info_init() 197 pp->update.decay_ifs = 0; /* disparition de l'ifs */ in plugin_info_init() 198 pp->update.recay_ifs = 0; /* dedisparition de l'ifs */ in plugin_info_init() 199 pp->update.cyclesSinceLastChange = 0; in plugin_info_init() 200 pp->update.drawLinesDuration = 80; in plugin_info_init() 201 pp->update.lineMode = pp->update.drawLinesDuration; in plugin_info_init() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/x86/cpu/intel_common/ |
D | microcode.c | 41 struct microcode_update *update) in microcode_decode_node() argument 43 update->data = fdt_getprop(blob, node, "data", &update->size); in microcode_decode_node() 44 if (!update->data) in microcode_decode_node() 47 update->header_version = fdtdec_get_int(blob, node, in microcode_decode_node() 49 update->update_revision = fdtdec_get_int(blob, node, in microcode_decode_node() 51 update->date_code = fdtdec_get_int(blob, node, in microcode_decode_node() 53 update->processor_signature = fdtdec_get_int(blob, node, in microcode_decode_node() 55 update->checksum = fdtdec_get_int(blob, node, "intel,checksum", 0); in microcode_decode_node() 56 update->loader_revision = fdtdec_get_int(blob, node, in microcode_decode_node() 58 update->processor_flags = fdtdec_get_int(blob, node, in microcode_decode_node() [all …]
|
/third_party/node/test/parallel/ |
D | test-crypto-binary-default.js | 67 .update('some data') 68 .update('to hmac') 223 .update(testCase.data) 351 .update(testCase.data) 360 .update(testCase.data) 368 const a1 = crypto.createHash('sha1').update('Test123').digest('hex'); 369 const a2 = crypto.createHash('sha256').update('Test123').digest('base64'); 370 const a3 = crypto.createHash('sha512').update('Test123').digest(); // binary 371 const a4 = crypto.createHash('sha1').update('Test123').digest('buffer'); 374 const a0 = crypto.createHash('md5').update('Test123').digest('latin1'); [all …]
|
D | test-crypto-hash.js | 16 const a1 = crypto.createHash('sha1').update('Test123').digest('hex'); 17 const a2 = crypto.createHash('sha256').update('Test123').digest('base64'); 18 const a3 = crypto.createHash('sha512').update('Test123').digest(); // buffer 19 const a4 = crypto.createHash('sha1').update('Test123').digest('buffer'); 45 const a0 = crypto.createHash(cryptoType).update('Test123').digest(digest); 91 const h1 = crypto.createHash('sha1').update('Test123').digest('hex'); 92 const h2 = crypto.createHash('sha1').update('Test').update('123').digest('hex'); 100 sha1Hash.update(data); 128 () => crypto.createHash('sha256').update(), 137 const hutf8 = crypto.createHash('sha512').update('УТФ-8 text').digest('hex'); [all …]
|
D | test-crypto-cipher-decipher.js | 29 let ciph = cipher.update(plaintext, 'utf8', 'hex'); 34 let txt = decipher.update(ciph, 'hex', 'utf8'); 66 let ciph = cipher.update(plaintext, 'utf8', 'base64'); 70 let txt = decipher.update(ciph, 'base64', 'utf8'); 107 () => crypto.createCipher('aes-256-cbc', 'secret').update(null), 163 const s = c.update('test', 'utf8', 'base64') + c.final('base64'); 184 c.update('update'); 192 c.update('update', ''); // Defaults to "utf8". 196 c.update('update', 'utf8'); 200 c.update('update', 'utf-8'); [all …]
|
D | test-crypto-sign-verify.js | 61 .update('Test123') 96 .update('Test123') 104 .update('Test') 105 .update('123') 112 .update('Test123') 120 .update('Test') 121 .update('123') 135 .update('Test123') 138 .update('Test') 139 .update('123') [all …]
|
D | test-crypto-rsa-dsa.js | 264 rsaSign.update(rsaPubPem); 268 rsaVerify.update(rsaPubPem); 273 rsaSign.update(rsaPubPem); 278 rsaVerify.update(rsaPubPem); 283 rsaSign.update(rsaPubPem); 289 rsaVerify.update(rsaPubPem); 293 rsaSign.update(rsaPubPem); 314 sign.update(input); 320 verify.update(input); 326 sign2.update(input); [all …]
|
/third_party/node/deps/npm/node_modules/update-notifier/ |
D | readme.md | 1 # update-notifier [![Build Status](https://travis-ci.org/yeoman/update-notifier.svg?branch=master)]… 22 $ npm install update-notifier 31 const updateNotifier = require('update-notifier'); 40 const updateNotifier = require('update-notifier'); 43 // Checks for available update and returns an instance 49 // `notifier.update` contains some useful info about the update 50 console.log(notifier.update); 69 if (notifier.update) { 70 console.log(`Update available: ${notifier.update.latest}`); 77 …update notifier and it's not within the interval threshold, it will asynchronously check with npm … [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | gen_dxgi_support_tables.py | 206 optionally_supported.update(d3d_flag) 208 always_supported.update(d3d_flag) 210 never_supported.update(d3d_flag) 212 fl_10_0_supported.update(d3d_flag) 214 fl_10_1_supported.update(d3d_flag) 216 fl_11_0_supported.update(d3d_flag) 218 fl_11_1_supported.update(d3d_flag) 221 always_supported.update(d3d_flag) 223 fl_10_0_check_10_1_supported.update(d3d_flag) 225 fl_10_0_check_11_0_supported.update(d3d_flag) [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | gen_dxgi_support_tables.py | 206 optionally_supported.update(d3d_flag) 208 always_supported.update(d3d_flag) 210 never_supported.update(d3d_flag) 212 fl_10_0_supported.update(d3d_flag) 214 fl_10_1_supported.update(d3d_flag) 216 fl_11_0_supported.update(d3d_flag) 218 fl_11_1_supported.update(d3d_flag) 221 always_supported.update(d3d_flag) 223 fl_10_0_check_10_1_supported.update(d3d_flag) 225 fl_10_0_check_11_0_supported.update(d3d_flag) [all …]
|
/third_party/XKeyboardConfig/po/ |
D | Makefile | 64 MSGMERGE_UPDATE = /usr/bin/msgmerge --update 71 …update az.po-update bg.po-update ca.po-update crh.po-update cs.po-update da.po-update de.po-update… 90 DISTFILESDEPS_ = update-po 139 .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update 201 $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed 269 $(MAKE) $(DOMAIN).pot-update 465 update-po: Makefile 466 $(MAKE) $(DOMAIN).pot-update 468 $(MAKE) update-gmo 479 .nop.po-update: [all …]
|
/third_party/libdrm/ |
D | xf86drmSL.c | 138 static SLEntryPtr SLLocate(void *l, unsigned long key, SLEntryPtr *update) in SLLocate() argument 149 update[i] = entry; in SLLocate() 159 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLInsert() local 165 entry = SLLocate(list, key, update); in drmSLInsert() 173 update[level] = list->head; in drmSLInsert() 180 entry->forward[i] = update[i]->forward[i]; in drmSLInsert() 181 update[i]->forward[i] = entry; in drmSLInsert() 191 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLDelete() local 197 entry = SLLocate(list, key, update); in drmSLDelete() 203 if (update[i]->forward[i] == entry) in drmSLDelete() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/raspberry/ |
D | SDL_rpimouse.c | 114 DISPMANX_UPDATE_HANDLE_T update; in RPI_ShowCursor() local 135 update = vc_dispmanx_update_start(10); in RPI_ShowCursor() 136 SDL_assert(update); in RPI_ShowCursor() 137 ret = vc_dispmanx_element_remove(update, curdata->element); in RPI_ShowCursor() 139 ret = vc_dispmanx_update_submit_sync(update); in RPI_ShowCursor() 170 update = vc_dispmanx_update_start(10); in RPI_ShowCursor() 171 SDL_assert(update); in RPI_ShowCursor() 178 curdata->element = vc_dispmanx_element_add(update, in RPI_ShowCursor() 189 ret = vc_dispmanx_update_submit_sync(update); in RPI_ShowCursor() 201 DISPMANX_UPDATE_HANDLE_T update; in RPI_FreeCursor() local [all …]
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | gstvp8parser.c | 109 gboolean update; in parse_update_segmentation() local 129 READ_BOOL (rd, update, "quantizer_update"); in parse_update_segmentation() 130 if (update) { in parse_update_segmentation() 140 READ_BOOL (rd, update, "loop_filter_update"); in parse_update_segmentation() 141 if (update) { in parse_update_segmentation() 152 READ_BOOL (rd, update, "segment_prob_update"); in parse_update_segmentation() 153 if (update) { in parse_update_segmentation() 166 gboolean update; in parse_mb_lf_adjustments() local 180 READ_BOOL (rd, update, "ref_frame_delta_update_flag"); in parse_mb_lf_adjustments() 181 if (update) { in parse_mb_lf_adjustments() [all …]
|
/third_party/uboot/u-boot-2020.01/doc/ |
D | README.update | 1 Automatic software update from a TFTP server 10 boot. The update file should be a FIT file, and can contain one or more 11 updates. Each update in the update file has an address in NOR Flash where it 13 TFTP transfer is successful, the hash of each update is verified, and if the 14 verification is positive, the update is stored in Flash. 16 The auto-update feature is enabled by the CONFIG_UPDATE_TFTP macro: 21 Note that when enabling auto-update, Flash support must be turned on. Also, 27 The auto-update feature uses the following configuration knobs: 31 Normally, TFTP transfer of the update file is done to the address specified 48 Since the update file is in FIT format, it is created from an *.its file using [all …]
|
/third_party/boost/boost/geometry/algorithms/detail/relate/ |
D | linear_linear.hpp | 88 update<interior, exterior, '0', TransposeResult>(m_result); in operator ()() 92 update<interior, exterior, '1', TransposeResult>(m_result); in operator ()() 102 update<boundary, exterior, '0', TransposeResult>(m_result); in operator ()() 244 update<interior, interior, '1'>(m_result); in apply() 254 update<interior, interior, '0'>(m_result); in apply() 302 bool const first_in_range = m_seg_watcher.update(seg_id); in apply() 353 update<interior, exterior, '1', transpose_result>(res); in apply() 386 update<interior, interior, '1', transpose_result>(res); in apply() 407 update<boundary, boundary, '0', transpose_result>(res); in apply() 411 update<boundary, interior, '0', transpose_result>(res); in apply() [all …]
|
D | areal_areal.hpp | 109 update<interior, interior, '2', TransposeResult>(m_result); in operator ()() 110 update<boundary, interior, '1', TransposeResult>(m_result); in operator ()() 111 update<exterior, interior, '2', TransposeResult>(m_result); in operator ()() 142 update<interior, exterior, '2', TransposeResult>(m_result); in operator ()() 143 update<boundary, exterior, '1', TransposeResult>(m_result); in operator ()() 152 update<interior, exterior, '2', TransposeResult>(m_result); in operator ()() 153 update<boundary, exterior, '1', TransposeResult>(m_result); in operator ()() 180 update<interior, interior, '2', TransposeResult>(m_result); in operator ()() 181 update<boundary, interior, '1', TransposeResult>(m_result); in operator ()() 182 update<exterior, interior, '2', TransposeResult>(m_result); in operator ()() [all …]
|
/third_party/node/deps/npm/docs/content/cli-commands/ |
D | npm-update.md | 3 title: npm-update 7 # npm-update(1) 14 npm update [-g] [<pkg>...] 21 This command will update all the packages listed to the latest version 28 If the `-g` flag is specified, this command will update globally installed 34 As of `npm@2.6.1`, the `npm update` will only inspect top-level packages. 36 To get the old behavior, use `npm --depth 9999 update`. 38 As of `npm@5.0.0`, the `npm update` will change `package.json` to save the 40 use `npm update --no-save`. 78 Then `npm update` will install `dep1@1.2.2`, because `1.2.2` is `latest` and [all …]
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_hmac_drbg.misc.data | 21 HMAC_DRBG write/update seed file SHA-1 25 HMAC_DRBG write/update seed file SHA-1 29 HMAC_DRBG write/update seed file SHA-224 33 HMAC_DRBG write/update seed file SHA-224 37 HMAC_DRBG write/update seed file SHA-256 41 HMAC_DRBG write/update seed file SHA-256 45 HMAC_DRBG write/update seed file SHA-384 49 HMAC_DRBG write/update seed file SHA-384 53 HMAC_DRBG write/update seed file SHA-512 57 HMAC_DRBG write/update seed file SHA-512
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | scroll_events_test.dart | 17 log.add('scroll-update'); 52 expect(log, equals(<String>['scroll-start', 'scroll-update'])); 54 expect(log, equals(<String>['scroll-start', 'scroll-update'])); 56 expect(log, equals(<String>['scroll-start', 'scroll-update', 'scroll-end'])); 58 expect(log, equals(<String>['scroll-start', 'scroll-update', 'scroll-end'])); 72 expect(log, equals(<String>['scroll-start', 'scroll-update'])); 74 expect(log, equals(<String>['scroll-start', 'scroll-update', 'scroll-update', 'scroll-end'])); 84 expect(log, equals(<String>['scroll-start', 'scroll-update', 'scroll-end'])); 86 expect(log, equals(<String>['scroll-start', 'scroll-update', 'scroll-end'])); 100 expect(log, equals(<String>['scroll-start', 'scroll-update'])); [all …]
|
/third_party/node/deps/npm/node_modules/es-abstract/ |
D | CHANGELOG.md | 10 * [Dev Deps] update `eslint`, `nsp`, `object.assign`, `semver`, `tape` 16 * [Dev Deps] update `eslint`, `nsp` 26 * [Dev Deps] update `nsp`, `eslint` 31 * [Dev Deps] update `eslint` 36 * [Deps] update `function-bind` 37 * [Dev Deps] update `eslint`, `@ljharb/eslint-config` 48 * [Deps] update `is-regex` 49 * [Dev Deps] update `nsp`, `eslint`, `@ljharb/eslint-config` 50 * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `nsp`, `semver`, `tape` 65 * [Dev Deps] update `tape`, `nsp`, `eslint`, `@ljharb/eslint-config`, `safe-publish-latest` [all …]
|
/third_party/ffmpeg/libavutil/ |
D | hmac.c | 48 hmac_update update; member 82 c->update = (hmac_update) av_md5_update; in av_hmac_alloc() 90 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 98 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 106 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 114 c->update = (hmac_update) av_sha512_update; in av_hmac_alloc() 122 c->update = (hmac_update) av_sha512_update; in av_hmac_alloc() 151 c->update(c->hash, key, keylen); in av_hmac_init() 163 c->update(c->hash, block, c->blocklen); in av_hmac_init() 168 c->update(c->hash, data, len); in av_hmac_update() [all …]
|