Home | History | Annotate | Download | only in strconv

Lines Matching defs:Shift

7 // Only operations are assign and (binary) left/right shift.
104 // Maximum shift that we can do in one pass without overflow.
109 // Binary shift right (/ 2) by k bits. k <= maxShift to avoid overflow.
114 // Pick up enough leading digits to cover first shift.
163 // Cheat sheet for left shift: table indexed by shift count giving
164 // number of new digits that will be introduced by that shift.
268 // Binary shift left (* 2) by k bits. k <= maxShift to avoid overflow.
314 // Binary shift left (k > 0) or right (k < 0).
315 func (a *decimal) Shift(k int) {