Lines Matching refs:cycle
472 xlog_crack_atomic_lsn(atomic64_t *lsn, uint *cycle, uint *block) in xlog_crack_atomic_lsn() argument
476 *cycle = CYCLE_LSN(val); in xlog_crack_atomic_lsn()
484 xlog_assign_atomic_lsn(atomic64_t *lsn, uint cycle, uint block) in xlog_assign_atomic_lsn() argument
486 atomic64_set(lsn, xlog_assign_lsn(cycle, block)); in xlog_assign_atomic_lsn()
495 xlog_crack_grant_head_val(int64_t val, int *cycle, int *space) in xlog_crack_grant_head_val() argument
497 *cycle = val >> 32; in xlog_crack_grant_head_val()
502 xlog_crack_grant_head(atomic64_t *head, int *cycle, int *space) in xlog_crack_grant_head() argument
504 xlog_crack_grant_head_val(atomic64_read(head), cycle, space); in xlog_crack_grant_head()
508 xlog_assign_grant_head_val(int cycle, int space) in xlog_assign_grant_head_val() argument
510 return ((int64_t)cycle << 32) | space; in xlog_assign_grant_head_val()
514 xlog_assign_grant_head(atomic64_t *head, int cycle, int space) in xlog_assign_grant_head() argument
516 atomic64_set(head, xlog_assign_grant_head_val(cycle, space)); in xlog_assign_grant_head()