Home
last modified time | relevance | path

Searched refs:dirty_start (Results 1 – 2 of 2) sorted by relevance

/external/icing/icing/legacy/index/
Dicing-array-storage.cc331 uint32_t dirty_start = 0; in Sync() local
339 (dirty_end - dirty_start) / IcingMMapper::system_page_size(); in Sync()
341 if (pwrite(fd_, array() + dirty_start, dirty_end - dirty_start, in Sync()
342 fd_offset_ + dirty_start) != in Sync()
343 static_cast<ssize_t>(dirty_end - dirty_start)) { in Sync()
345 "Flushing pages failed (%u, %u)", dirty_start, dirty_end); in Sync()
349 dirty_start = i * IcingMMapper::system_page_size(); in Sync()
359 (dirty_end - dirty_start) / IcingMMapper::system_page_size(); in Sync()
361 if (pwrite(fd_, array() + dirty_start, dirty_end - dirty_start, in Sync()
362 fd_offset_ + dirty_start) != in Sync()
[all …]
/external/mesa3d/src/intel/tools/
Daub_write.c240 int dirty_start = 512, dirty_end = 0; in populate_ppgtt_table() local
250 dirty_start = min(dirty_start, i); in populate_ppgtt_table()
277 if (dirty_start <= dirty_end) { in populate_ppgtt_table()
278 uint64_t write_addr = table->phys_addr + dirty_start * in populate_ppgtt_table()
280 uint64_t write_size = (dirty_end - dirty_start + 1) * in populate_ppgtt_table()
285 data_out(aub, entries + dirty_start, write_size); in populate_ppgtt_table()