Searched refs:key_ (Results 1 - 25 of 97) sorted by relevance

1234

/external/libcxxabi/src/
H A Dcxa_exception_storage.cpp56 std::__libcpp_tls_key key_; member in namespace:__cxxabiv1::__anon11209
61 if ( 0 != std::__libcpp_tls_set ( key_, NULL ) )
66 if ( 0 != std::__libcpp_tls_create ( &key_, destruct_ ) )
82 if ( 0 != std::__libcpp_tls_set ( key_, retVal ) )
97 return static_cast<__cxa_eh_globals*>(std::__libcpp_tls_get(key_));
/external/parameter-framework/asio/include/asio/detail/
H A Dcall_stack.hpp37 : key_(k),
46 : key_(k),
65 if (elem->key_ == key_)
76 Key* key_; member in class:asio::detail::call_stack::context
94 if (elem->key_ == k)
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dcall_stack.hpp37 : key_(k),
46 : key_(k),
65 if (elem->key_ == key_)
76 Key* key_; member in class:asio::detail::call_stack::context
94 if (elem->key_ == k)
/external/libchrome/crypto/
H A Dhmac.cc28 key_.assign(key_.size(), 0);
29 base::STLClearObject(&key_);
48 key_.assign(key, key + key_length);
67 return !!::HMAC(hash_alg_ == SHA1 ? EVP_sha1() : EVP_sha256(), key_.data(),
68 key_.size(),
H A Drsa_private_key.cc35 result->key_.reset(EVP_PKEY_new());
36 if (!result->key_ || !EVP_PKEY_set1_RSA(result->key_.get(), rsa_key.get()))
54 result->key_ = std::move(pkey);
65 copy->key_.reset(key);
75 bssl::UniquePtr<RSA> rsa(EVP_PKEY_get1_RSA(key_.get()));
78 copy->key_.reset(EVP_PKEY_new());
79 if (!EVP_PKEY_set1_RSA(copy->key_.get(), rsa.get()))
90 !EVP_marshal_private_key(cbb.get(), key_.get()) ||
105 !EVP_marshal_public_key(cbb.get(), key_
[all...]
H A Dsymmetric_key.cc22 std::fill(key_.begin(), key_.end(), '\0'); // Zero out the confidential key.
46 base::WriteInto(&key->key_, key_size_in_bytes + 1));
78 base::WriteInto(&key->key_, key_size_in_bytes + 1));
99 key->key_ = raw_key;
104 *raw_key = key_;
H A Dec_private_key.h56 EVP_PKEY* key() { return key_.get(); }
79 bssl::UniquePtr<EVP_PKEY> key_; member in class:crypto::ECPrivateKey
H A Drsa_private_key.h42 EVP_PKEY* key() { return key_.get(); }
57 bssl::UniquePtr<EVP_PKEY> key_; member in class:crypto::RSAPrivateKey
H A Dsymmetric_key.h58 const std::string& key() { return key_; }
68 std::string key_; member in class:crypto::SymmetricKey
H A Dec_signature_creator_impl.h31 ECPrivateKey* key_; member in class:crypto::ECSignatureCreatorImpl
H A Dhmac.h90 std::vector<unsigned char> key_; member in class:crypto::HMAC
H A Dp224_spake.cc196 key_ = k.ToString();
210 CalculateHash(kPeerTypeClient, client_masked_dh, server_masked_dh, key_,
212 CalculateHash(kPeerTypeServer, client_masked_dh, server_masked_dh, key_,
262 return key_;
/external/v8/src/compiler/
H A Dnode-cache.cc26 Key key_; member in struct:v8::internal::compiler::NodeCache::Entry
47 size_t hash = hash_(old->key_);
53 entry->key_ = old->key_;
74 entry->key_ = key;
84 if (pred_(entry->key_, key)) return &entry->value_;
86 entry->key_ = key;
96 entry->key_ = key;
/external/protobuf/src/google/protobuf/stubs/
H A Dmutex.h111 pthread_key_create(&key_, &ThreadLocalStorage::Delete);
114 pthread_key_delete(key_);
117 T* result = static_cast<T*>(pthread_getspecific(key_));
120 pthread_setspecific(key_, result);
128 pthread_key_t key_; member in class:google::protobuf::internal::ThreadLocalStorage
/external/vixl/test/
H A Dtest-invalset.cc43 Obj(KeyType key, ValType val) : key_(key), val_(val) {}
44 KeyType key_; member in class:vixl::Obj
48 return (key_ == other.key_) && (val_ == other.val_);
51 return (key_ < other.key_) || ((key_ == other.key_) && (val_ < other.val_));
54 return (key_ <= other.key_) ||
[all...]
/external/protobuf/src/google/protobuf/
H A Dmap_entry_lite.h95 KeyTypeHandler::DeleteNoArena(key_);
103 return KeyTypeHandler::GetExternalReference(key_);
112 return KeyTypeHandler::EnsureMutable(&key_, GetArenaNoVirtual());
217 size += KeyTypeHandler::SpaceUsedInMapEntry(key_);
225 KeyTypeHandler::EnsureMutable(&key_, GetArenaNoVirtual());
226 KeyTypeHandler::Merge(from.key(), &key_, GetArenaNoVirtual());
238 KeyTypeHandler::Clear(&key_, GetArenaNoVirtual());
246 KeyTypeHandler::AssignDefaultValue(&key_);
304 key_(key),
309 inline const KeyMapEntryAccessorType& key() const { return key_; }
313 const Key& key_; member in class:google::protobuf::internal::MapEntryLite::MapEntryWrapper
347 const KeyMapEntryAccessorType& key_; member in class:google::protobuf::internal::MapEntryLite::MapEnumEntryWrapper
379 KeyOnMemory key_; member in class:google::protobuf::internal::MapEntryLite
[all...]
/external/v8/src/
H A Dproperty.h25 Handle<Name> GetKey() const { return key_; }
58 Handle<Name> key_; member in class:v8::internal::BASE_EMBEDDED
66 key_ = key;
72 : key_(key), value_(value), details_(details) {
81 : key_(key),
H A Dsplay-tree-inl.h32 int cmp = Config::Compare(key, root_->key_);
66 return Config::Compare(key, root_->key_) == 0;
97 int cmp = Config::Compare(root_->key_, key);
121 int cmp = Config::Compare(root_->key_, key);
167 int cmp = Config::Compare(new_key, root_->key_);
173 node_to_move->key_ = new_key;
224 int cmp = Config::Compare(key, current->key_);
228 if (Config::Compare(key, current->left_->key_) < 0) {
244 if (Config::Compare(key, current->right_->key_) > 0) {
H A Dsplay-tree.h103 : key_(key),
120 Key key() { return key_; }
128 Key key_; member in class:v8::internal::SplayTree::Node
140 const Key& key() { return node_->key_; }
/external/tensorflow/tensorflow/core/lib/random/
H A Dphilox_random.h119 key_[0] = static_cast<uint32>(seed);
120 key_[1] = static_cast<uint32>(seed >> 32);
125 key_[0] = static_cast<uint32>(seed_lo);
126 key_[1] = static_cast<uint32>(seed_lo >> 32);
132 PhiloxRandom(ResultType counter, Key key) : counter_(counter), key_(key) {}
157 Key key = key_;
245 Key key_; member in class:tensorflow::random::PhiloxRandom
/external/perf_data_converter/src/
H A Dintervalmap_test.cc97 : key_(key),
106 ASSERT_TRUE(map->FindNext(key_, &start, &limit, &value))
107 << "Did not find a next interval for key: " << key_;
112 << "Found incorrect interval for key: " << key_ << ". "
122 uint64 key_; member in class:perftools::__anon18567::FindNextCommand
130 explicit FailFindNextCommand(uint64 key) : key_(key) {}
136 ASSERT_FALSE(map->FindNext(key_, &start, &limit, &value))
137 << "Found interval for: " << key_ << ". "
141 << "Did not find a next interval for key: " << key_; variable
145 uint64 key_; member in class:perftools::__anon18567::FailFindNextCommand
[all...]
/external/protobuf/src/google/protobuf/util/internal/
H A Djson_stream_parser.cc103 key_(),
249 if (!key_.empty() && key_storage_.empty()) {
250 key_.AppendToString(&key_storage_);
251 key_ = StringPiece(key_storage_);
295 ow_->RenderString(key_, parsed_);
296 key_.clear();
473 ow_->RenderDouble(key_, number.double_val);
474 key_.clear();
478 ow_->RenderInt64(key_, number.int_val);
479 key_
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dstring_to_hash_bucket_op.h75 std::memcpy(key_, key.data(), sizeof(key_));
91 const uint64 input_hash = hash(key_, input_flat(i));
102 uint64 key_[2]; member in class:tensorflow::StringToKeyedHashBucketOp
/external/tensorflow/tensorflow/core/lib/io/
H A Dblock.cc97 string key_; member in class:tensorflow::table::Block::Iter
116 key_.clear();
139 return key_;
185 if (Compare(key_, target) >= 0) {
201 key_.clear();
219 if (p == nullptr || key_.size() < shared) {
223 key_.resize(shared);
224 key_.append(p, non_shared);
/external/webrtc/webrtc/base/
H A Dthread.cc50 pthread_key_create(&key_, NULL);
74 pthread_key_delete(key_);
79 return static_cast<Thread *>(pthread_getspecific(key_));
83 pthread_setspecific(key_, thread);
89 key_ = TlsAlloc();
97 TlsFree(key_);
101 return static_cast<Thread *>(TlsGetValue(key_));
105 TlsSetValue(key_, thread);

Completed in 486 milliseconds

1234