Searched refs:old_start (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dvfs_journal.c621 // find this entry in the old_start[] index and mark it completed
622 for(i = 0; i < sizeof(jnl->old_start)/sizeof(jnl->old_start[0]); i++) {
624 if ((off_t)(jnl->old_start[i] & ~(0x8000000000000000ULL)) == tr->journal_start) {
625 jnl->old_start[i] &= ~(0x8000000000000000ULL);
630 if (i >= sizeof(jnl->old_start)/sizeof(jnl->old_start[0])) {
2357 if (free_space(jnl) > desired_size && jnl->old_start[0] == 0) {
2378 for (i = 0; i < sizeof(jnl->old_start)/sizeof(jnl->old_start[
[all...]
H A Dvfs_journal.h186 lck_mtx_t old_start_lock; // protects the old_start
187 volatile off_t old_start[16]; // this is how we do lazy start update member in struct:journal
/macosx-10.9.5/vim-53/src/
H A Dsearch.c3587 pos_T old_start, old_end; local
3593 old_start = old_end;
3614 old_start = VIsual;
3670 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor)
3673 curwin->w_cursor = old_start;
3816 pos_T old_start, old_end; local
3830 old_start = old_end;
3870 old_start = VIsual;
3966 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end))
3969 curwin->w_cursor = old_start;
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_map.c9324 vm_map_offset_t old_start = 0; local
9370 old_start = entry->vme_start;
9410 old_start = entry->vme_start;
9465 (entry->offset + start_delta + (old_end - old_start)) <=
9468 (old_end - old_start))
9471 old_start += start_delta;
9490 old_start -= start_delta;
9507 (cow_parent_vaddr - old_start);
9572 local_start = old_start;
9599 * ... but don't go beyond the "old_start" t
[all...]

Completed in 152 milliseconds