Lines Matching refs:begin
183 volatile uint8_t* begin = nullptr; in ResetCounts() local
185 GetRawCounts(&begin, &end); in ResetCounts()
187 for (volatile uint8_t* x = begin; x < end; x++) { in ResetCounts()
193 volatile uintptr_t* begin = nullptr; in ResetPCs() local
195 GetRawPCs(&begin, &end); in ResetPCs()
197 for (volatile uintptr_t* x = begin; x < end; x++) { in ResetPCs()
223 void CoverageRecord::GetRawData(volatile void** begin, volatile void** end) { in GetRawData() argument
226 *begin = shm_; in GetRawData()
227 *end = (uint8_t*)(*begin) + record_len_; in GetRawData()
230 void CoverageRecord::GetRawCounts(volatile uint8_t** begin, volatile uint8_t** end) { in GetRawCounts() argument
233 *begin = 0; in GetRawCounts()
240 *begin = (volatile uint8_t*)shm_ + region->first; in GetRawCounts()
244 void CoverageRecord::GetRawPCs(volatile uintptr_t** begin, volatile uintptr_t** end) { in GetRawPCs() argument
247 *begin = 0; in GetRawPCs()
254 *begin = (volatile uintptr_t*)((volatile uint8_t*)shm_ + region->first); in GetRawPCs()
263 volatile uint8_t* begin = NULL; in TotalEdgeCounts() local
266 GetRawCounts(&begin, &end); in TotalEdgeCounts()
268 for (volatile uint8_t* x = begin; x < end; x++) { in TotalEdgeCounts()
289 volatile uintptr_t* begin = nullptr; in SaveSancovFile() local
292 GetRawPCs(&begin, &end); in SaveSancovFile()
294 for (volatile uintptr_t* pc_ptr = begin; pc_ptr < end; pc_ptr++) { in SaveSancovFile()