Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandafile/
Dparam_annotations_data_accessor.h28 … AnnotationArray(uint32_t count, Span<const uint8_t> offsets) : count_(count), offsets_(offsets) {} in AnnotationArray()
36 return count_; in GetCount()
41 return sizeof(uint32_t) + count_ * ID_SIZE; in GetSize()
48 for (size_t i = 0; i < count_; i++) { in EnumerateAnnotations()
55 uint32_t count_;
62 count_ = helpers::Read<COUNT_SIZE>(&sp); in ParamAnnotationsDataAccessor()
77 for (size_t i = 0; i < count_; i++) { in EnumerateAnnotationArrays()
90 ASSERT(index < count_); in GetAnnotationArray()
93 for (uint32_t i = 0; i < count_; i++) { in GetAnnotationArray()
105 return count_; in GetCount()
[all …]
Dannotation_data_accessor.cpp27 count_ = helpers::Read<COUNT_SIZE>(&sp); in AnnotationDataAccessor()
28 size_ = ID_SIZE + COUNT_SIZE + count_ * (ID_SIZE + VALUE_SIZE) + count_ * TYPE_TAG_SIZE; in AnnotationDataAccessor()
31 size_t size = count_ * (ID_SIZE + VALUE_SIZE); in AnnotationDataAccessor()
38 ASSERT(i < count_); in GetElement()
47 ASSERT(i < count_); in GetTag()
Dvalue.h77 count_ = helpers::ReadULeb128(&sp); in ArrayValue()
105 return count_; in GetCount()
118 uint32_t count_; variable
Dannotation_data_accessor.h89 return count_; in GetCount()
115 uint32_t count_; variable
/arkcompiler/ets_runtime/ecmascript/base/
Dgc_ring_buffer.h37 if (count_ == N) { in Push()
44 elements_[count_++] = value; in Push()
50 return count_; in Count()
59 for (int i = 0; i < count_; i++) { in Sum()
67 start_ = count_ = 0; in Reset()
73 int count_ {0};
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dstream.h23 : index_(index), count_(count), size_(size) {} in HeapStat()
27 int32_t count_ {0};
Dheap_sampling.h38 count_(count) {} in Sample()
42 const unsigned int count_; member
Dheap_snapshot.h232 return count_; in GetCount()
237 count_ = count; in SetCount()
252 uint32_t count_ {0};
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_type.h369 PGORWOpType() : PGOType(TypeKind::RW_OP_TYPE), count_(0) {}; in PGORWOpType()
373 for (uint32_t i = 0; i < type.count_; i++) { in Merge()
384 for (; count < count_; count++) { in AddObjectInfo()
391 count_++; in AddObjectInfo()
399 ASSERT(index < count_); in GetObjectInfo()
405 return count_; in GetCount()
410 uint32_t count_ = 0; variable
Dpgo_profiler_info.h341 : id_(id), count_(count), mode_(mode) in PGOMethodInfo()
380 count_ += static_cast<uint32_t>(inc); in IncreaseCount()
385 count_ = 0; in ClearCount()
394 count_ = std::min(count_ + info->GetCount(), METHOD_MAX_HIT_COUNT); in Merge()
405 return count_; in GetCount()
444 if (count_ < threshold && mode_ == SampleMode::CALL_MODE) { in IsFilter()
462 uint32_t count_ {0};
734 for (int32_t i = 0; i < count_; i++) { in Convert()
821 int32_t count_ {0};
Dpgo_profiler_info.cpp566 count_++; in Merge()
/arkcompiler/toolchain/tooling/agent/
Dheapprofiler_impl.cpp224 statsDiff.emplace_back(updateData[i].count_); in HeapStatsUpdate()
/arkcompiler/toolchain/tooling/base/
Dpt_types.h2330 return count_; in GetCount()
2335 count_ = count; in SetCount()
2345 int32_t count_ {0};
Dpt_types.cpp2274 sampleTemp->SetSize(sample.size_ * sample.count_); in FromSamplingInfo()
2740 coverage->count_ = count; in Create()
2759 result->Add("count", count_); in ToJson()
/arkcompiler/toolchain/tooling/test/
Dpt_types_test.cpp872 ASSERT_TRUE(size == (sampleInfo.size_ * sampleInfo.count_)); in HWTEST_F_L0()