Home
last modified time | relevance | path

Searched refs:key_ (Results 1 – 25 of 108) sorted by relevance

12345

/third_party/gn/src/base/win/
Dregistry.cc41 RegKey::RegKey() : key_(NULL), wow64access_(0) {} in RegKey()
43 RegKey::RegKey(HKEY key) : key_(key), wow64access_(0) {} in RegKey()
46 : key_(NULL), wow64access_(0) { in RegKey()
78 key_ = subhkey; in CreateWithDisposition()
98 RegCreateKeyEx(key_, ToWCharT(name), 0, NULL, REG_OPTION_NON_VOLATILE, in CreateKey()
102 key_ = subkey; in CreateKey()
116 key_ = subhkey; in Open()
136 RegOpenKeyEx(key_, ToWCharT(relative_key_name), 0, access, &subkey); in OpenKey()
142 key_ = subkey; in OpenKey()
149 if (key_) { in Close()
[all …]
Dregistry.h71 bool Valid() const { return key_ != NULL; } in Valid()
124 HKEY Handle() const { return key_; } in Handle()
139 HKEY key_; // The registry key being iterated. variable
188 HKEY key_; variable
240 HKEY key_; variable
/third_party/boost/boost/spirit/home/classic/actor/
Dinsert_at_actor.hpp51 ReferentT const& key_, in act()
56 ref_.insert( value_type(key_, value_) ); in act()
66 ReferentT const& key_, in act()
75 value_type key_value(key_, value); in act()
87 ReferentT const& key_ in insert_at_a() argument
94 >(ref_,key_); in insert_at_a()
105 ReferentT const& key_, in insert_at_a() argument
114 >(ref_,key_,value_); in insert_at_a()
Derase_actor.hpp46 void act(T& ref_, KeyT const& key_) const in act()
48 ref_.erase(key_); in act()
79 KeyT const& key_ in erase_a() argument
82 return ref_const_ref_actor<T,KeyT,erase_action>(ref_,key_); in erase_a()
Dassign_key_actor.hpp26 void act(T& ref_, ValueT const& value_, KeyT const& key_) const in act()
28 ref_[ key_ ] = value_; in act()
77 KeyT const& key_ in assign_key_a() argument
88 key_ in assign_key_a()
/third_party/openssl/crypto/aes/asm/
Daesv8-armx.pl366 my ($rounds,$cnt,$key_,$step,$step1)=($enc,"w6","x7","x8","x12");
404 add $key_,$key,x5,lsl#4 // pointer to last 7 round keys
406 vld1.32 {q10-q11},[$key_],#32
407 vld1.32 {q12-q13},[$key_],#32
408 vld1.32 {q14-q15},[$key_],#32
409 vld1.32 {$rndlast},[$key_]
411 add $key_,$key,#32
420 vld1.32 {$in0-$in1},[$key_]
421 add $key_,$key,#16
472 vld1.32 {q9},[$key_] // re-pre-load rndkey[1]
[all …]
Daesp8-ppc.pl671 my $key_="r11";
733 addi $key_,$sp,$FRAME+15
740 stvx v24,$x00,$key_ # off-load round[1]
743 stvx v25,$x10,$key_ # off-load round[2]
744 addi $key_,$key_,0x20
750 stvx v24,$x00,$key_ # off-load round[3]
753 stvx v25,$x10,$key_ # off-load round[4]
754 addi $key_,$sp,$FRAME+15 # rewind $key_
764 lvx v24,$x00,$key_ # pre-load round[1]
766 lvx v25,$x10,$key_ # pre-load round[2]
[all …]
Daesni-x86_64.pl225 $key_="%r11"; # backup copy for $key
631 mov $key,$key_ # backup $key
653 mov $key_,$key # restore $key
680 mov $key_,$key # restore $key
788 mov $key_,$key # restore $key
811 $movkey ($key_),$rndkey0
817 mov $key_,$key # restore $key
1005 lea 0($key),$key_
1014 $movkey ($key_),$rndkey0
1019 $movkey 16($key_),$rndkey1
[all …]
Daesni-x86.pl97 $key_="ebp"; # backup copy for $key
443 &mov ($key_,$key); # backup $key
477 &mov ($key,$key_); # restore $key
543 &mov ($key_,$key); # backup $key
577 &mov ($key,$key_); # restore $key
669 &mov ($key_,"esp");
672 &mov (&DWP(48,"esp"),$key_);
686 &xor ($key_,$key_);
688 &mov (&DWP(20,"esp"),$key_);
689 &mov (&DWP(24,"esp"),$key_);
[all …]
/third_party/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.cc147 key_(), in JsonStreamParser()
305 if (!key_.empty() && key_storage_.empty()) { in RunParser()
306 StrAppend(&key_storage_, key_); in RunParser()
307 key_ = StringPiece(key_storage_); in RunParser()
355 ow_->RenderString(key_, parsed_); in ParseString()
356 key_ = StringPiece(); in ParseString()
531 ow_->RenderDouble(key_, number.double_val); in ParseNumber()
532 key_ = StringPiece(); in ParseNumber()
536 ow_->RenderInt64(key_, number.int_val); in ParseNumber()
537 key_ = StringPiece(); in ParseNumber()
[all …]
/third_party/protobuf/src/google/protobuf/
Dmap_entry_lite.h191 KeyTypeHandler::Initialize(&key_, NULL);
198 KeyTypeHandler::Initialize(&key_, arena);
206 KeyTypeHandler::DeleteNoArena(key_);
213 return KeyTypeHandler::GetExternalReference(key_);
221 return KeyTypeHandler::EnsureMutable(&key_, Base::GetArena());
313 KeyTypeHandler::EnsureMutable(&key_, Base::GetArena());
314 KeyTypeHandler::Merge(from.key(), &key_, Base::GetArena());
327 KeyTypeHandler::Clear(&key_, Base::GetArena());
336 KeyTypeHandler::AssignDefaultValue(&d->key_);
358 if (!KeyTypeHandler::Read(input, &key_)) {
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ps/
Dpush_kernel.h32 PushKernel() : key_(UINT64_MAX) {} in PushKernel()
44 keys.push_back(key_); in Launch()
49 auto ret = memcpy_s(outputs[0]->addr, outputs[0]->size, &key_, sizeof(size_t)); in Launch()
57 key_ = AnfAlgo::GetNodeAttr<size_t>(kernel_node, kAttrPsKey); in Init()
61 MS_LOG(INFO) << "Key " << key_ << " optimizer input shapes are:" << optim_input_shapes; in Init()
65 mindspore::ps::Worker::GetInstance().SetOptimInputShapes(key_, shape); in Init()
82 size_t key_;
Dpull_kernel.h32 PullKernel() : key_(UINT64_MAX), keys_size_(sizeof(size_t)), var_size_(sizeof(size_t)) {} in PullKernel()
42 mindspore::ps::Worker::GetInstance().Pull(key_, inputs[1]->addr, inputs[1]->size); in Launch()
67 key_ = AnfAlgo::GetNodeAttr<size_t>(kernel_node, kAttrPsKey); in Init()
82 size_t key_;
Dembedding_look_up_proxy_kernel.cc50 key_ = AnfAlgo::GetNodeAttr<size_t>(kernel_node, kAttrPsKey); in InitKernel()
62 mindspore::ps::Worker::GetInstance().AddEmbeddingTable(key_, input_shape[axis]); in InitKernel()
64 …mindspore::ps::Worker::GetInstance().InitPSEmbeddingTable(key_, input_shape, indices_shape, output… in InitKernel()
85 mindspore::ps::Worker::GetInstance().DoPSEmbeddingLookup(key_, lookup_ids, &lookup_result, in Launch()
/third_party/boost/libs/asio/include/boost/asio/detail/
Dcall_stack.hpp41 : key_(k), in context()
50 : key_(k), in context()
69 if (elem->key_ == key_) in next_by_key()
80 Key* key_; member in boost::asio::detail::call_stack::context
98 if (elem->key_ == k) in contains()
/third_party/boost/boost/asio/detail/
Dcall_stack.hpp41 : key_(k), in context()
50 : key_(k), in context()
69 if (elem->key_ == key_) in next_by_key()
80 Key* key_; member in boost::asio::detail::call_stack::context
98 if (elem->key_ == k) in contains()
/third_party/grpc/src/core/lib/slice/
Dslice_weak_hash_table.h73 if (is_set_) grpc_slice_unref_internal(key_); in ~Entry()
75 const grpc_slice& key() const { return key_; } in key()
85 if (is_set_) grpc_slice_unref_internal(key_); in Set()
86 key_ = key; in Set()
92 grpc_slice key_;
/third_party/flutter/engine/flutter/fml/
Dthread_local.cc15 FML_CHECK(pthread_key_create(&key_, destroy) == 0); in ThreadLocalPointer()
19 FML_CHECK(pthread_key_delete(key_) == 0); in ~ThreadLocalPointer()
23 return pthread_getspecific(key_); in get()
28 FML_CHECK(pthread_setspecific(key_, ptr) == 0); in swap()
/third_party/boost/libs/intrusive/example/
Ddoc_assoc_optimized_code.cpp32 std::string key_; member in Expensive
37 : key_(key) in Expensive()
41 { return key_; } in get_key()
44 { return a.key_ < b.key_; } in operator <()
47 { return a.key_ == b.key_; } in operator ==()
/third_party/protobuf/src/google/protobuf/stubs/
Dmutex.h145 pthread_key_create(&key_, &ThreadLocalStorage::Delete); in ThreadLocalStorage()
148 pthread_key_delete(key_); in ~ThreadLocalStorage()
151 T* result = static_cast<T*>(pthread_getspecific(key_)); in Get()
154 pthread_setspecific(key_, result); in Get()
162 pthread_key_t key_; variable
/third_party/grpc/src/core/ext/xds/
Dcertificate_provider_store.h71 key_(key) {} in CertificateProviderWrapper()
74 store_->ReleaseCertificateProvider(key_, this); in ~CertificateProviderWrapper()
86 absl::string_view key() const { return key_; } in key()
91 absl::string_view key_; variable
/third_party/boost/boost/property_map/
Ddynamic_property_map.hpp149 key_type key_ = any_cast<key_type>(in_key); in do_put() local
151 put(property_map_, key_, any_cast<value_type>(in_value)); in do_put()
156 put(property_map_, key_, value_type()); in do_put()
158 put(property_map_, key_, detail::read_value<value_type>(v)); in do_put()
172 virtual boost::any get(const any& key_) in get() argument
174 …wrapper_xxx(property_map_, any_cast<typename boost::property_traits<PropertyMap>::key_type>(key_)); in get()
177 virtual std::string get_string(const any& key_) in get_string() argument
180 …wrapper_xxx(property_map_, any_cast<typename boost::property_traits<PropertyMap>::key_type>(key_)); in get_string()
/third_party/cef/libcef/browser/alloy/
Dalloy_browser_context.cc119 return !!key_; in IsInitialized()
132 key_ = std::make_unique<ProfileKey>(cache_path_); in Initialize()
133 SimpleKeyMap::GetInstance()->Associate(this, key_.get()); in Initialize()
179 key_->SetPrefs(pref_service); in Initialize()
205 SimpleDependencyManager::GetInstance(), key_.get()); in Shutdown()
207 key_.reset(); in Shutdown()
414 DCHECK(key_); in GetProfileKey()
415 return key_.get(); in GetProfileKey()
/third_party/boost/boost/mpl/map/aux_/
Ditem.hpp40 typedef Key key_; typedef
64 typedef void_ key_; typedef
106 typedef Key key_;
126 typedef void_ key_;
/third_party/boost/boost/asio/detail/impl/
Dservice_registry.ipp123 if (keys_match(service->key_, key))
133 new_service.ptr_->key_ = key;
141 if (keys_match(service->key_, key))
166 if (keys_match(service->key_, key))
172 new_service->key_ = key;
185 if (keys_match(service->key_, key))

12345