Home
last modified time | relevance | path

Searched refs:refs_ (Results 1 – 15 of 15) sorted by relevance

/external/grpc-grpc/src/core/lib/gprpp/
Dref_counted.h56 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
Dorphanable.h92 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/
Dalarm.cc40 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/
Dserver_context.cc46 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/
Dexternal-reference-table.h46 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
Dexternal-reference-table.cc59 refs_[(*index)++] = {address, name}; in Add()
/external/perfetto/src/trace_processor/
Dtrace_storage.h297 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/
Dbackward_references_enc.c90 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()
Dvp8l_enc.c443 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()
Dvp8li_enc.h74 struct VP8LBackwardRefs refs_[3]; // Backward Refs array for temporaries. member
Dbackward_references_enc.h173 PixOrCopyBlock* refs_; // list of currently used blocks member
/external/v8/src/compiler/
Djs-heap-broker.cc558 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()
Djs-heap-broker.h482 ZoneUnorderedMap<Address, ObjectData*> refs_; in NON_EXPORTED_BASE() local
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dinternal.h254 gpr_refcount refs_; variable
Dchttp2_transport.cc2811 gpr_ref_init(&refs_, 2); in Chttp2IncomingByteStream()
2837 if (gpr_unref(&refs_)) { in Unref()
2842 void Chttp2IncomingByteStream::Ref() { gpr_ref(&refs_); } in Ref()