HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 251 - 275 of 6954) sorted by null

<<11121314151617181920>>

  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliColorsPage.java 54 TextAttributesKey key = keys.get(i); external variable declarations
56 ATTRS[i] = new AttributesDescriptor(key.getExternalName(), key);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/
NodeTupleTest.java 43 Node key = new ScalarNode(Tag.STR, "key1", null, null, null); local
45 NodeTuple tuple = new NodeTuple(key, value);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DenseMapInfo.h 148 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
150 key += ~(key << 32);
151 key ^= (key >> 22);
152 key += ~(key << 13);
153 key ^= (key >> 8);
154 key += (key << 3)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DenseMapInfo.h 151 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
153 key += ~(key << 32);
154 key ^= (key >> 22);
155 key += ~(key << 13);
156 key ^= (key >> 8);
157 key += (key << 3)
    [all...]
  /external/syslinux/gpxe/src/crypto/
arc4.c 30 * Set ARC4 key
33 * @v keyv Key to set
34 * @v keylen Length of key
37 * to the key; ARC4 does not implement the @c setiv function because
44 const u8 *key = keyv; local
53 j = ( j + S[i] + key[i % keylen] ) & 0xff;
70 * data based on the key, and XOR'ing it with the data to be
107 * @v key ARC4 encryption key
108 * @v keylen Key lengt
    [all...]
  /external/syslinux/gpxe/src/hci/
readline.c 89 int key; local
101 key = edit_string ( &string, getkey() );
103 switch ( key ) {
  /external/tensorflow/tensorflow/compiler/xla/
map_util.h 29 // the given key if it exists. Crashes otherwise.
32 // when the key is guaranteed to exist.
36 const typename Collection::value_type::first_type& key) {
37 typename Collection::const_iterator it = collection.find(key);
38 CHECK(it != collection.end()) << "Map key not found: " << key;
46 const typename Collection::value_type::first_type& key) {
47 typename Collection::iterator it = collection.find(key);
48 CHECK(it != collection.end()) << "Map key not found: " << key;
62 os << key; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
stateless_random_ops.cc 68 random::PhiloxRandom::Key key; variable
70 key[0] = 0x3ec8f720;
71 key[1] = 0x02461e29;
76 const auto mix = random::PhiloxRandom(counter, key)();
77 key[0] = mix[0];
78 key[1] = mix[1];
84 Fill(context, random::PhiloxRandom(counter, key), output);
string_to_hash_bucket_op.h 71 std::vector<int64> key; local
72 OP_REQUIRES_OK(ctx, ctx->GetAttr("key", &key));
73 OP_REQUIRES(ctx, key.size() == 2,
74 errors::InvalidArgument("Key must have 2 elements"));
75 std::memcpy(key_, key.data(), sizeof(key_));
  /external/toybox/kconfig/lxdialog/
inputbox.c 48 int input_x = 0, scroll = 0, key = 0, button = -1; local
115 while (key != KEY_ESC) {
116 key = wgetch(dialog);
119 switch (key) {
149 if (key < 0x100 && isprint(key)) {
152 instr[scroll + input_x] = key;
161 waddch(dialog, key);
170 switch (key) {
224 key = KEY_ESC
    [all...]
  /external/toybox/toys/example/
demo_scankey.c 26 int key, x, y; local
44 key = scan_key_getsize(scratch, -1*!!t[0], &width, &height);
49 printf("key=[ESC");
51 while (0<(key = scan_key_getsize(scratch, 0, &width, &height)))
52 printf("%c", key);
54 } else printf("key=%d ", key);
58 if (key == -2) continue;
59 if (key <= ' ') break;
60 if (key>=256)
    [all...]
  /external/toybox/toys/pending/
getfattr.c 36 char *keys, *key; local
55 for (key = keys, key_count = 0; key-keys < keys_len; key += strlen(key)+1)
58 for (key = keys, i = 0; key-keys < keys_len; key += strlen(key)+1)
59 sorted_keys[i++] = key;
    [all...]
  /external/v8/src/ast/
context-slot-cache.cc 33 Key& key = keys_[index]; local
34 if ((key.data == data) && key.name->Equals(name)) {
55 Key& key = keys_[index]; local
56 key.data = *data;
57 key.name = *internalized_name;
84 Key& key = keys_[index] local
    [all...]
  /external/v8/src/builtins/
builtins-async.cc 63 Node* const key = local
65 CallRuntime(Runtime::kSetProperty, context, on_reject, key,
77 Node* const key = HeapConstant(factory()->promise_handled_by_symbol()); local
78 CallRuntime(Runtime::kSetProperty, context, throwaway_promise, key,
builtins-reflect.cc 25 Handle<Object> key = args.at(2); local
37 Object::ToName(isolate, key));
56 Handle<Object> key = args.at(2); local
67 Object::ToName(isolate, key));
79 Handle<Object> key = args.atOrUndefined(isolate, 2); local
91 Object::ToName(isolate, key));
103 Handle<Object> key = args.at(2); local
114 Object::ToName(isolate, key));
146 Handle<Object> key = args.at(2); local
157 Object::ToName(isolate, key));
229 Handle<Object> key = args.atOrUndefined(isolate, 2); local
    [all...]
  /external/vboot_reference/firmware/lib/cryptolib/
rsa_utility.c 16 int key_len; /* Key length in bytes. (int type matches siglen_map) */
30 RSAPublicKey* key = (RSAPublicKey*) VbExMalloc(sizeof(RSAPublicKey)); local
31 key->n = NULL;
32 key->rr = NULL;
33 key->len = 0;
34 key->algorithm = kNumAlgorithms;
35 return key;
38 void RSAPublicKeyFree(RSAPublicKey* key) {
39 if (key) {
40 if (key->n
49 RSAPublicKey* key = RSAPublicKeyNew(); local
    [all...]
  /external/vboot_reference/firmware/lib20/
api.c 44 struct vb2_public_key key; local
80 * Unpack the firmware data key to see which hashing algorithm we
91 rv = vb2_unpack_key(&key,
104 rv = vb2ex_hwcrypto_digest_init(key.hash_alg,
108 key.hash_alg);
109 dc->hash_alg = key.hash_alg;
116 key.hash_alg);
121 return vb2_digest_init(dc, key.hash_alg);
135 struct vb2_public_key key; local
176 /* Unpack the data key */
    [all...]
  /external/vboot_reference/host/lib/
file_keys.c 5 * Utility functions for file and key handling.
54 RSAPublicKey* key = NULL; local
57 key = RSAPublicKeyFromBuf(buf, len);
59 return key;
signature_digest.c 44 RSA* key = NULL; local
51 VBDEBUG(("SignatureBuf(): Couldn't open key file: %s\n", key_file));
55 if ((key = PEM_read_RSAPrivateKey(key_fp, NULL, NULL, NULL)))
58 VBDEBUG(("SignatureBuf(): Couldn't read private key from file: %s\n",
64 key, /* Key to use. */
69 if (key)
70 RSA_free(key);
  /external/vboot_reference/utility/
verify_data.c 56 RSAPublicKey* key = NULL; local
59 fprintf(stderr, "Usage: %s <algorithm> <key file> <signature file>"
73 /* Length of the RSA Signature/RSA Key */
75 if ((key = RSAPublicKeyFromFile(argv[2])) &&
78 if (RSAVerify(key, signature, sig_len, algorithm, digest)) {
90 free(key);
  /external/vulkan-validation-layers/layers/
vk_layer_table.cpp 30 dispatch_key key = get_dispatch_key(object); local
31 device_table_map::const_iterator it = tableMap.find((void *)key);
37 dispatch_key key = get_dispatch_key(object); local
38 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key);
43 void destroy_dispatch_table(device_table_map &map, dispatch_key key) {
44 device_table_map::const_iterator it = map.find((void *)key);
51 void destroy_dispatch_table(instance_table_map &map, dispatch_key key) {
52 instance_table_map::const_iterator it = map.find((void *)key);
59 void destroy_device_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableMap, key); }
64 dispatch_key key = get_dispatch_key(object); local
71 dispatch_key key = get_dispatch_key(object); local
104 dispatch_key key = get_dispatch_key(instance); local
129 dispatch_key key = get_dispatch_key(device); local
    [all...]
  /external/webp/src/utils/
color_cache_utils.h 40 const VP8LColorCache* const cc, uint32_t key) {
41 assert((key >> cc->hash_bits_) == 0u);
42 return cc->colors_[key];
46 uint32_t key, uint32_t argb) {
47 assert((key >> cc->hash_bits_) == 0u);
48 cc->colors_[key] = argb;
53 const int key = VP8LHashPix(argb, cc->hash_shift_); local
54 cc->colors_[key] = argb;
62 // Return the key if cc contains argb, and -1 otherwise.
65 const int key = VP8LHashPix(argb, cc->hash_shift_) local
    [all...]
  /external/wpa_supplicant_8/src/tls/
pkcs8.c 2 * PKCS #8 (Private-key information syntax)
62 "beginning of private key; not found; assume "
98 wpa_printf(MSG_DEBUG, "PKCS #8: Unsupported private key "
180 struct crypto_private_key *key; local
181 key = pkcs8_key_import(data, data_len);
183 return key;
tlsv1_cred.h 15 struct crypto_private_key *key; member in struct:tlsv1_credentials
  /frameworks/av/drm/common/
DrmConstraints.cpp 32 status_t DrmConstraints::put(const String8* key, const char* value) {
38 mConstraintMap.add(*key, charValue);
43 String8 DrmConstraints::get(const String8& key) const {
44 if (NULL != getValue(&key)) {
45 return String8(getValue(&key));
50 const char* DrmConstraints::getValue(const String8* key) const {
51 if (NAME_NOT_FOUND != mConstraintMap.indexOfKey(*key)) {
52 return mConstraintMap.valueFor(*key);
57 const char* DrmConstraints::getAsByteArray(const String8* key) const {
58 return getValue(key);
66 const String8& key = mDrmConstraints->mConstraintMap.keyAt(mIndex); local
    [all...]

Completed in 498 milliseconds

<<11121314151617181920>>