Lines Matching refs:this
690 fn div_mod_floor_64(this: i64, other: i64) -> (i64, i64) {
691 (div_floor_64(this, other), mod_floor_64(this, other))
695 fn div_floor_64(this: i64, other: i64) -> i64 {
696 match div_rem_64(this, other) {
703 fn mod_floor_64(this: i64, other: i64) -> i64 {
704 match this % other {
711 fn div_rem_64(this: i64, other: i64) -> (i64, i64) {
712 (this / other, this % other)