/external/grpc-grpc/src/core/lib/gprpp/ |
D | ref_counted.h | 56 if (gpr_unref(&refs_)) { in Unref() 70 RefCounted() { gpr_ref_init(&refs_, 1); } in RefCounted() 79 void IncrementRefCount() { gpr_ref(&refs_); } in IncrementRefCount() 81 gpr_refcount refs_; variable 101 gpr_atm old_refs = gpr_atm_no_barrier_load(&refs_.count); in Ref() 115 if (gpr_unref(&refs_)) { in Unref() 122 gpr_atm old_refs = gpr_atm_no_barrier_load(&refs_.count); in Unref() 144 gpr_ref_init(&refs_, 1); in RefCountedWithTracing() 159 void IncrementRefCount() { gpr_ref(&refs_); } in IncrementRefCount() 162 gpr_refcount refs_; variable
|
D | orphanable.h | 92 InternallyRefCounted() { gpr_ref_init(&refs_, 1); } in InternallyRefCounted() 101 if (gpr_unref(&refs_)) { in Unref() 107 void IncrementRefCount() { gpr_ref(&refs_); } in IncrementRefCount() 109 gpr_refcount refs_; variable 141 gpr_ref_init(&refs_, 1); in InternallyRefCountedWithTracing() 159 gpr_atm old_refs = gpr_atm_no_barrier_load(&refs_.count); in Ref() 173 if (gpr_unref(&refs_)) { in Unref() 180 gpr_atm old_refs = gpr_atm_no_barrier_load(&refs_.count); in Unref() 189 void IncrementRefCount() { gpr_ref(&refs_); } in IncrementRefCount() 192 gpr_refcount refs_; variable
|
/external/grpc-grpc/src/cpp/common/ |
D | alarm.cc | 40 gpr_ref_init(&refs_, 1); in AlarmImpl() 99 void Ref() { gpr_ref(&refs_); } in Ref() 101 if (gpr_unref(&refs_)) { in Unref() 107 gpr_refcount refs_; member in grpc::internal::AlarmImpl
|
/external/grpc-grpc/src/cpp/server/ |
D | server_context.cc | 46 refs_(2), in CompletionOp() 78 int refs_; member in grpc::ServerContext::CompletionOp 85 if (--refs_ == 0) { in Unref() 109 if (--refs_ == 0) { in FinalizeResult()
|
/external/v8/src/ |
D | external-reference-table.h | 46 Address address(uint32_t i) { return refs_[i].address; } in address() 47 const char* name(uint32_t i) { return refs_[i].name; } in name() 98 ExternalReferenceEntry refs_[kSize]; variable
|
D | external-reference-table.cc | 59 refs_[(*index)++] = {address, name}; in Add()
|
/external/perfetto/src/trace_processor/ |
D | trace_storage.h | 297 refs_.emplace_back(ref); in AddSlice() 318 const std::deque<int64_t>& refs() const { return refs_; } in refs() 331 std::deque<int64_t> refs_; variable 361 refs_.emplace_back(ref); in AddCounterDefinition() 371 const std::deque<int64_t>& refs() const { return refs_; } in refs() 377 std::deque<int64_t> refs_; variable 481 refs_.emplace_back(ref); in AddInstantEvent() 487 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; } in set_ref() 499 const std::deque<int64_t>& refs() const { return refs_; } in refs() 509 std::deque<int64_t> refs_; variable
|
/external/webp/src/enc/ |
D | backward_references_enc.c | 90 refs->free_blocks_ = refs->refs_; in VP8LClearBackwardRefs() 91 refs->tail_ = &refs->refs_; in VP8LClearBackwardRefs() 93 refs->refs_ = NULL; in VP8LClearBackwardRefs() 109 refs->tail_ = &refs->refs_; in VP8LBackwardRefsInit() 116 c.cur_block_ = refs->refs_; in VP8LRefsCursorInit() 117 if (refs->refs_ != NULL) { in VP8LRefsCursorInit()
|
D | vp8l_enc.c | 443 for (i = 0; i < 3; ++i) VP8LBackwardRefsInit(&enc->refs_[i], refs_block_size); in EncoderInit() 1098 (VP8LBackwardRefs*)&enc->refs_[0], // cast const away in ApplyPredictFilter() 1099 (VP8LBackwardRefs*)&enc->refs_[1], transform_width, transform_height, in ApplyPredictFilter() 1119 (VP8LBackwardRefs*)&enc->refs_[0], // cast const away in ApplyCrossColorFilter() 1120 (VP8LBackwardRefs*)&enc->refs_[1], transform_width, transform_height, in ApplyCrossColorFilter() 1467 &enc->refs_[0], &enc->refs_[1], palette_size, 1, in EncodePalette() 1494 for (i = 0; i < 3; ++i) VP8LBackwardRefsClear(&enc->refs_[i]); in VP8LEncoderDelete() 1568 VP8LBackwardRefsClear(&enc->refs_[0]); in EncodeStreamHook() 1569 VP8LBackwardRefsClear(&enc->refs_[1]); in EncodeStreamHook() 1635 err = EncodeImageInternal(bw, enc->argb_, &enc->hash_chain_, enc->refs_, in EncodeStreamHook()
|
D | vp8li_enc.h | 74 struct VP8LBackwardRefs refs_[3]; // Backward Refs array for temporaries. member
|
D | backward_references_enc.h | 173 PixOrCopyBlock* refs_; // list of currently used blocks member
|
/external/v8/src/compiler/ |
D | js-heap-broker.cc | 558 refs_(zone), in JSHeapBroker() 665 auto it = refs_.find(object.address()); in GetData() 666 return it != refs_.end() ? it->second : nullptr; in GetData() 689 CHECK(refs_.insert({object.address(), data}).second); in AddData()
|
D | js-heap-broker.h | 482 ZoneUnorderedMap<Address, ObjectData*> refs_; in NON_EXPORTED_BASE() local
|
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | internal.h | 254 gpr_refcount refs_; variable
|
D | chttp2_transport.cc | 2811 gpr_ref_init(&refs_, 2); in Chttp2IncomingByteStream() 2837 if (gpr_unref(&refs_)) { in Unref() 2842 void Chttp2IncomingByteStream::Ref() { gpr_ref(&refs_); } in Ref()
|