Lines Matching refs:cycle
470 xlog_crack_atomic_lsn(atomic64_t *lsn, uint *cycle, uint *block) in xlog_crack_atomic_lsn() argument
474 *cycle = CYCLE_LSN(val); in xlog_crack_atomic_lsn()
482 xlog_assign_atomic_lsn(atomic64_t *lsn, uint cycle, uint block) in xlog_assign_atomic_lsn() argument
484 atomic64_set(lsn, xlog_assign_lsn(cycle, block)); in xlog_assign_atomic_lsn()
493 xlog_crack_grant_head_val(int64_t val, int *cycle, int *space) in xlog_crack_grant_head_val() argument
495 *cycle = val >> 32; in xlog_crack_grant_head_val()
500 xlog_crack_grant_head(atomic64_t *head, int *cycle, int *space) in xlog_crack_grant_head() argument
502 xlog_crack_grant_head_val(atomic64_read(head), cycle, space); in xlog_crack_grant_head()
506 xlog_assign_grant_head_val(int cycle, int space) in xlog_assign_grant_head_val() argument
508 return ((int64_t)cycle << 32) | space; in xlog_assign_grant_head_val()
512 xlog_assign_grant_head(atomic64_t *head, int cycle, int space) in xlog_assign_grant_head() argument
514 atomic64_set(head, xlog_assign_grant_head_val(cycle, space)); in xlog_assign_grant_head()