Lines Matching refs:bytes_alloc
39 uint64_t bytes_alloc; // allocated space size member
46 SlabSample(const Symbol* symbol, uint64_t ptr, uint64_t bytes_req, uint64_t bytes_alloc, in SlabSample()
51 bytes_alloc(bytes_alloc), in SlabSample()
61 uint64_t bytes_alloc; member
66 BUILD_COMPARE_VALUE_FUNCTION_REVERSE(CompareBytesAlloc, bytes_alloc);
72 BUILD_DISPLAY_UINT64_FUNCTION(DisplayBytesAlloc, bytes_alloc);
77 uint64_t frag1 = sample1->bytes_alloc - sample1->bytes_req; in CompareFragment()
78 uint64_t frag2 = sample2->bytes_alloc - sample2->bytes_req; in CompareFragment()
83 return android::base::StringPrintf("%" PRIu64, sample->bytes_alloc - sample->bytes_req); in DisplayFragment()
103 TracingFieldPlace bytes_alloc; member
175 uint64_t bytes_alloc = format->bytes_alloc.ReadFromData(raw_data); in CreateSample() local
178 new SlabSample(symbol, ptr, bytes_req, bytes_alloc, 1, gfp_flags, 0))); in CreateSample()
181 acc_info->bytes_alloc = bytes_alloc; in CreateSample()
212 acc_info.bytes_alloc, 1, sample->gfp_flags, 0)), in CreateCallChainSample()
226 total_allocated_bytes_ += sample->bytes_alloc; in UpdateSummary()
232 sample1->bytes_alloc += sample2->bytes_alloc; in MergeSample()
621 format.GetField("bytes_alloc", f.bytes_alloc); in ProcessTracingData()