Searched refs:cur_page (Results 1 – 3 of 3) sorted by relevance
/external/f2fs-tools/fsck/ |
D | mount.c | 375 void *cp1, *cp2, *cur_page; in get_valid_checkpoint() local 398 cur_page = cp2; in get_valid_checkpoint() 401 cur_page = cp1; in get_valid_checkpoint() 405 cur_page = cp1; in get_valid_checkpoint() 408 cur_page = cp2; in get_valid_checkpoint() 416 memcpy(sbi->ckpt, cur_page, blk_size); in get_valid_checkpoint() 423 if (cur_page == cp2) in get_valid_checkpoint() 429 ret = dev_read_block(cur_page, cp_blk_no + i); in get_valid_checkpoint() 431 memcpy(ckpt + i * blk_size, cur_page, blk_size); in get_valid_checkpoint()
|
/external/fio/ |
D | gfio.c | 766 static struct gui_entry *get_ge_from_page(struct gui *ui, gint cur_page, in get_ge_from_page() argument 769 if (!cur_page) { in get_ge_from_page() 778 return g_hash_table_lookup(ui->ge_hash, &cur_page); in get_ge_from_page() 783 gint cur_page; in get_ge_from_cur_tab() local 789 cur_page = gtk_notebook_get_current_page(GTK_NOTEBOOK(ui->notebook)); in get_ge_from_cur_tab() 790 if (cur_page) in get_ge_from_cur_tab() 791 return get_ge_from_page(ui, cur_page, NULL); in get_ge_from_cur_tab() 872 gint cur_page; in do_file_open_with_tab() local 879 cur_page = gtk_notebook_get_current_page(GTK_NOTEBOOK(ui->notebook)); in do_file_open_with_tab() 880 ge = get_ge_from_page(ui, cur_page, &ge_is_new); in do_file_open_with_tab()
|
/external/v8/src/heap/ |
D | spaces.cc | 56 Page* cur_page; in AdvanceToNextPage() local 58 cur_page = space_->anchor(); in AdvanceToNextPage() 60 cur_page = Page::FromAddress(cur_addr_ - 1); in AdvanceToNextPage() 61 DCHECK(cur_addr_ == cur_page->area_end()); in AdvanceToNextPage() 63 cur_page = cur_page->next_page(); in AdvanceToNextPage() 64 if (cur_page == space_->anchor()) return false; in AdvanceToNextPage() 65 cur_page->heap()->mark_compact_collector()->SweepOrWaitUntilSweepingCompleted( in AdvanceToNextPage() 66 cur_page); in AdvanceToNextPage() 67 cur_addr_ = cur_page->area_start(); in AdvanceToNextPage() 68 cur_end_ = cur_page->area_end(); in AdvanceToNextPage() [all …]
|