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

12

/external/libcxxabi/src/
H A Dcxa_exception_storage.cpp57 pthread_key_t key_; member in namespace:__cxxabiv1::__anon7856
62 if ( 0 != ::pthread_setspecific ( key_, NULL ) )
67 if ( 0 != pthread_key_create ( &key_, destruct_ ) )
83 if ( 0 != pthread_setspecific ( key_, retVal ) )
98 return static_cast<__cxa_eh_globals*>(::pthread_getspecific(key_));
/external/vixl/test/
H A Dtest-invalset.cc44 Obj(KeyType key, ValType val) : key_(key), val_(val) {}
45 KeyType key_; member in class:vixl::Obj
49 return (key_ == other.key_) && (val_ == other.val_);
52 return (key_ < other.key_) ||
53 ((key_ == other.key_) && (val_ < other.val_));
56 return (key_ <= other.key_) ||
[all...]
/external/openfst/src/include/fst/
H A Dheap.h68 pos_[key_[size_]] = size_;
72 key_.push_back(size_);
146 int tkey = key_[j];
147 pos_[key_[j] = key_[k]] = j;
148 pos_[key_[k] = tkey] = k;
190 return key_[i];
197 vector<int> key_; member in class:fst::Heap
H A Dsymbol-table.h437 key_(table.GetNthKey(0)) { }
448 return key_;
453 return table_.Find(key_);
459 if (pos_ < nsymbols_) key_ = table_.GetNthKey(pos_);
465 key_ = table_.GetNthKey(0);
472 int64 key_; member in class:fst::SymbolTableIterator
H A Dqueue.h224 for (StateId i = key_.size(); i <= s; ++i)
225 key_.push_back(kNoKey);
226 key_[s] = heap_.Insert(s);
234 key_[heap_.Pop()] = kNoKey;
242 if (s >= key_.size() || key_[s] == kNoKey) {
245 heap_.Update(key_[s], s);
253 if (update) key_.clear();
258 vector<ssize_t> key_; member in class:fst::ShortestFirstQueue
/external/v8/src/compiler/
H A Dnode-cache.cc60 int hash = NodeCacheHash(old->key_);
66 entry->key_ = old->key_;
87 entry->key_ = key;
97 if (entry->key_ == key) return &entry->value_;
99 entry->key_ = key;
109 entry->key_ = key;
H A Dnode-cache.h34 Key key_; member in struct:v8::internal::compiler::NodeCache::Entry
/external/v8/src/
H A Dproperty.h27 if (!key_->IsUniqueName()) {
28 key_ = key_->GetIsolate()->factory()->InternalizeString(
29 Handle<String>::cast(key_));
33 Handle<Name> GetKey() const { return key_; }
40 Handle<Name> key_; member in class:v8::internal::BASE_EMBEDDED
48 key_ = key;
54 : key_(key),
64 : 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_; }
H A Dhydrogen-bce.cc98 BoundsCheckKey* Key() const { return key_; }
203 : key_(key),
213 BoundsCheckKey* key_; member in class:v8::internal::BoundsCheckBbData
/external/boringssl/src/crypto/aes/asm/
H A Daesv8-armx.pl351 my ($rounds,$cnt,$key_,$step,$step1)=($enc,"w6","x7","x8","x12");
389 add $key_,$key,x5,lsl#4 // pointer to last 7 round keys
391 vld1.32 {q10-q11},[$key_],#32
392 vld1.32 {q12-q13},[$key_],#32
393 vld1.32 {q14-q15},[$key_],#32
394 vld1.32 {$rndlast},[$key_]
396 add $key_,$key,#32
405 vld1.32 {$in0-$in1},[$key_]
406 add $key_,$key,#16
457 vld1.32 {q9},[$key_] // r
[all...]
H A Daesni-x86.pl80 $key_="ebp"; # backup copy for $key
429 &mov ($key_,$key); # backup $key
463 &mov ($key,$key_); # restore $key
529 &mov ($key_,$key); # backup $key
563 &mov ($key,$key_); # restore $key
656 &mov ($key_,"esp");
659 &mov (&DWP(48,"esp"),$key_);
673 &xor ($key_,$key_);
675 &mov (&DWP(20,"esp"),$key_);
[all...]
H A Daesni-x86_64.pl209 $key_="%r11"; # backup copy for $key
603 mov $key,$key_ # backup $key
625 mov $key_,$key # restore $key
652 mov $key_,$key # restore $key
761 mov $key_,$key # restore $key
784 $movkey ($key_),$rndkey0
790 mov $key_,$key # restore $key
977 lea 0($key),$key_
986 $movkey ($key_),$rndkey0
991 $movkey 16($key_),
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h1103 ThreadLocal() : key_(CreateKey()),
1105 explicit ThreadLocal(const T& value) : key_(CreateKey()),
1110 DeleteThreadLocalValue(pthread_getspecific(key_));
1114 GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
1146 static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
1153 GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
1158 const pthread_key_t key_; member in class:testing::internal::ThreadLocal
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DRuleBasedCollator.java1122 key_ = key;
1143 // Do not call key_.ensureCapacity(newCapacity) because we do not
1144 // keep key_.size in sync with appended_.
1148 buffer_ = key_.bytes = newBytes;
1152 private RawCollationKey key_; field in class:RuleBasedCollator.CollationKeyByteSink
1197 sink.key_.size = sink.NumberOfBytesAppended();
1200 prev = BOCSU.writeIdenticalLevelRun(prev, s, 0, nfdQCYesLimit, sink.key_);
1207 BOCSU.writeIdenticalLevelRun(prev, nfd, 0, nfd.length(), sink.key_);
1210 sink.setBufferAndAppended(sink.key_.bytes, sink.key_
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1383 ThreadLocal() : key_(CreateKey()),
1385 explicit ThreadLocal(const T& value) : key_(CreateKey()),
1390 DeleteThreadLocalValue(pthread_getspecific(key_));
1394 GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
1426 static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
1433 GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
1438 const pthread_key_t key_; member in class:testing::internal::ThreadLocal
/external/gtest/include/gtest/internal/
H A Dgtest-port.h1475 ThreadLocal() : key_(CreateKey()),
1477 explicit ThreadLocal(const T& value) : key_(CreateKey()),
1482 DeleteThreadLocalValue(pthread_getspecific(key_));
1486 GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
1518 static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
1525 GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
1530 const pthread_key_t key_; member in class:testing::internal::ThreadLocal
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h1339 ThreadLocal() : key_(CreateKey()),
1341 explicit ThreadLocal(const T& value) : key_(CreateKey()),
1346 DeleteThreadLocalValue(pthread_getspecific(key_));
1350 GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
1382 static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
1389 GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
1394 const pthread_key_t key_; member in class:testing::internal::ThreadLocal
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h1329 ThreadLocal() : key_(CreateKey()),
1331 explicit ThreadLocal(const T& value) : key_(CreateKey()),
1336 DeleteThreadLocalValue(pthread_getspecific(key_));
1340 GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
1372 static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
1379 GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
1384 const pthread_key_t key_; member in class:testing::internal::ThreadLocal
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp1714 : key_()
1722 : key_()
1730 : key_( key )
1738 : key_( key.c_str() )
1858 node = &((*node)[arg.key_]);
1887 node = &((*node)[arg.key_]);
1917 node = &((*node)[arg.key_]);
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp1710 : key_()
1718 : key_()
1726 : key_( key )
1734 : key_( key.c_str() )
1854 node = &((*node)[arg.key_]);
1883 node = &((*node)[arg.key_]);
1913 node = &((*node)[arg.key_]);
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-internal-inl.h350 : key_(key) {}
352 // Returns true iff the test name of test property matches on key_.
354 return String(test_property.key()).Compare(key_) == 0;
358 String key_; member in class:testing::internal::TestPropertyKeyIs
/external/gtest/src/
H A Dgtest-internal-inl.h351 explicit TestPropertyKeyIs(const std::string& key) : key_(key) {}
353 // Returns true iff the test name of test property matches on key_.
355 return test_property.key() == key_;
359 std::string key_; member in class:testing::internal::TestPropertyKeyIs
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h342 : key_(key) {}
344 // Returns true iff the test name of test property matches on key_.
346 return String(test_property.key()).Compare(key_) == 0;
350 String key_; member in class:testing::internal::TestPropertyKeyIs

Completed in 1583 milliseconds

12