Home
last modified time | relevance | path

Searched refs:slot_ (Results 1 – 13 of 13) sorted by relevance

/external/libchrome/base/threading/
Dthread_local_storage.cc349 DCHECK_EQ(kInvalidSlotValue, slot_); in Initialize()
350 slot_ = slot_candidate; in Initialize()
356 CHECK_NE(slot_, kInvalidSlotValue); in Initialize()
357 CHECK_LT(slot_, kThreadLocalStorageSize); in Initialize()
361 DCHECK_NE(slot_, kInvalidSlotValue); in Free()
362 DCHECK_LT(slot_, kThreadLocalStorageSize); in Free()
365 g_tls_metadata[slot_].status = TlsStatus::FREE; in Free()
366 g_tls_metadata[slot_].destructor = nullptr; in Free()
367 ++(g_tls_metadata[slot_].version); in Free()
369 slot_ = kInvalidSlotValue; in Free()
[all …]
Dthread_local.h65 return static_cast<Type*>(slot_.Get()); in Get()
69 slot_.Set(const_cast<void*>(static_cast<const void*>(ptr))); in Set()
73 ThreadLocalStorage::Slot slot_;
Dthread_local_storage_unittest.cc124 slot_.Set(reinterpret_cast<void*>(kDummyValue)); in Run()
164 ASSERT_EQ(reinterpret_cast<intptr_t>(slot_.Get()), kDummyValue); in ThreadLocalDestructor()
180 static base::ThreadLocalStorage::Slot slot_; member in base::__anon626f128d0111::UseTLSDuringDestructionRunner
187 base::ThreadLocalStorage::Slot UseTLSDuringDestructionRunner::slot_; member in base::__anon626f128d0111::UseTLSDuringDestructionRunner
Dthread_local_storage.h156 int slot_ = kInvalidSlotValue; variable
/external/libchrome/crypto/
Dscoped_test_nss_db.cc27 slot_ = OpenSoftwareNSSDB(temp_dir_.GetPath(), kTestDescription); in ScopedTestNSSDB()
33 if (slot_) { in ~ScopedTestNSSDB()
34 CERTCertList* cert_list = PK11_ListCertsInSlot(slot_.get()); in ~ScopedTestNSSDB()
52 if (slot_) { in ~ScopedTestNSSDB()
53 SECStatus status = SECMOD_CloseUserDB(slot_.get()); in ~ScopedTestNSSDB()
Dscoped_test_nss_db.h23 bool is_open() const { return !!slot_; } in is_open()
24 PK11SlotInfo* slot() const { return slot_.get(); } in slot()
28 ScopedPK11Slot slot_; variable
/external/v8/src/
Dvector-slot-pair.h23 : vector_(vector), slot_(slot) {} in VectorSlotPair()
25 bool IsValid() const { return !vector_.is_null() && !slot_.IsInvalid(); } in IsValid()
28 FeedbackSlot slot() const { return slot_; } in slot()
34 FeedbackSlot slot_; variable
Dfeedback-vector.h558 slot_(slot), in FeedbackNexus()
561 : vector_(vector), slot_(slot), kind_(vector->GetKind(slot)) {} in FeedbackNexus()
570 FeedbackSlot slot() const { return slot_; } in slot()
706 FeedbackSlot slot_; variable
Dvector-slot-pair.cc15 return vector_.is_null() ? -1 : FeedbackVector::GetIndex(slot_); in index()
/external/v8/src/compiler/
Djs-type-hint-lowering.cc60 slot_(slot) {} in JSSpeculativeBinopBuilder()
63 FeedbackNexus nexus(feedback_vector(), slot_); in GetBinaryOperationHint()
68 FeedbackNexus nexus(feedback_vector(), slot_); in GetCompareOperationHint()
208 FeedbackSlot slot_; member in v8::internal::compiler::JSSpeculativeBinopBuilder
/external/bcc/src/cc/frontends/b/
Dparser.cc164 (*it)->slot_ = i; in struct_add()
Dnode.h440 int slot_; variable
443 : id_(move(id)), storage_type_(t), bit_width_(bit_width), bit_offset_(bit_offset), slot_(0) {} in id_()
Dcodegen_llvm.cc271 vector<Value *> indices({B.getInt32(0), B.getInt32(n->sub_decl_->slot_)}); in visit_ident_expr_node()
287 vector<Value *> indices({const_int(0), const_int(n->sub_decl_->slot_, 32)}); in visit_ident_expr_node()
861 vector<Value *> indices({B.getInt32(0), B.getInt32(n->sub_decl_->slot_)}); in visit_table_index_expr_node()
867 vector<Value *> indices({B.getInt32(0), B.getInt32(n->sub_decl_->slot_)}); in visit_table_index_expr_node()