(timeValue int64, timeFactor int32)
| 87 | } |
| 88 | |
| 89 | func getMilliSecond(timeValue int64, timeFactor int32) int64 { |
| 90 | return (timeValue / int64(timeFactor)) * 1_000 |
| 91 | } |
| 92 | |
| 93 | func getNanoSecond(timeValue int64, timeFactor int32) int { |
| 94 | return int((timeValue % int64(timeFactor)) * (1_000_000_000 / int64(timeFactor))) |
no outgoing calls
no test coverage detected
searching dependent graphs…