/external/compiler-rt/lib/msan/ |
D | msan_report.cc | 153 OriginSet() : next_id_(0) {} in OriginSet() 156 for (int i = next_id_ - 1; i >= 0; --i) in insert() 158 if (next_id_ == kMaxSize_) return OVERFLOW; in insert() 159 int id = next_id_++; in insert() 163 int size() { return next_id_; } in size() 181 int next_id_; member in __msan::OriginSet
|
/external/libchrome/base/task/ |
D | cancelable_task_tracker.cc | 66 : next_id_(1),weak_factory_(this) {} in CancelableTaskTracker() 96 TaskId id = next_id_; in PostTaskAndReply() 97 next_id_++; // int64_t is big enough that we ignore the potential overflow. in PostTaskAndReply() 121 TaskId id = next_id_; in NewTrackedTaskId() 122 next_id_++; // int64_t is big enough that we ignore the potential overflow. in NewTrackedTaskId()
|
D | cancelable_task_tracker.h | 132 TaskId next_id_; variable
|
/external/webrtc/webrtc/base/ |
D | optional_unittest.cc | 31 Logger() : id_(next_id_++), origin_(id_) { Log("default constructor"); } in Logger() 32 explicit Logger(int origin) : id_(next_id_++), origin_(origin) { in Logger() 35 Logger(const Logger& other) : id_(next_id_++), origin_(other.origin_) { in Logger() 38 Logger(Logger&& other) : id_(next_id_++), origin_(other.origin_) { in Logger() 70 Logger::next_id_ = 0; in Setup() 78 static int next_id_; member in rtc::__anon9eaab31f0111::Logger 99 int Logger::next_id_ = 0; member in rtc::__anon9eaab31f0111::Logger
|
D | physicalsocketserver.h | 213 static int next_id_;
|
D | physicalsocketserver.cc | 597 do { id_ = ++next_id_; } while (id_ == 0); in Create() 626 int SocketDispatcher::next_id_ = 0; member in rtc::SocketDispatcher
|
/external/libchrome/base/ |
D | id_map.h | 46 IDMap() : iteration_depth_(0), next_id_(1), check_on_null_data_(false) { in IDMap() 70 KeyType this_id = next_id_; in Add() 73 next_id_++; in Add() 273 KeyType next_id_;
|
/external/sfntly/cpp/src/sfntly/port/ |
D | refcount.h | 123 object_id_ = AtomicIncrement(&next_id_); in RefCounted() 162 static size_t next_id_; variable 169 template <typename TDerived> size_t RefCounted<TDerived>::next_id_ = 0;
|
/external/compiler-rt/lib/lsan/ |
D | lsan_common.h | 80 LeakReport() : next_id_(0), leaks_(1), leaked_objects_(1) {} in LeakReport() 93 u32 next_id_; variable
|
D | lsan_common.cc | 551 Leak leak = { next_id_++, /* hit_count */ 1, leaked_size, stack_trace_id, in AddLeakedChunk()
|
/external/v8/src/ |
D | value-serializer.cc | 418 uint32_t id = next_id_++; in WriteJSReceiver() 1271 uint32_t id = next_id_++; in ReadJSObject() 1297 uint32_t id = next_id_++; in ReadSparseJSArray() 1333 uint32_t id = next_id_++; in ReadDenseJSArray() 1377 uint32_t id = next_id_++; in ReadJSDate() 1388 uint32_t id = next_id_++; in ReadJSValue() 1428 uint32_t id = next_id_++; in ReadJSRegExp() 1447 uint32_t id = next_id_++; in ReadJSMap() 1484 uint32_t id = next_id_++; in ReadJSSet() 1516 uint32_t id = next_id_++; in ReadJSArrayBuffer() [all …]
|
D | value-serializer.h | 161 uint32_t next_id_ = 0; variable 287 uint32_t next_id_ = 0; variable
|
/external/v8/src/ast/ |
D | ast-numbering.cc | 21 next_id_(BailoutId::FirstUsable().ToInt()), in AstNumberingVisitor() 52 int tmp = next_id_; in ReserveIdRange() 53 next_id_ += n; in ReserveIdRange() 95 int next_id_; member in v8::internal::AstNumberingVisitor
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | xmppengineimpl.cc | 39 next_id_(0), in XmppEngineImpl() 249 ss << next_id_++; in NextId()
|
D | xmppengineimpl.h | 239 int next_id_; variable
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | handler_tracking.ipp | 53 uint64_t next_id_; 80 h->id_ = state->next_id_++;
|
/external/webrtc/talk/session/media/ |
D | mediasession.cc | 365 next_id_(max_allowed_id) { in UsedIds() 405 while (IsIdUsed(next_id_) && next_id_ >= min_allowed_id_) { in FindUnusedId() 406 --next_id_; in FindUnusedId() 408 ASSERT(next_id_ >= min_allowed_id_); in FindUnusedId() 409 return next_id_; in FindUnusedId() 422 int next_id_; member in cricket::UsedIds
|
/external/v8/src/profiler/ |
D | heap-snapshot-generator.h | 229 return next_id_ - kObjectIdStep; in last_assigned_id() 263 SnapshotObjectId next_id_; variable
|
D | heap-snapshot-generator.cc | 362 : next_id_(kFirstAvailableObjectId), heap_(heap) { in HeapObjectsMap() 455 SnapshotObjectId id = next_id_; in FindOrAddEntry() 456 next_id_ += kObjectIdStep; in FindOrAddEntry() 604 time_intervals_.Add(TimeInterval(next_id_)); in PushHeapObjectsStats()
|