Lines Matching refs:begin
179 volatile uint8_t* begin = nullptr; in ResetCounts() local
181 GetRawCounts(&begin, &end); in ResetCounts()
183 for (volatile uint8_t* x = begin; x < end; x++) { in ResetCounts()
189 volatile uintptr_t* begin = nullptr; in ResetPCs() local
191 GetRawPCs(&begin, &end); in ResetPCs()
193 for (volatile uintptr_t* x = begin; x < end; x++) { in ResetPCs()
219 void CoverageRecord::GetRawData(volatile void** begin, volatile void** end) { in GetRawData() argument
222 *begin = shm_; in GetRawData()
223 *end = (uint8_t*)(*begin) + record_len_; in GetRawData()
226 void CoverageRecord::GetRawCounts(volatile uint8_t** begin, volatile uint8_t** end) { in GetRawCounts() argument
229 *begin = 0; in GetRawCounts()
236 *begin = (volatile uint8_t*)shm_ + region->first; in GetRawCounts()
240 void CoverageRecord::GetRawPCs(volatile uintptr_t** begin, volatile uintptr_t** end) { in GetRawPCs() argument
243 *begin = 0; in GetRawPCs()
250 *begin = (volatile uintptr_t*)((volatile uint8_t*)shm_ + region->first); in GetRawPCs()
259 volatile uint8_t* begin = NULL; in TotalEdgeCounts() local
262 GetRawCounts(&begin, &end); in TotalEdgeCounts()
264 for (volatile uint8_t* x = begin; x < end; x++) { in TotalEdgeCounts()
285 volatile uintptr_t* begin = nullptr; in SaveSancovFile() local
288 GetRawPCs(&begin, &end); in SaveSancovFile()
290 for (volatile uintptr_t* pc_ptr = begin; pc_ptr < end; pc_ptr++) { in SaveSancovFile()