/external/libchrome/base/threading/ |
D | thread_local_storage.cc | 349 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 …]
|
D | thread_local.h | 65 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_;
|
D | thread_local_storage_unittest.cc | 124 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
|
D | thread_local_storage.h | 156 int slot_ = kInvalidSlotValue; variable
|
/external/libchrome/crypto/ |
D | scoped_test_nss_db.cc | 27 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()
|
D | scoped_test_nss_db.h | 23 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/ |
D | vector-slot-pair.h | 23 : 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
|
D | feedback-vector.h | 558 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
|
D | vector-slot-pair.cc | 15 return vector_.is_null() ? -1 : FeedbackVector::GetIndex(slot_); in index()
|
/external/v8/src/compiler/ |
D | js-type-hint-lowering.cc | 60 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/ |
D | parser.cc | 164 (*it)->slot_ = i; in struct_add()
|
D | node.h | 440 int slot_; variable 443 : id_(move(id)), storage_type_(t), bit_width_(bit_width), bit_offset_(bit_offset), slot_(0) {} in id_()
|
D | codegen_llvm.cc | 271 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()
|