47 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlin.time;
 | |
| 
 | |
| import androidx.constraintlayout.core.motion.utils.TypedValues;
 | |
| import kotlin.Metadata;
 | |
| 
 | |
| /* compiled from: TimeSources.kt */
 | |
| @Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0006\b\u0007\u0018\u00002\u00020\u0001B\u0005¢\u0006\u0002\u0010\u0002J\u001a\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0002ø\u0001\u0000¢\u0006\u0004\b\t\u0010\nJ\u001b\u0010\u000b\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0086\u0002ø\u0001\u0000¢\u0006\u0004\b\f\u0010\nJ\b\u0010\r\u001a\u00020\u0004H\u0014R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u000e¢\u0006\u0002\n\u0000\u0082\u0002\u0004\n\u0002\b\u0019¨\u0006\u000e"}, d2 = {"Lkotlin/time/TestTimeSource;", "Lkotlin/time/AbstractLongTimeSource;", "()V", "reading", "", "overflow", "", TypedValues.TransitionType.S_DURATION, "Lkotlin/time/Duration;", "overflow-LRDsOJo", "(J)V", "plusAssign", "plusAssign-LRDsOJo", "read", "kotlin-stdlib"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public final class TestTimeSource extends AbstractLongTimeSource {
 | |
|     private long reading;
 | |
| 
 | |
|     @Override // kotlin.time.AbstractLongTimeSource
 | |
|     /* renamed from: read, reason: from getter */
 | |
|     protected long getReading() {
 | |
|         return this.reading;
 | |
|     }
 | |
| 
 | |
|     public TestTimeSource() {
 | |
|         super(DurationUnit.NANOSECONDS);
 | |
|     }
 | |
| 
 | |
|     /* renamed from: plusAssign-LRDsOJo, reason: not valid java name */
 | |
|     public final void m1810plusAssignLRDsOJo(long duration) {
 | |
|         long j;
 | |
|         long m1721toLongimpl = Duration.m1721toLongimpl(duration, getUnit());
 | |
|         if (m1721toLongimpl == Long.MIN_VALUE || m1721toLongimpl == Long.MAX_VALUE) {
 | |
|             double m1718toDoubleimpl = this.reading + Duration.m1718toDoubleimpl(duration, getUnit());
 | |
|             if (m1718toDoubleimpl > 9.223372036854776E18d || m1718toDoubleimpl < -9.223372036854776E18d) {
 | |
|                 m1809overflowLRDsOJo(duration);
 | |
|             }
 | |
|             j = (long) m1718toDoubleimpl;
 | |
|         } else {
 | |
|             long j2 = this.reading;
 | |
|             j = j2 + m1721toLongimpl;
 | |
|             if ((m1721toLongimpl ^ j2) >= 0 && (j2 ^ j) < 0) {
 | |
|                 m1809overflowLRDsOJo(duration);
 | |
|             }
 | |
|         }
 | |
|         this.reading = j;
 | |
|     }
 | |
| 
 | |
|     /* renamed from: overflow-LRDsOJo, reason: not valid java name */
 | |
|     private final void m1809overflowLRDsOJo(long duration) {
 | |
|         throw new IllegalStateException("TestTimeSource will overflow if its reading " + this.reading + DurationUnitKt.shortName(getUnit()) + " is advanced by " + ((Object) Duration.m1724toStringimpl(duration)) + '.');
 | |
|     }
 | |
| }
 |