/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/base/ |
D | fingerprint_test.dart | 11 import 'package:flutter_tools/src/base/fingerprint.dart'; 41 fingerprintPath: 'out.fingerprint', 52 testUsingContext('creates fingerprint with specified properties and files', () async { 56 fingerprintPath: 'out.fingerprint', 63 final Fingerprint fingerprint = await fingerprinter.buildFingerprint(); 64 expect(fingerprint, Fingerprint.fromBuildInputs(<String, String>{ 70 testUsingContext('creates fingerprint with file checksums', () async { 76 fingerprintPath: 'out.fingerprint', 84 final Fingerprint fingerprint = await fingerprinter.buildFingerprint(); 85 expect(fingerprint, Fingerprint.fromBuildInputs(<String, String>{ [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/chromaprint/ |
D | gstchromaprint.c | 126 if (chromaprint->fingerprint) { in gst_chromaprint_reset() 127 chromaprint_dealloc (chromaprint->fingerprint); in gst_chromaprint_reset() 128 chromaprint->fingerprint = NULL; in gst_chromaprint_reset() 149 chromaprint_get_fingerprint (chromaprint->context, &chromaprint->fingerprint); in gst_chromaprint_create_fingerprint() 155 chromaprint->fingerprint, NULL); in gst_chromaprint_create_fingerprint() 167 chromaprint->fingerprint = NULL; in gst_chromaprint_init() 184 if (chromaprint->fingerprint) { in gst_chromaprint_finalize() 185 chromaprint_dealloc (chromaprint->fingerprint); in gst_chromaprint_finalize() 186 chromaprint->fingerprint = NULL; in gst_chromaprint_finalize() 228 && !chromaprint->fingerprint) { in gst_chromaprint_transform_ip() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/ |
D | SDL_x11keyboard.c | 254 } fingerprint[] = { in X11_InitKeyboard() local 279 best_distance = SDL_arraysize(fingerprint) + 1; in X11_InitKeyboard() 282 for (i = 0; i < SDL_arraysize(fingerprint); ++i) { in X11_InitKeyboard() 283 fingerprint[i].value = in X11_InitKeyboard() 284 X11_XKeysymToKeycode(data->display, fingerprint[i].keysym) - in X11_InitKeyboard() 293 for (j = 0; j < SDL_arraysize(fingerprint); ++j) { in X11_InitKeyboard() 294 if (fingerprint[j].value < 0 in X11_InitKeyboard() 295 || fingerprint[j].value >= scancode_set[i].table_size) { in X11_InitKeyboard() 297 } else if (scancode_set[i].table[fingerprint[j].value] != fingerprint[j].scancode) { in X11_InitKeyboard()
|
/third_party/node/deps/npm/node_modules/sshpk/ |
D | README.md | 4 Parse, convert, fingerprint and use SSH keys (both public and private) in pure 14 [`node-ssh-fingerprint`](https://github.com/bahamas10/node-ssh-fingerprint) 43 console.log('fingerprint => %s', key.fingerprint().toString()); 44 console.log('old-style fingerprint => %s', key.fingerprint('md5').toString()); 53 fingerprint => SHA256:PYC9kPVC6J873CSIbfp0LwYeczP/W4ffObNCuDJ1u5w 54 old-style fingerprint => a0:c8:ad:6c:32:9a:32:fa:59:cc:a9:8c:0a:0d:6e:bd 177 ### `Key#fingerprint([algorithm = 'sha256'])` 179 Creates a new `Fingerprint` object representing this Key's fingerprint. 298 ### `PrivateKey#fingerprint([algorithm = 'sha256'])` 300 Same as `this.toPublic().fingerprint()`. [all …]
|
/third_party/cef/libcef/browser/ |
D | ssl_host_state_delegate.cc | 21 net::SHA256HashValue fingerprint = cert.CalculateChainFingerprint256(); in Check() local 22 const auto& allowed_iter = allowed_.find(fingerprint); in Check() 33 net::SHA256HashValue fingerprint = cert.CalculateChainFingerprint256(); in Allow() local 34 allowed_[fingerprint] = error; in Allow()
|
/third_party/rust/crates/aho-corasick/src/packed/teddy/ |
D | README.md | 33 introduces the concept of a fingerprint, which is computed for every block of 35 a fingerprint is computed in the same way it was computed for blocks in the 36 patterns. If the fingerprint corresponds to one that was found in a pattern, 38 corresponding fingerprint actually matches at the current location. Various 39 implementation tricks are employed to make sure the fingerprint lookup is fast; 40 typically by truncating the fingerprint. (This may, of course, provoke more 50 as part of SSE 4.2) to compute fingerprint values. This also enables the 78 At a high level, Teddy works somewhat similarly to the fingerprint algorithms 96 occurrence of any fingerprint from the set of patterns appears in a 16 byte 115 a mask that allows us to quickly compute membership of a fingerprint in a 16 [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/ |
D | TestFontUtils.java | 72 public static Font[] loadFont(File file, boolean fingerprint) throws IOException { in loadFont() argument 74 fontFactory.fingerprintFont(fingerprint); in loadFont() 124 public static Font[] loadFontUsingByteArray(File file, boolean fingerprint) throws IOException { in loadFontUsingByteArray() argument 127 fontFactory.fingerprintFont(fingerprint); in loadFontUsingByteArray() 241 public static Builder builderForFontFile(File fontFile, boolean fingerprint) throws IOException { in builderForFontFile() argument 244 otfFactory.fingerprintFont(fingerprint); in builderForFontFile()
|
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/ |
D | TestFontUtils.java | 72 public static Font[] loadFont(File file, boolean fingerprint) throws IOException { in loadFont() argument 74 fontFactory.fingerprintFont(fingerprint); in loadFont() 124 public static Font[] loadFontUsingByteArray(File file, boolean fingerprint) throws IOException { in loadFontUsingByteArray() argument 127 fontFactory.fingerprintFont(fingerprint); in loadFontUsingByteArray() 241 public static Builder builderForFontFile(File fontFile, boolean fingerprint) throws IOException { in builderForFontFile() argument 244 otfFactory.fingerprintFont(fingerprint); in builderForFontFile()
|
/third_party/node/deps/npm/node_modules/http-signature/lib/ |
D | utils.js | 93 fingerprint: function fingerprint(key) { 97 return (k.fingerprint('md5').toString('hex'));
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/ |
D | FontFactory.java | 44 private boolean fingerprint = false; field in FontFactory 99 public void fingerprintFont(boolean fingerprint) { in fingerprintFont() argument 100 this.fingerprint= fingerprint; in fingerprintFont() 110 return this.fingerprint; in fingerprintFont()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/ |
D | FontFactory.java | 44 private boolean fingerprint = false; field in FontFactory 99 public void fingerprintFont(boolean fingerprint) { in fingerprintFont() argument 100 this.fingerprint= fingerprint; in fingerprintFont() 110 return this.fingerprint; in fingerprintFont()
|
/third_party/gstreamer/gstplugins_bad/ext/webrtc/ |
D | webrtcsdp.c | 105 const gchar *message_fingerprint, *fingerprint; in _check_sdp_crypto() local 116 message_fingerprint = fingerprint = in _check_sdp_crypto() 130 if (IS_EMPTY_SDP_ATTRIBUTE (fingerprint)) { in _check_sdp_crypto() 131 fingerprint = media_fingerprint; in _check_sdp_crypto() 134 && g_strcmp0 (fingerprint, media_fingerprint) != 0) { in _check_sdp_crypto() 139 fingerprint, media_fingerprint); in _check_sdp_crypto() 649 GString *fingerprint; in _generate_fingerprint_from_certificate() local 677 fingerprint = g_string_new (NULL); in _generate_fingerprint_from_certificate() 680 g_string_append (fingerprint, ":"); in _generate_fingerprint_from_certificate() 681 g_string_append_printf (fingerprint, "%02X", digest[i]); in _generate_fingerprint_from_certificate() [all …]
|
/third_party/openssl/apps/ |
D | storeutl.c | 83 unsigned char *fingerprint = NULL; in storeutl_main() local 205 && fingerprint != NULL)) { in storeutl_main() 211 if (fingerprint != NULL) { in storeutl_main() 219 if ((fingerprint = OPENSSL_hexstr2buf(opt_arg(), &tmplen)) in storeutl_main() 294 fingerprint, in storeutl_main() 327 OPENSSL_free(fingerprint); in storeutl_main()
|
/third_party/openssl/doc/man1/ |
D | openssl-storeutl.pod.in | 28 [B<-fingerprint> I<arg>] 111 =item B<-fingerprint> I<arg> 113 Search for an object having the given fingerprint. 117 The digest that was used to compute the fingerprint given with B<-fingerprint>.
|
D | openssl-rehash.pod.in | 69 full SHA-1 fingerprint. A warning will be displayed if a duplicate 85 $OPENSSL x509 -hash -fingerprint -noout -in FILENAME 86 $OPENSSL crl -hash -fingerprint -noout -in FILENAME 89 file on the first line, and the fingerprint on the second,
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_camera_profile.h | 105 const dng_fingerprint &fingerprint) in dng_camera_profile_id() argument 108 , fFingerprint (fingerprint) in dng_camera_profile_id() 121 const dng_fingerprint &fingerprint) in dng_camera_profile_id() argument 124 , fFingerprint (fingerprint) in dng_camera_profile_id()
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
D | fingerprint.dart | 29 /// This class can be used during build actions to compute a fingerprint of the 32 /// of the fingerprint inputs. 88 final Fingerprint fingerprint = await buildFingerprint(); 89 fs.file(fingerprintPath).writeAsStringSync(fingerprint.toJson()); 107 /// A fingerprint that uniquely identifies a set of build input files and 135 throw ArgumentError('Incompatible fingerprint version: $version');
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
D | sae_pk.c | 371 os_memset(tmp->fingerprint, 0, sizeof(tmp->fingerprint)); in sae_pk_set_password() 390 pos = &tmp->fingerprint[tmp->sec]; in sae_pk_set_password() 413 tmp->fingerprint_bytes = pos - tmp->fingerprint; in sae_pk_set_password() 415 tmp->fingerprint, tmp->fingerprint_bytes); in sae_pk_set_password() 758 res = os_memcmp_const(hash, tmp->fingerprint, tmp->fingerprint_bytes); in sae_pk_valid_fingerprint() 762 tmp->fingerprint, tmp->fingerprint_bytes); in sae_pk_valid_fingerprint()
|
/third_party/openssl/doc/man3/ |
D | OSSL_STORE_SEARCH.pod | 71 and serial number pair, a key fingerprint, and an alias (for example a friendly 116 This criterion supports a search by exact match of key fingerprint. 117 The key fingerprint in itself is a string of bytes and its length, as 118 well as the algorithm that was used to compute the fingerprint. 123 and the actual fingerprint and its length can be retrieved with
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/macos/ |
D | cocoapod_utils.dart | 8 import '../base/fingerprint.dart'; 28 fingerprintPath: fs.path.join(buildDirectory, 'pod_inputs.fingerprint'),
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/ |
D | DecimalQuantity_SimpleStorage.java | 292 long fingerprint = 0; 293 fingerprint ^= lOptPos; 294 fingerprint ^= (lReqPos << 16); 295 fingerprint ^= ((long) rReqPos << 32); 296 fingerprint ^= ((long) rOptPos << 48); 297 return fingerprint;
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/ |
D | DecimalQuantity_SimpleStorage.java | 295 long fingerprint = 0; 296 fingerprint ^= lOptPos; 297 fingerprint ^= (lReqPos << 16); 298 fingerprint ^= ((long) rReqPos << 32); 299 fingerprint ^= ((long) rOptPos << 48); 300 return fingerprint;
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
D | test_font_utils.cc | 53 bool fingerprint, in LoadFontUsingByteVector() argument 59 factory->FingerprintFont(fingerprint); in LoadFontUsingByteVector()
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/ |
D | test_font_utils.cc | 53 bool fingerprint, in LoadFontUsingByteVector() argument 59 factory->FingerprintFont(fingerprint); in LoadFontUsingByteVector()
|
/third_party/node/test/parallel/ |
D | test-tls-peer-certificate.js | 64 peerCert.fingerprint, 114 peerCert.fingerprint,
|